Hi Lijo,
You mean having a single scrollbar that scrolls the entire control? If this is the case you can do the following:
- Create a panel control on the form.
- Host a chart control inside that panel using some code like:
NChartControl chartControl = new NChartControl();
chartControl.Location = new Point(0, 0);
chartControl.Width = panel1.Width - 20;
chartControl.Height = 800;
panel1.AutoScroll = true;
panel1.Controls.Add(chartControl);
This will force the parent panel to have a vertical scrollbar and you can scroll the entire content.
Best Regards,
Nevron Support Team