Hi,
I have a categoryplot with multiple range aixs. Now when I am plotting datasets with these corresponding axes, I am not able to set the labels for these datasets of different axes respectively.
The category text annotation that I am using is always being set in the position specified by the category axis. Now if a label is to be set to the dataset of a different axis, how to go about it?
Please help.
Setting labels in multiple range axis graph.
Setting labels in multiple range axis graph.
Lata Chuphal
Label
Hi Lata
If you want to add some label into chart then you use XYTextAnnotation class. It,s Constructor is
XYTextAnnotation xyant=new XYTextAnnotation(labelString,xaxisValue,yaxisValue,);
And then add this annotation Object into Plot Object
Like this plot.addAnnotation(xyant);

If you want to add some label into chart then you use XYTextAnnotation class. It,s Constructor is
XYTextAnnotation xyant=new XYTextAnnotation(labelString,xaxisValue,yaxisValue,);
And then add this annotation Object into Plot Object
Like this plot.addAnnotation(xyant);

Md Zahid Nasim