I can't seem to enable a scroll bar on x-axis. I'm using the code below to generate the chart.
List<int> xVal = new List<int>();
List<int> yVal = new List<int>();
for (int i = 0; i <= maxQueuetime ; i++)
{
xVal.Add(i);
yVal.Add(graph2Yaxis[i]);
}
chart1.ChartAreas["ChartArea1"].AxisX.Interval = 1;
chart1.Series[0]["PointWidth"] = "1";
chart1.Series[0].Points.DataBindXY(xVal, yVal);