Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Last label on X axis in not visible on spline chart
posted

I am using spline chart to show the data for 3 weeks. My datatable is

mydata.Columns.Add("Week4", typeof(int));

 

 

mydata.Columns.Add(

"Week3", typeof(int));

mydata.Columns.Add(

"Week2", typeof(int));

mydata.Columns.Add("

Week1", typeof(int));

 

 

// Add the rows of data

 

 

 

 

 

mydata.Rows.Add(

new Object[] {4, 6, 8, 10) });

I am binding the datatable to chart. Chart looks like this

The Week 1 is not displaying. I need it very badly..

Thanks.

 

 

Parents Reply Children
No Data