User (Legacy) Posted July 9, 2003 Report Share Posted July 9, 2003 Why PaintMaker Event doesn't work? (ChartFx 98/Delphi 6) procedure ChartFx1PaintMarker(Sender: TObject; x, y: Smallint; lPaint: Integer; nSerie: Smallint; nPoint: Integer; var nRes: Smallint); begin ShowMessage(IntToStr(nSerie)); end; Link to comment Share on other sites More sharing options...
Software FX Posted July 10, 2003 Report Share Posted July 10, 2003 For performance reasons, the PaintMarker event is not fired by default. To enable the PaintMarker event you must first do: Chart1.TypeMask := Chart1.TypeMask Or CT_PAINTMARKER; -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.