Hello,
I am using react stock chart in the project.
We can adjust min-max on X-Axis manually by dragging left or right.
I need to update the min & max of the slider on via an event after the chart got rendered.
For example, I want to provide different sets of min-max when a certain event occurs.
I am passing values via ref, but that doesn’t seem to be working
stockChartRef.current.options.navigator.slider.maximum = new Date(moment.unixSecondsToDate(chartSliderRange.minimum));
Is there an API or workaround available?
Thanks
Shashank