Page 1 of 1

How to change the color of mark

Posted: Mon May 05, 2014 5:59 am
by 16566869
Is there some property like Series1->Marks->Color used to change the color of specified mark of TPointSeries?

Thanks in advance.

Re: How to change the color of mark

Posted: Mon May 05, 2014 7:17 am
by yeray
elmec wrote:Is there some property like Series1->Marks->Color used to change the color of specified mark of TPointSeries?

Thanks in advance.

Yes, in the latest versions of TeeChart you can access the Series' Marks.Item array and set different properties for that shape, like Color, Font, Transparency,...
Ie:

Code: Select all

Series1.Marks.Item[3].Color:=clRed;