CombinedDomainXYPlot 中的域轴重新缩放
当利用 CombinedDomainXYPlot 在多个子图之间共享域轴时,观察到范围轴调整为数据发生变化,而域轴保持不变。理解和解决这个问题需要仔细研究绘图的底层机制。
域轴的组合范围
CombinedDomainXYPlot 建立共享域轴的最大范围,这可以实现轴共享。系列可见性更改不会直接影响共享域轴。但是,更改数据集会通过 configure() 方法更新域轴。这允许独立更新子图的范围轴。
自动更新域轴
要自动调整共享域轴,请使用 addSeries() 或 removeSeries () 而不是 setSeriesVisible()。这些方法会触发域轴的配置。
示例自定义
下面的代码示例演示了一个 CombinedDomainXYPlot,其中当子情节已更新或系列已更新隐藏。
mainPlot.getDomainAxis().configure();
注意事项
建议的切换 setAutoRange() 的方法可以用单个 configure() 调用代替,但效果可能不会值得注意的是,数据和最大范围保持不变。
public static void init() { XYItemRenderer renderer = new StandardXYItemRenderer(SHAPES_AND_LINES); XYPlot plot1 = new XYPlot( generateData(), null, new NumberAxis("Range 1"), renderer); XYPlot plot2 = new XYPlot( generateData(), null, new NumberAxis("Range 2"), renderer); final CombinedDomainXYPlot plot = new CombinedDomainXYPlot(new NumberAxis("Domain")); plot.setDomainPannable(true); plot.setRangePannable(true); plot.add(plot1); plot.add(plot2); plot.setOrientation(PlotOrientation.VERTICAL); JFreeChart chart = new JFreeChart( "Combined Plots", JFreeChart.DEFAULT_TITLE_FONT, plot, true); ChartPanel chartPanel = new ChartPanel(chart); chartPanel.setPreferredSize(new Dimension(800, 500)); JPanel controlPanel = new JPanel(); controlPanel.add(new JButton(new UpdateAction(plot, 0))); controlPanel.add(new JButton(new UpdateAction(plot, 1))); for (int i = 0; i < MAX; i++) { JCheckBox jcb = new JCheckBox(new VisibleAction(renderer, i)); jcb.setSelected(true); renderer.setSeriesVisible(i, true); controlPanel.add(jcb); } JFrame frame = new JFrame("Combined Plot Example"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.add(chartPanel, BorderLayout.CENTER); frame.add(controlPanel, BorderLayout.SOUTH); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); }
以上是如何在 JFreeChart 的 CombinedDomainXYPlot 中动态重新缩放域轴?的详细内容。更多信息请关注PHP中文网其他相关文章!