Status Chart
The Status Chart allows you to visualize the status of one or more discrete data points over a time range. The X-axis is always a time series axis, and the Y-axis is a category axis, with one entry per data series. The Status Chart is populated with the Series Data property in the Property Editor. This chart is good for showing machine states or HOA values over time. It is recommended to include some sort of Legend when using this chart.

Series Data
The first column of the Series Data property must contain datetime values. Each additional column should be numeric (the default columns are doubles). The order of the columns (left-to-right) determines the order of the entries on the chart (bottom-to-top). Because of this, re-ordering the entries would involve changing the order of the columns as they appear in the Series dataset by modifying the mechanism that is populating the dataset (i.e., changing the order of columns in a query).
In Wide format, all of the columns but the first must be numeric. These "series" columns' headers will be used as the names on the y-axis. In Tall format, there should be exactly three columns. The first is the timestamp, the second is the series name, and the third is the value. For example:
Wide Format
t_stamp | Valve1 | Valve2 |
---|
2010-01-13 8:00:00 | 0 | 2 |
2010-01-13 8:02:00 | 0 | 2 |
2010-01-13 8:04:00 | 1 | 2 |
2010-01-13 8:06:00 | 1 | 1 |
2010-01-13 8:08:00 | 0 | 1 |
Tall Format
t_stamp | Name | Value |
---|
2010-01-13 8:00:00 | Valve1 | 0 |
2010-01-13 8:00:00 | Valve2 | 2 |
2010-01-13 8:02:00 | Valve1 | 0 |
2010-01-13 8:02:00 | Valve2 | 2 |
2010-01-13 8:04:00 | Valve1 | 1 |
2010-01-13 8:04:00 | Valve2 | 2 |
2010-01-13 8:06:00 | Valve1 | 1 |
2010-01-13 8:06:00 | Valve2 | 1 |
2010-01-13 8:08:00 | Valve1 | 0 |
2010-01-13 8:08:00 | Valve2 | 1 |
Color Mapping
Apart from getting the data into the series chart, the only other commonly configured option is the mapping of discrete values to colors. This is done in the Status Chart Customizer. Each named series can have its own mapping of colors, if desired. These mappings are stored in the expert-level dataset property Series Properties Data so they can be altered at runtime.
