Versions Compared

Key

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

...

  • description
  • subPlotType 
  • axisLable, axisScaleUnit, lowerMarginPercentage, upperMarginPercentage
  • leftAxis, rightAxis
  • barMarginPercentage (Since 2018.02) Percentage of the bar width by which it will be reduced, to create space between the bars.
    General option to be applied to all plots containing bars (e.g. "horizontalColorCode" or bar charts). Overrules the general barMarginPercentage for a specific subplot.
    Default value is the barMarginPercentage of the TimeSeriesDisplayConfig.xml (which defaults to 0). 
  • inverted
  • logarithmic
  • drawingOrderInverted
  • splitForDifferentRuns
  • plotweight
  • plotSeparatorWeight
  • thresholdAxis
  • thresholdAxisScaling
  • forecastConfidenceTimeSpan
  • line, with dual axis plot 
  • area Fills the area between multiple time series.
  • clusteredBars
  • variableLineWidth
  • classBreaksId, classBreaks
  • direction
  • color Overides colors specified in the timeseriesdiplay
  • lineStyle: Line style of time series marker line. Enumeration of "solid", "none", "bar", "dashdot", "dashed", "dotted". When a suffix of ";thick" is given, 1 will be added to the linewidth found in the TimeSeriesDisplayConfig.xml. For example, if a linewidth of 2 is configured in the TimeSeriesDisplayConfig and for a subplot the linestyle is set to "solid;thick", the resulting linewidth will be 2 + 1 = 3.
  • markerStyle, markerText
  • ratingAxis, lookupAxis, datumAxis
  • visibleInLegend
  • label
  • visibleInTable, visibleInPlot
  • descriptiveFunction, with value and timeSpan
  • timeSeriesSet, with chainage location set, single domain axis and dual domain axis
  • additionalTimeSeries

...

Code Block
languagexml
titledomainParameterId example (click to expand)
linenumberstrue
collapsetrue
<subplot>
	<classBreaks>
		<break symbolSize="10" color="000080" lowerValue="0"/>
		<break symbolSize="10" color="0000A8" lowerValue="0.0005"/>
		<break symbolSize="10" color="0000E6" lowerValue="0.001"/>
		<break symbolSize="10" color="004DFF" lowerValue="0.0025"/>
		<break symbolSize="10" color="00B3FF" lowerValue="0.005"/>
		<break symbolSize="10" color="1AFFE5" lowerValue="0.01"/>
		<break symbolSize="10" color="80FF80" lowerValue="0.015"/>
		<break symbolSize="10" color="E6FF19" lowerValue="0.02"/>
		<break symbolSize="10" color="FFB200" lowerValue="0.025"/>
		<break symbolSize="10" color="FF4C00" lowerValue="0.035"/>
		<break symbolSize="10" color="E50000" lowerValue="0.04"/>
		<break symbolSize="10" color="A80000" lowerValue="0.045"/>
		<break symbolSize="10" color="800000" lowerValue="0.05"/>
	</classBreaks>
	<direction>from</direction>
	<timeSeriesSet>
		<moduleInstanceId>Swan_dcsmv6_hirlam_forecast_import</moduleInstanceId>
		<valueType>scalar</valueType>
		<parameterId>Wave.variancedensity2D.voorspeld</parameterId>
		<domainParameterId>f</domainParameterId>
		<domainParameterId>dir</domainParameterId>
		<locationSetId>SWAN_POINTS2</locationSetId>
		<timeSeriesType>simulated forecasting</timeSeriesType>
		<timeStep unit="minute" multiplier="60"/>
		<relativeViewPeriod unit="day" start="-2" end="2"/>
		<readWriteMode>read only</readWriteMode>
	</timeSeriesSet>	
</subplot>

Anchor
visibleInTable
visibleInTable
visibleInTable, visibleInPlot

Info

Important notice:  It is possible to configure  <visibleInTable>,<visibleInPlot> outside of the wrapper elements <line>, <clusteredBars> or <area>, but it should not be done.
There is a bug in one of the external libraries, that causes a mixup, and the wrong <visibleInTable>,<visibleInPlot> will be paired with the wrong timeSerieSet.  Always use <visibleInTable> <visibleInPlot> together with <line>, <clusteredBars> or <area>.

...