TLineSeries Hide (or dont paint) particular pointers
TLineSeries Hide (or dont paint) particular pointers
Hi, im working with Delphi 2k7 and TeeChart 8.04 and i would like to know if the TLineSeries with Pointers visible can hide some pointers. I tried the option to Color Each Point and use the color clNone. Seems to work, but a lil prob there is that the Line connecting each point is not draw too. If you guys got a quick solution for that ill take it, otherwise ill have to make a new series kind and add the option for ValuePointerVisible[Index] and that doesnt looks very funny to do so.
Hi GoToXY,
Using OnGetPointerStyle seems to work fine. For example, to hide the 6th point:
Using OnGetPointerStyle seems to work fine. For example, to hide the 6th point:
Code: Select all
function TForm1.Series1GetPointerStyle(Sender: TChartSeries;
ValueIndex: Integer): TSeriesPointerStyle;
begin
if ValueIndex = 5 then
Result := psNothing
else
Result := psRectangle;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi GoToXY,
It's a pleasure being helpful. And I hope that your opinion on TeeChart won't change with your day-to-day learning.
It's a pleasure being helpful. And I hope that your opinion on TeeChart won't change with your day-to-day learning.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |