Broken line in the graph

Stimulsoft Reports.NET discussion
Post Reply
Dalibor
Posts: 1
Joined: Mon Aug 23, 2010 6:37 am

Broken line in the graph

Post 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.
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Broken line in the graph

Post by Alex K. »

Hello,

Unfortunately, it is impossible on current moment.

Thank you.
MatthewS
Posts: 2
Joined: Tue May 06, 2014 5:10 am

Re: Broken line in the graph

Post by MatthewS »

Has the broken lines feature been added since 2010?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Broken line in the graph

Post 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.
MatthewS
Posts: 2
Joined: Tue May 06, 2014 5:10 am

Re: Broken line in the graph

Post 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?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Broken line in the graph

Post by HighAley »

Hello.

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

Thank you.
Post Reply