Broken line in the graph
Posted: Thu Nov 04, 2010 1:20 am
Hi,
is there any way to create a broken (scatter) line in the graph?
Example data:
DataTable dt = new DataTable();
dt.TableName = "dtGraph";
dt.Columns.Add("X", typeof(int));
dt.Columns.Add("Y1", typeof(int));
dt.Columns.Add("Y2", typeof(int));
dt.Rows.Add(1, 1, 1 + 10);
dt.Rows.Add(2, 2, 2 + 10);
dt.Rows.Add(3, 3, DBNull.Value);
dt.Rows.Add(4, 4, DBNull.Value);
dt.Rows.Add(5, 5, 5 + 10);
dt.Rows.Add(6, 6, 6 + 10);
dt.Rows.Add(7, 7, 7 + 10);
stiReport1.RegData(dt);
stiReport1.Show();
Thank you for your answer.
is there any way to create a broken (scatter) line in the graph?
Example data:
DataTable dt = new DataTable();
dt.TableName = "dtGraph";
dt.Columns.Add("X", typeof(int));
dt.Columns.Add("Y1", typeof(int));
dt.Columns.Add("Y2", typeof(int));
dt.Rows.Add(1, 1, 1 + 10);
dt.Rows.Add(2, 2, 2 + 10);
dt.Rows.Add(3, 3, DBNull.Value);
dt.Rows.Add(4, 4, DBNull.Value);
dt.Rows.Add(5, 5, 5 + 10);
dt.Rows.Add(6, 6, 6 + 10);
dt.Rows.Add(7, 7, 7 + 10);
stiReport1.RegData(dt);
stiReport1.Show();
Thank you for your answer.