Hello !
I want to make a simple xy-line-series,
that means lines from any xy-point to an other,
without points.
The TLineseries does not work because it sorts the values by x.
Can I disable it?
TPointSeries have not line between the points, be default.
In the chart editor I cannot define lines between it.
But in the TChartPro 7 Demo I find this needed feature in
the Point 3D demo.
In the code page I see:
Series1->LinePen->Visible = CheckBox1->Checked;
I tested it in my program but I did not work.
I see only points
Here is my code
Series1->LinePen->Color=clBlack;
Series1->LinePen->Style=psSolid;
Series1->LinePen->Visible=true;
What must I do ?
Best regards
Andreas Weichert
XY-LINE series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello Andy,
By default line series sorts values as it is designed for plotting sequential data. However, the easiest way to achieve what you request is setting line series order to none before populating the series:
By default line series sorts values as it is designed for plotting sequential data. However, the easiest way to achieve what you request is setting line series order to none before populating the series:
Code: Select all
Series1.XValues.Order:=loNone;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |