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; Quote 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.