There is no such concept of
paging available, however if your bar chart has got many DataSeries to display,
you may use Scroll bar on Axis.
This will allow you to render
large charts.
Such as
c1Chart1.ChartArea.AxisY.ScrollBar.Min =
cd.MinY;
c1Chart1.ChartArea.AxisY.ScrollBar.Max =
cd.MaxY;
c1Chart1.ChartArea.AxisY.ScrollBar.Appearance =
ScrollBarAppearanceEnum.Flat;
c1Chart1.ChartArea.AxisY.ScrollBar.Visible =
true;
c1Chart1.ChartArea.AxisY.ScrollBar.Scale = 0.5;
-Dave.
when drawing bar chart with more than 100 items it does not display very
presentatble, my question is do chart provide any paging or filter of display
only 5 to 10 records at a time, ofwourse this can be done with the data query
but do these chart have any property like this which can do paging or we have
to do it exsplicitly?
http://helpcentral.componentone.com/cs/forums/p/75108/204420.aspx#204420