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).
Hi,
Are you using UltraChart for WinForms or ASP.NET?
I know this is the wrong forum, but there seems not much missing to get the composite chart to work with scrolling? The image is rendered perfect. The only thing missing is the interaction with the mouse actions?
Is there a plan to support scrolling in composite asp.net charts? Is there a workaround besides not using composite charts?
The ASP.NET chart doesn’t support scrolling like in the WinForms version.
In the ASP.NET chart you can use:
UltraChart1.EnableScrollBar = true;
http://samples.infragistics.com/2010.3/WebFeatureBrowser/contents.aspx?showCode=true&t=WebCharts/Axis/AxisScrolling.aspx~srcview.aspx?path=~srcview.aspx?path=WebCharts/Axis/AxisScrolling.src
Unfortunately, this doesn’t not work with the CompositeChart.
I am using composite chart on asp.net page. I am trying to scroll it code above makes scroll bar visible but chart is not yet scrollable. Do I need some code to make it scrollable.