donvari Posted August 16, 2007 Report Share Posted August 16, 2007 Hi, I would like to set the pointlabels of specified point in my chart (on the client side). So I catch the GetPointLabel event in a VBScript and set the pointlabels with following: ChartObject.Points(iSeries,iPoint).Text = "..." But the browser retuns an error: Wrong number of arguments or invalid property assignment:'ChartObject.Point' I hope sb can help me. Quote Link to comment Share on other sites More sharing options...
donvari Posted August 16, 2007 Author Report Share Posted August 16, 2007 I tried it with, ChartObject.ReturnValue="...", but it doesn't work. I really hope someone of this excellent guys here can help me. Quote Link to comment Share on other sites More sharing options...
JuanC Posted August 16, 2007 Report Share Posted August 16, 2007 Inside your PontLabel event handler, all you need to do is set the Text property of the PointLabelEventArgs class. Note that to receive this event you must turn on the AxisStyle.Notify flag using the Axis.Styles property. JuanC Quote Link to comment Share on other sites More sharing options...
donvari Posted August 17, 2007 Author Report Share Posted August 17, 2007 Thank you!!! you are great 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.