I am currently trying to enable scrolling on a chart. But when the chart is loaded the images for the scrollbar don't seem to work and there is a scrollbar on the background that doesn't scroll.
UltraChart uChart = (UltraChart)sender;uChart.EnableScrollBar = true;uChart.Axis.X.ScrollScale.Visible = true;uChart.Axis.X.ScrollScale.Scroll = 0;
What am I doing wrong?
Using scrollscale properties only applies to win charts. For web charts, all you need to do is set EnableScrollbar to true. It looks like you're missing the scrolling images. What you can do is set EnableScrollbar once to true in the designer (and then back to false if you wish), which will automatically create the images for you.
Is this possible without the designer? Since I am currently creating the chart in code.
It would have to be done in the designer once. Doesn't have to be the same solution. Then you can copy those images to the ChartImages folder.