User (Legacy) Posted October 9, 2003 Report Share Posted October 9, 2003 We are using: ChartFX ClientServer 5.2 VB 6 SP5 I'm creating a simple line chart with two series and I want customised point labels for one of the series. 1. I've set ChartFX1.Series(intCount).PointLabels = True for the series and I'm seeing normal (Y-value) labels on the points. 2. But the event below is not firing. Private Sub cfxLabTurnaround_GetPointLabel(ByVal nSerie As Integer, ByVal nPoint As Long, nRes As Integer). I've checked through the debugger and with debug.print messages - but the event is not being accessed. What am I doing wrong? Thanks, Steve P Link to comment Share on other sites More sharing options...
Software FX Posted October 9, 2003 Report Share Posted October 9, 2003 You need to turn on AS_NOTIFY flag in the Axis Style. Use the axis object to which this series is associated, for example the main Y-Axis or the Secondary Y-Axis. ChartFX1.Axis(AXIS_Y).Style = ChartFX1.Axis(AXIS_Y).Style or AS_NOTIFY -- 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.