Versions Compared

Key

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

...

Since 2020.02 it is possible to automatically pair up the time series based on their configured order: <matchTimeSeriesPair>timeSeriesOrder</matchTimeSeriesPair>

Since 2021.02 it is possible to show the  date and time of data points  on hovering over the dots in the chart and on hovering over  the table cells

Code Block
xml
xml
	<displayGroup name="Scatter PlotScatterPlotDisplays">
		<display name="Only Last Value Marker"ScatterPlot">
		<relativeViewPeriod unit="hour" start="-240" end="0"/>
		<locationId>LocD</locationId>
		<plotId>ScatterPlot</plotId>
		<showAsScatterPlot>
			<referencePoints>
				<showAsScatterPlot><point>
					<chartTitle>Scatter Plot<<x>0</chartTitle>x>
					<referencePoints>
	<y>60</y>
				</point>
				<point>
						<x>67<<x>500</x>
						<y>99<<y>65</y>
					</point>
				<point>
	<...>
					<x>1000</x>
					<y>70</y>
				</point>
				<point>
						<x>80<<x>1500</x>
						<y>109.7<<y>75</y>
					</point>
				</referencePoints>
				<xAxisRange>
					<min>67<<min>0</min>
					<max>80<<max>1500</max>
				</xAxisRange>
				<yAxisRange>
					<min>99<<min>60</min>
					<max>109.7<<max>75</max>
				</yAxisRange>
				<markerVisibility>onlyLast</markerVisibility>
			</showAsScatterPlot>
		</display> 		
	</displayGroup>


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:

...