Versions Compared

Key

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

...

  • description
  • axisScaleUnit
  • lowerMarginPercentage:
  • upperMarginPercentage:
  • inverted
  • plotweight
  • thresholdAxisScaling
  • forecastConfidenceTimeSpan: TimeSpanComplexType
  • line
  • area: SubPlotAreaComplexType. Displays the extent of multiple time series as a single area
  • color: Overides colours specified in the timeseriesdiplay
  • lineSytle: Line style of time series marker line. Enumeration of "solid", "none", "bar", "dashdot", "dashed", "dotted".
  • timeSeriesSet 

inverted

This tag can be used to invert the y-axis of a plot. Below a screenshot of an inverted graph. Image Added
In the example the timeseries with parameter RAIM is inverted.

Line

The tag line can be used to configure options like:

  • dual y-axis plots
  • discharge/stage-plots or stage/discharge plots

Dual y-axis plots

It is possible to display a set of time series with two different parameters types in one plots. One parameter will be displayed on the left axis, the other will be displayed on the right axis.

Below an example of a dual y-axis plot.
Image Added
Below an example of how to configure a timeseries which should be displayed on the right y-axis.

Code Block
xml
xml

<subplot>
			<plotWeight>2</plotWeight>
			<line>
			<color>blue</color>
			<axis>right</axis>
				<timeSeriesSet>
					<moduleInstanceSetId>MAP</moduleInstanceSetId>
					<valueType>scalar</valueType>
					<parameterId>MAP</parameterId>
					<locationId>LNDW1XU</locationId>
					<timeSeriesType>simulated forecasting</timeSeriesType>
					<timeStep unit="hour" multiplier="6"/>
					<readWriteMode>read only</readWriteMode>
				</timeSeriesSet>
			</line>
			<line>
			<color>dark orange</color>
			<axis>right</axis>
				<timeSeriesSet>
					<moduleInstanceSetId>MAP</moduleInstanceSetId>
					<valueType>scalar</valueType>
					<parameterId>MAP</parameterId>
					<locationId>LNDW1XM</locationId>
					<timeSeriesType>simulated forecasting</timeSeriesType>
					<timeStep unit="hour" multiplier="6"/>
					<readWriteMode>read only</readWriteMode>
				</timeSeriesSet>
			</line>

Stage/discharge plots

When a discharge is displayed, it is possible to show the stage on the right axis.

The right axis is then not a linear axis but the ticks on the right axis are calculated from the discharge ticks on the left axis.

It is also possible to display the stage and show the discharge on the right axis. The example below shows a display which plots several discharge time series.

The left axis is a linear axis with ticks for the discharge. The right axis is a non-linear axis.

The ticks on the right axis are calculated from the value of the discharge on the left axis by using a rating curve. Image Added

display

Wiki Markup
Definition of a pre-configured display. Each display may contain multiple sub-plots. Multiple displays may be defined per display group.
\[
!DisplayComplexType1.png!

...