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));
"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.
I believe this is a recently fixed issue. Have you tried downloading the latest service release from our web site? Also, you can try disabling the axis label layout and see if that eliminates the problem:
chart.Axis.X.Labels.Layout.Behavior = AxisLabelLayoutBehaviors.None;
Thanks for your reply.
I have implemented code provided by you.But its not working..