Set Y-Axis for TimeSeries Chart

Is it possible to set the max and min of the Y-axis on the timeseries chart? It seems that it only autoscales based off the data provided. I want to bind the max and min to specific values.

You will need to add an axis and a trend under props.plots[0]

  1. Add a new axis - props.plots[0].axes[0], give it a name and bind the min/max values as needed
  2. Add a new trend - props.plots[0].trends[0] and select the name of the axis you created and the series it applies to
2 Likes