Scatter Plots - Data point type to be changed

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
spacemanspiff
Newbie
Newbie
Posts: 10
Joined: Fri Jul 02, 2004 4:00 am
Contact:

Scatter Plots - Data point type to be changed

Post by spacemanspiff » Thu Apr 06, 2006 5:10 am

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)

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Apr 06, 2006 8:36 am

Hi spacemanspiff,

Yes, you can use any of the 2 options below:

Code: Select all

      points1.Pointer.Transparency = 100;
or:

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply