Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以制作隐藏其轴的 XYChart?理想情况下删除。
从查看源代码看来,由于 XYChart 在调用 layoutChartChildren() 时不检查 null Axis 的限制,它似乎必须有一个,这是一种耻辱,因为 XYChart 提供了多个数据系列并在系列中添加数据。
IMO 与轴心分离。
关于解决方案的任何想法?
在您展示了显示图表的阶段后,调用:
for (Node n: chart.lookupAll(".axis")) { n.setVisible(false); }