Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

note: page under construction

Overview

The chartLayer functionality can be used to define inlay graphs for display on the Map display. 

Configuration that is needed to start:

  • ChartLayer.xml in DisplayConfigFiles. Here you can define standard formats for graph layout (axes etc) and define the individual graphs. A filterid needs to be defined here to link the chart to the Filters. E.g.:

<chart id="SintPieter (Main)" formatId="chartFormat1" width="300" height="250">
<timeSeries preferredColor="orange" lineStyle="solid" axis="left">Debiet_ensemble</timeSeries>
<timeSeries preferredColor="cornflower blue" lineStyle="solid" axis="left">Debiet_update</timeSeries>
<timeSeries preferredColor="cornflower blue" lineStyle="solid" axis="left">Debiet_forecast</timeSeries>
<timeSeries preferredColor="red" lineStyle="solid" axis="left">Debiet</timeSeries>
<locationId>H-MS-SINT</locationId>
<xOffSetPixels>-440</xOffSetPixels>
<yOffSetPixels>70</yOffSetPixels>
<inputVariable variableId="Debiet" variableType="any">
<timeSeriesSet>

...
</timeSeriesSet>
</inputVariable>

...
<filterId>Chart_Lobith_SintPieter</filterId>
</chart>

  • A definition of the chart layer in Explorer.xml, e.g.:

<layer id="Charts">
<className>nl.wldelft.fews.gui.plugin.chartlayer.ChartLayer</className>
<visible>true</visible>
<properties>
<string key="displayInstanceId" value="chartLayer"/>
</properties>

  • link of the chart to the Map display via a filterid that is defined in Filter.xml, e.g.:

<filter id="Chart_Lobith_SintPieter" name="Overview Lobith and Sint Pieter">
<mapExtentId>Rhine-Meuse Basin</mapExtentId>
<timeSeriesSet>

...