java-如何在JFreechart中添加其他文本?
作者:互联网
我只想添加有关图表的其他详细信息.我如何包含其他细节,如下面的图片所示.
解决方法:
final Marker start = new ValueMarker(3400000.0);
start.setPaint(Color.red);
start.setLabel("Current Value");
start.setLabelAnchor(RectangleAnchor.BOTTOM_LEFT);
start.setLabelTextAnchor(TextAnchor.TOP_LEFT);
plot.addRangeMarker(start);
34,00,000是计数器值.根据需要设置计数器值.在(x,y)轴上.
标签:jfreechart,swing,java 来源: https://codeday.me/bug/20191122/2057675.html