In our current implementation of scatter plots, we have used:
"point.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Diamond;"
There are too many points in a given space and hence is looking very congested.
Is there a way where I can specify NoFill property to the points so that it just outlines the shape.
(We were able to do it in Excel)
Scatter Plots - Data point type to be changed
-
- Newbie
- Posts: 10
- Joined: Fri Jul 02, 2004 4:00 am
- Contact:
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi spacemanspiff,
Yes, you can use any of the 2 options below:
or:
Yes, you can use any of the 2 options below:
Code: Select all
points1.Pointer.Transparency = 100;
Code: Select all
points1.Pointer.Brush.Visible = false;
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 |