Page 1 of 1

Broken line in the graph

Posted: Thu Nov 04, 2010 1:20 am
by Dalibor
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

Posted: Thu Nov 04, 2010 5:13 am
by Alex K.
Hello,

Unfortunately, it is impossible on current moment.

Thank you.

Re: Broken line in the graph

Posted: Tue May 06, 2014 5:12 am
by MatthewS
Has the broken lines feature been added since 2010?

Re: Broken line in the graph

Posted: Tue May 06, 2014 9:57 am
by HighAley
Hello.
MatthewS wrote:Has the broken lines feature been added since 2010?
Yes, the scatter line chart was added ton our product.

Thank you.

Re: Broken line in the graph

Posted: Tue May 06, 2014 10:04 pm
by MatthewS
Aleksey Andreyanov wrote:Hello.
MatthewS wrote:Has the broken lines feature been added since 2010?
Yes, the scatter line chart was added ton our product.

Thank you.
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?

Re: Broken line in the graph

Posted: Wed May 07, 2014 12:00 pm
by HighAley
Hello.

Try to add Scatter series and show values without line there.

Thank you.