Versions Compared

Key

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

...

  • description
  • axisScaleUnit: Unit used for rounding the min and max value of the axis. If scale unit = 1 then a range of -3.8 to 4.9 will be rounded to a range of -4 to 5
  • lowerMarginPercentage:
  • upperMarginPercentage:
  • barMarginPercentage: Since 2018.02. Only applicable for subplots which contain bars, such as plots of <subPlotType> "horizontalColorCode" or bar charts. Percentage of the bar width by which the bar width will be reduced, to create space between the bars. Default value is the barMarginPercentage in the generalDisplayConfig of the TimeSeriesDisplayConfig.xml (which is 0 by default). Use the general option to set a barMarginPercentage to be applied to all plots containing bars. Use this config option to overrule the general barMarginPercentage for a specific subplot.
  • inverted
  • logarithmic
  • plotweight
  • plotSeparatorWeight
  • thresholdAxisScaling
  • forecastConfidenceTimeSpan: TimeSpanComplexType
  • line
  • area: Fills the area between multiple time series.
  • color: Overides colours 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.
  • timeSeriesSet

...

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.

logarithmic

Available since 2020.02.  If it is set to true, the subplot domain axis will be logarithmic.  A parameter can also be configured to  always/never be  displayed on a logarithmic scale, but the subplot setting has precedence. If a parameter is set logarithmic true, but the subplot it appears in is configured logarithmic-false,  the axis will not be logarithmic.  It is also possible to confige a mixture of logarithmic and non-logarithmic sublots in the same plot:

Image Added


Logarithmic axis can also be turned on and off manually, using the mnu bar. If you do so, the setting will effect all subplots the same way. Should you wish to reset the sublots to the configured version, use the reset domain axis to configured button.

Image Added

Image Added


drawingOrderInverted

...

Code Block
xml
xml
	<displayGroup name="Scatter Plot">
		<display name="Only Last Value Marker">
			<plotId>ScatterPlot</plotId>
			<showAsScatterPlot>
				<chartTitle>Scatter Plot</chartTitle>
				<referencePoints>
					<point>
						<x>67</x>
						<y>99</y>
					</point>
					<...>
					<point>
						<x>80</x>
						<y>109.7</y>
					</point>
				</referencePoints>
				<xAxisRange>
					<min>67</min>
					<max>80</max>
				</xAxisRange>
				<yAxisRange>
					<min>99</min>
					<max>109.7</max>
				</yAxisRange>
				<markerVisibility>onlyLast</markerVisibility>
			</showAsScatterPlot>
		</display>
	</displayGroup>

Image Modified

display

Definition of a pre-configured display. Each display may contain multiple sub-plots. Multiple displays may be defined per display group.

...