Hi,
When multiple Y axes were plotted for a composite chart ( say all the layers merged were scatter),
there can be only one left title. What I desired was, each Y axis has to has its own left title. So, if 4 Y axes
are there, 4 left titles corresponding to each Y axis have to be present.
Afraid, this functionality not present currently.
One of the work around I had implemented was, maintained a string builder, concatanated the corresponding strings
that has to appear as individual titles for corresponding Y axis, and the whole string builder
is asssigned to the left title.
The problem I faced was, when the number of Y axes drawn were dynamic,
adjusting the strings in the stringbuilder , the room they should occupy
(function of Y axis extent andthe extent of labels)....had been very unmaintanable .
May I know is there any feature to achive this or any better work around.
Thanks in advance
maybe instead of using TitleLeft, you could add a BoxAnnotation (or several) to the annotations collection. you can use the BoxAnnotations as axis titles.
Thanks David. Little haze over this. If you get a chance please provide some code, how that could be
done. Thanks in advance
BoxAnnotation anno = new BoxAnnotation(); anno.Text = "hello Mr. Nagaraju"; anno.Location.Type = LocationType.Percentage; anno.Location.LocationX = 10; anno.Location.LocationY = 30; anno.TextStyle.Orientation = TextOrientation.VerticalLeftFacing; this.ultraChart1.Annotations.Add(anno);