I am trying to replace Smoothie Charts with uPlot. WIth Smoothie I can update the Min/Max (range) of the Y series at any time and the plot redraws accordingly and automatically.
How can I do this with uPlot?
I tried setScale but that did not work.
I tried a dynamic range in the Options but that is only called when the options are applied at Chart create.
I tried updating this.uPlotOptions.scales.y.range[1]=newRange
and this.myChartControl.scales.y.range[1]=newRange
The plot still is not changing its range at runtime.
Is there a example that show how to dynamically change the (Y scale) range?
my options are very simple:
uPlotOptions:uPlot.Options = {
width: 100,
height: 100,
pxAlign: true,
axes: [{ show: false }, { show: false }], // Clean look
series: [
{} //New series are added at runtime
],
legend: {
show: false
},
cursor: {
show: false,
},
scales: {
x: { time: false, dir: -1 }, // -1 = left to right
y: {
// auto: false, range: (u, min, max) => {
// return [this.rangeMin, this.rangeMax];
// }
} // Full height
}
};
I am trying to replace Smoothie Charts with uPlot. WIth Smoothie I can update the Min/Max (range) of the Y series at any time and the plot redraws accordingly and automatically.
How can I do this with uPlot?
I tried setScale but that did not work.
I tried a dynamic range in the Options but that is only called when the options are applied at Chart create.
I tried updating this.uPlotOptions.scales.y.range[1]=newRange
and this.myChartControl.scales.y.range[1]=newRange
The plot still is not changing its range at runtime.
Is there a example that show how to dynamically change the (Y scale) range?
my options are very simple: