-2

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.

Vizllx
  • 9,135
  • 1
  • 41
  • 79
bshah
  • 49
  • 1
  • 10

1 Answers1

0

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

bshah
  • 49
  • 1
  • 10