Hi,
is there a way to mark data points (bar specifically) on a chart which are not valid.
I mean if we have a set of values for a given timestamps and some of the values are untrusted (bad quality) we want to mark them.
As I see it there should be some kind of boolean value for each of data point in the array, something like:
{
type: 'column',
data: [['A', 33, true], ['B', 57, true], ['C', 33, false],
['D', 12, true], ['E', 35, true], ['F', 7, true], ['G', 24, true]],
fillStyle: 'green',
strokeStyle: 'black',
lineWidth: 2
}
So we have C = 33 value as invalid data point. We want it to be displayed specifically on a chart. And I believe we need to be able to override visual effects for such data points.
Or maybe there is other methods to accomplish such a thing?