i m using webchartcontrol for line chart. Some times this is displaying grakh some time not. my aspx page contains 6 webchartcontrol on the form. my code is following
Series series1 = new Series("Gravity Series", ViewType.Line);
series1.ArgumentScaleType =
ScaleType.Qualitative;
((LineSeriesView)series1.View).LineStyle.DashStyle = DashStyle.Solid;
// Add points to it.
for (int x = 0; x < tb.Rows.Count; x++)
{
series1.Points.Add(
new SeriesPoint(tb.Rows[x]["bdate"].ToString(), new double[ { double.Parse(tb.Rows[x]["gravity"].ToString()) }));
}
chartLineGravity.Series.Add(series1);
chartLineGravity.Legend.Visible =
false;
Kindly help me because some times it displays graph some time not.
atul