[Feature-14698] Autorange Axes on Perspective Time Series Chart

Is it possible to auto-range the axes on a time series chart? I am trying to build a Time Series Chart with two AXES. One for flow rate and one for pressure. I’d like it to autorange the high scale and set the low scale to 0 like I was able to do pretty easily in Vision easy charts.

1 Like

This isn’t currently possible but we do have a feature ticket in queue to get it implemented.

1 Like

Since it wasn’t built in I used a little workaround using an ignition expression. I bound the the Plot->Axes->Max value to an expression which uses the max() function to return the max value in the trend series dataset and multiplies it by 110% to add a little bit to the top of the chart. This is working the way I need it to.

round(max({this.props.series[0].data},1)*1.1,0)
5 Likes