Page 1 of 1

Scatter Plots - Data point type to be changed

Posted: Thu Apr 06, 2006 5:10 am
by 8126031
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)

Posted: Thu Apr 06, 2006 8:36 am
by narcis
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;