I am just a rookie at C# windows forms application. I am trying to plot a chart from a data table using the function this.chart1.Series[0].Points.DataBindXY(dt.DefaultView, "tms", dt.DefaultView, head[1]);
where dt
is the data table, tms
is timestamp column and head[1]
is a data column. But I am not able to see the start and end x-axis label in chart. Check out my output here. i.e. I want to see the timestamp of start and end of the data. So how do I do it? Is there any predefined function?
Thanks for helping...