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 Fills the area between 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 

Vertical line fill

Use the <area> element in combination with a <lineStyle> to obtain vertical lines.

Image Added

Code Block
xml
xml

<subplot>
     <area>
        <lineStyle>solid</lineStyle>
        <lineWidth>10</lineWidth>
         <color>blue</color>
         <opaquenessPercentage>50</opaquenessPercentage>
           <timeSeriesSet>
                <moduleInstanceId>ImportMSW</moduleInstanceId>
                <valueType>scalar</valueType>
                <parameterId>Q.m</parameterId>
                <locationId>H-MS-LUIK</locationId>
                <locationId>H-MS-SINT</locationId>
                <timeSeriesType>external historical</timeSeriesType>
                <timeStep unit="hour"/>
                <relativeViewPeriod unit="day" start="-2" end="0"/>
                <readWriteMode>read only</readWriteMode>
                </timeSeriesSet>
        </area>
</subplot>

inverted

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

...