gpt4 book ai didi

java - JFreeChart:工具提示停止处理旋转图

转载 作者:行者123 更新时间:2023-11-30 02:35:29 25 4
gpt4 key购买 nike

我有一个包含一个系列的基本 XYPlot。当绘图方向为垂直时,工具提示工作正常。当绘图方向为水平方向时,工具提示根本不会出现,或者有时是由于错误的值。

public class HorizontalPlotTooltip {

public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
XYPlot plot = new XYPlot();
plot.setOrientation(PlotOrientation.HORIZONTAL);
NumberAxis xAxis = new NumberAxis("x-axis value");
xAxis.setAutoRange(true);
xAxis.setAutoRangeIncludesZero(false);
xAxis.setInverted(true);
plot.setDomainAxis(xAxis);
NumberAxis yAxis = new NumberAxis("y-axis value");
yAxis.setAutoRange(true);
yAxis.setAutoRangeIncludesZero(false);
plot.setRangeAxis(yAxis);
XYLineAndShapeRenderer renderer = new XYLineAndShapeRenderer(true,false);
StandardXYToolTipGenerator generator = new StandardXYToolTipGenerator(StandardXYZToolTipGenerator.DEFAULT_TOOL_TIP_FORMAT,new DecimalFormat("#"),new DecimalFormat("0.00"));
renderer.setBaseToolTipGenerator(generator);
XYSeriesCollection dataset = new XYSeriesCollection();
XYSeries series = new XYSeries("value");

for (int i=0; i < 2000; i++) {
series.add(i,Math.sin(i/500.0));
}
dataset.addSeries(series);
plot.setDataset(dataset);
plot.setRenderer(renderer);
JFreeChart chart = new JFreeChart("Inverted - Horizontal plot problem",plot);
ChartPanel chartPanel = new ChartPanel(chart);
// long dismiss delay to observe tooltip
chartPanel.setDismissDelay(100000);
frame.setPreferredSize(new Dimension(200,700));
frame.setMinimumSize(new Dimension(200,700));
frame.setLayout(new BorderLayout());
frame.add(chartPanel);
frame.setVisible(true);
}

当绘图是水平时,是否需要添加额外的代码才能使工具提示具有正确的值?

最佳答案

这是 JFreeChart 中的一个错误:

http://www.jfree.org/forum/viewtopic.php?f=3&t=117805

我会修复它,但首先必须评估哪些渲染器受到影响。

关于java - JFreeChart:工具提示停止处理旋转图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43225168/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com