gpt4 book ai didi

java - 如何在 JFreeChart 图表上画线?

转载 作者:搜寻专家 更新时间:2023-10-31 08:07:29 27 4
gpt4 key购买 nike

我有可更新的 OHLCChart。我需要在图表上画一条线。

如何实现?

最佳答案

如果要在轴上的给定位置绘制垂直线或水平线,可以使用 ValueMarker :

ValueMarker marker = new ValueMarker(position);  // position is the value on the axis
marker.setPaint(Color.black);
//marker.setLabel("here"); // see JavaDoc for labels, colors, strokes

XYPlot plot = (XYPlot) chart.getPlot();
plot.addDomainMarker(marker);

如果要绘制水平线,请使用 plot.addRangeMarker()

关于java - 如何在 JFreeChart 图表上画线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9214682/

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