Jump to content
Software FX Community

Multiple Chart Panes


tempmen

Recommended Posts

I am unable to replicate this issue. I set two and three panes, and set the separation to zero, and this worked as expected; however, please note that if you are setting titles for the panes, this will force the panes to separate to the title can fit. This is the code I used:

chart1.getAxisY().setPane(0);

chart1.getAxisY().setPane(1);

chart1.getAxisY().setPane(2);

Pane pane1 = chart1.getPanes().getItem(0);

pane1.setProportion(50);

Pane pane2 = chart1.getPanes().getItem(1);

pane2.setProportion(50);

Pane pane3 = chart1.getPanes().getItem(2);

pane3.setProportion(30);

pane1.setSeparation(0);

pane2.setSeparation(0);

pane3.setSeparation(0);

I recommend that you apply the latest service pack to ensure that you are using the latest version of our product. You can visit our support website and click on the ChartFX for Java product that you are using; you can then download a zip file containing the latest jar files.

http://support.softwarefx.com/

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...