LineStyle Small Dots

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Andy
Newbie
Newbie
Posts: 32
Joined: Wed Apr 18, 2007 12:00 am
Location: Germany Oldenburg
Contact:

LineStyle Small Dots

Post by Andy » Wed May 07, 2008 7:59 am

Hello !

I cannot figure out how to set a linestyle to "small dots" by code,
as I can in the ChartEditor.

CustSer->Pen->Style=psSmallDot;

Seems not the correct enum.
The compiler gives a warining:
Cannt assign TSeriesPointerStyle to PenStyle

(psDash, psDot etc. works fine)

I can nowhere find information about this in the TeeChart 7 Docu.

What is the correct constant?

Andreas

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

Post by Narcís » Wed May 07, 2008 8:31 am

Hi Andreas,

You can use this:

Code: Select all

	Series1->Pen->SmallDots = true;
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