Versions Compared

Key

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

...

Using  statisticalFunctionId it is possible to create a preconfigured display with any statistical function.

The statistical function should have an id configured in TimeSeriesDisplay.xml,  for example :

Code Block
<statisticalFunction  function="centralMovingAverage"  id="CMA" ignoreMissings="true">
	<movingAccumulationTimeSpan unit="hour" multiplier="6"/>
</statisticalFunction>

This  id can be used  in  displays to create a predefined display with the required statistical function :

Code Block
<display name="Central Moving Average"> 
	<locationId>LocD</locationId>
	<plotId>PlotId</plotId>
	<statisticalFunctionId>CMD</statisticalFunctionId>
</display>

display

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

...