Hello everybody.
I have CombinedDomainXYPlot and I need to have about 5 different Range axis for this combinedDomainAxis. For every range axis, Basically, for common XYPlot, I am adding range Axis like this ..........( as I need to make only one chart in one common area)
subplot.setRangeAxis(1, someAxis1);
subplot.setRangeAxis(2, someAxis2);
So far it is good, however I am having trouble in wrapping my head around HOW CAN I ADD DIFFERENT IMAGE ANNOTATIONS TO IT WHEN LOCATION OF EVERY ANNOTATION IS DEPENDENT ON DOMAIN AXIS (COMMON - OK, NO PROBLEM), BUT DIFFERENT RANGE AXIS (HERE IS THE PROBLEM ?? ), Because Annotation is added to the plot, how can I make sure that I am adding at right location if each of the Range axis has different scale.
Thanks a lot for everyone's help.