Is it possible to show the datapoints of a line but hide the line itselfe?
When I am hiding the line, the datapoints are not showen also regardless of the pointer properties.
Thanks, Markus
hide line but show the datpoints
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Markus,
You may be interested using a point series to achieve this. You can also set a line series transparency to 100% using:
You may be interested using a point series to achieve this. You can also set a line series transparency to 100% using:
Code: Select all
line1.Transparency=100;
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 |
-
- Newbie
- Posts: 6
- Joined: Tue Jan 07, 2003 5:00 am
Line visible?
Hi
To control this feature on the transparency property, seems incorrect!
* Steema.TeeChart.Styles.Line.Pointer.Visible //controls if the points are printed
* Steema.TeeChart.Styles.Line.Brush.Visible //controls nothing
In your editor. The checkbox that should control the border of the line also has no effect.
To use the transparency property is the way to fix it now (in our code). But it would be nice if you would admit that this is not wanted behaviour...
br, klaus wj[/b]
To control this feature on the transparency property, seems incorrect!
* Steema.TeeChart.Styles.Line.Pointer.Visible //controls if the points are printed
* Steema.TeeChart.Styles.Line.Brush.Visible //controls nothing
In your editor. The checkbox that should control the border of the line also has no effect.
To use the transparency property is the way to fix it now (in our code). But it would be nice if you would admit that this is not wanted behaviour...
br, klaus wj[/b]
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Klaus,
I've done some testing with what you have said with the latest build released and works.
I've done some testing with what you have said with the latest build released and works.
This works and makes line series brush visible/invisible (transparent/not transparent).Steema.TeeChart.Styles.Line.Brush.Visible //controls nothing
If you don't have the latest build release you can download it from our customer download area.To use the transparency property is the way to fix it now (in our code). But it would be nice if you would admit that this is not wanted behaviour...
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 |
-
- Newbie
- Posts: 6
- Joined: Tue Jan 07, 2003 5:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Klaus,
Try using a line series and adding a button with this code:
You will see the difference between making the LinePen visible or not.
This also works in the latest build release.Your right. Brush works, it was the "LinePen.Visible" that did not work...
Try using a line series and adding a button with this code:
Code: Select all
line1.LinePen.Visible = !line1.LinePen.Visible;
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 |