I have a zoomable Kendo React Chart where I have set a maximum on the . If the user zooms in and zooms out that max is lost.
In my particular use case, I have 2 series each with their own . The second series should really always be shown on a scale from 0-3. To do this I have set a max on the second Y axis to 3 but this is lost as soon as the user zooms.
I do want the user to be able to zoom but when they zoom back out I expect the user to be able to return the chart to its initial state of having a max of 3 on the .
This show this behavior: https://stackblitz.com/edit/react-l5udtx
Is there a recommended way to achieve this?