I have multiple Y axis and when I show the tool tip it takes by default only for the left sided Y axis, but I want the chart to show on the right Y axis.
How can I achieve that? I am using Bar char of JIDE framework.
I have multiple Y axis and when I show the tool tip it takes by default only for the left sided Y axis, but I want the chart to show on the right Y axis.
How can I achieve that? I am using Bar char of JIDE framework.
Got the solution! You simply need to add a new axis and pass the range as the parameter. You code will look something like getChart().setYAxis(yLeftAxis); getChart().addYAxis(yRightAxis);
where yLeftAxis & yRightAxis are new Axis