Versions Compared

Key

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

...

Code Block
xml
xml
<displayGroup name="ScatterPlotDisplays">
	<display name="ScatterPlot">
		<relativeViewPeriod unit="hour" start="-240" end="0"/>
		<locationId>LocD</locationId>
		<plotId>ScatterPlot</plotId>
		<showAsScatterPlot>
			<referencePoints>
				<point>
					<x>0</x>
					<y>60</y>
				</point>
				<point>
					<x>500</x>
					<y>65</y>
				</point>
				<point>
					<x>1000</x>
					<y>70</y>
				</point>
				<point>
					<x>1500</x>
					<y>75</y>
				</point>
			</referencePoints>
			<xAxisRange>
				<min>0</min>
				<max>1500</max>
			</xAxisRange>
			<yAxisRange>
				<min>60</min>
				<max>75</max>
			</yAxisRange>
		</showAsScatterPlot>
	</display> 		
</displayGroup>

Image RemovedImage Added


Since 2020.02 It is possible to draw colored areas based on configured points. Also, in the plot, the grid lines in the background and the interaction line are visible, and legends are added next to the plot. Below is an example of how a coloredBackgroundArea could be configured:

...