Is it possible to set different point style for polar series?
Instead just all rectangle or all circle. How to do it ?
For exampe: I have 10 point.
I want to set a data point as circle and the other as triangle.
Different pointer style on a polar series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Herman,
Yes, you can do that using series GetPointerStyle event:
Yes, you can do that using series GetPointerStyle event:
Code: Select all
function TForm1.Series1GetPointerStyle(Sender: TChartSeries;
ValueIndex: Integer): TSeriesPointerStyle;
begin
if (ValueIndex mod 2 = 0) then result:=psCircle
else result:=psTriangle;
end;
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 |