If you are using System.Windows.Forms.DataVizualisation.Charting you can set the Axis range by manipulating the chart’s ChartAreas property. So something like
myChart.ChartAreas[0].AxisX.Maximum = 13;
myChart.ChartAreas[0].AxisX.Minimum = 0;
If you are using System.Windows.Forms.DataVizualisation.Charting you can set the Axis range by manipulating the chart’s ChartAreas property. So something like
myChart.ChartAreas[0].AxisX.Maximum = 13;
myChart.ChartAreas[0].AxisX.Minimum = 0;