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.
Broken line in the graph
Broken line in the graph
Hello,
Unfortunately, it is impossible on current moment.
Thank you.
Unfortunately, it is impossible on current moment.
Thank you.
Re: Broken line in the graph
Has the broken lines feature been added since 2010?
Re: Broken line in the graph
Hello.
Thank you.
Yes, the scatter line chart was added ton our product.MatthewS wrote:Has the broken lines feature been added since 2010?
Thank you.
Re: Broken line in the graph
Thanks for the reply. I'm currently using a scatter line chart, but I'm unsure how to indicate that certain values should not be connected with a line. How is this done?Aleksey Andreyanov wrote:Hello.
Yes, the scatter line chart was added ton our product.MatthewS wrote:Has the broken lines feature been added since 2010?
Thank you.
Re: Broken line in the graph
Hello.
Try to add Scatter series and show values without line there.
Thank you.
Try to add Scatter series and show values without line there.
Thank you.