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)轴上.

上一篇:java-如何在JFreechart中获取X轴(范围轴)的静态范围


下一篇:JfreeChart 乱码问题处理