I have a composite chart that I want to be able to scroll the X axis. I have set the following:
ultraChart1.Axis.X.ScrollScale.Visible = true;
ultraChart1.Axis.X.ScrollScale.Scroll = 0;
but that does not seem to work. The composite chart contains a single 2D Line chart (for now).
So back to my first question:
Is there a plan to support scrolling in composite asp.net charts? Is there a workaround besides not using composite charts?
In ASP.NET it doesn’t work on composite chart.
UltraChart.EnableScrollBar was already set to true;
Thank you for your answer Teodor. So Scrolling should also work on the asp chart. Different but it should work somehow. I guess my error was to enable the scrolling parameter on the axis?
Sorry, now I saw your previous post.
Unfortunately, even the image is rendered correctly; the interaction in ASP.NET is different than WinForms. In WinForms we are recreating the chart on every scroll change.
In ASP.NET the chart is created as an Image on the server and for that we are not supporting scrolling like in WinForms. In this case for every change we’ll need to create a new image on the server. In ASP.NET the only scrolling that we support is
UltraChart1.EnableScrollBar = true;
Here we create one big image, which we are scrolling on the browser, without going to the server.