JFreeChart:十字线标签自定义位置

时间:2019-03-20 16:51:37

标签: jfreechart

是否可以将十字线标签放置在自定义位置?我有x和y十字线。我希望y十字线标签位于数据点附近(更改标签偏移X坐标)。

问题是RectangleAnchor没有这样的选择

Crosshair yCrosshair = new Crosshair(Double.NaN, Color.DARK_GRAY, new BasicStroke(0f));
yCrosshair.setLabelAnchor(RectangleAnchor.CENTER);

JFreeChart似乎完全忽略了标签偏移量设置:

Crosshair yCrosshair = new Crosshair(Double.NaN, Color.DARK_GRAY, new BasicStroke(0f));
yCrosshair.setLabelXOffset(5);

我在鼠标侦听器中具有标签所需的绘图坐标,但是找不到如何将其应用于标签位置。

1 个答案:

答案 0 :(得分:0)

好的,我已经使用XYPointerAnnotation解决了我的问题。

XYPointerAnnotation pointer = new XYPointerAnnotation( "", 0, 0, 7.0 * Math.PI / 4.0 ); 
pointer.setTipRadius(3.0); 
pointer.setBaseRadius(15.0); 
pointer.setPaint(Color.blue); 
pointer.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT); 
pointer.setBackgroundPaint(new Color(180, 180, 180, 180));

在发生鼠标移动事件时,我已将注释定位到所需的位置

mainPlot.removeAnnotation(pointer);
if ( !sY.isNaN() ) {
    pointer.setX(x);
    pointer.setY(sY);
    pointer.setText("POWER: "+ sY);
    mainPlot.addAnnotation(pointer);
}