我如何制作可滚动的条形图? 我一直在尝试使用带有条形图窗格的scrollPane。
到目前为止,这就是我所拥有的:final BarChart chartPane = chart.getGraph();
chartScrollPane.setContent(chartPane);
chartScrollPane.setFitToWidth(true);
chartPane宽度为1200px,chartScrollPane为800px。
答案 0 :(得分:0)
只需将BarChart的宽度设置为更大的值即可。当图表嵌入ScrollPane时,它将关心滚动条。
例如:
ScrollPane scrollPane = new ScrollPane();
Scene scene = new Scene(scrollPane, 800, 600);
chartPane.setPrefWidth(20000);
chartPane.setMinWidth(20000);
scrollPane.setContent(chartPane);