4

我有一个 XY 位置图,并希望最新的点成为一个图标。这在 JFreeChart 中可行吗?

4

1 回答 1

6

在 xy 图上,您需要跟踪添加的最后一个 xy 点,然后使用以下内容添加它:

double x = 150;
double y = 300;
XYPlot plot = chart.getXYPlot();
ImageIcon imageIcon = new ImageIcon("/path/to/your/icon.png");
XYAnnotation xyannotation = new XYImageAnnotation(x, y, imageIcon.getImage());
plot.addAnnotation(xyannotation); 
于 2009-02-09T16:47:25.283 回答