现在我是一张JFreeChart折线图。我想添加标记来标记一些事件。我添加了标记。问题是标记标签已经开始重叠。我想通过仅在用户将鼠标悬停在标记线上时显示标记标签来解决此问题。我如何捕获鼠标悬停事件?
Marker tempMarker = new ValueMarker(hour.getFirstMillisecond());
tempMarker.setPaint(Color.BLACK);
tempMarker.setLabelAnchor(RectangleAnchor.TOP_LEFT);
tempMarker.setLabelTextAnchor(TextAnchor.TOP_RIGHT);
//instead of this i want a mouseoverlistner and then show the label
tempMarker.setLabel("Event Name");
鼠标悬停的代码
chartPanel.addChartMouseListener(new ChartMouseListener() {
@Override
public void chartMouseClicked(ChartMouseEvent event) {
//do something on mouse click
}
@Override
public void chartMouseMoved(ChartMouseEvent event) {
System.out.println("Entity Type: " + event.getEntity());
}
});
当我将鼠标悬停在Marker对象上时,ChartEntity将被发送到chartMouseMoved。这与我鼠标悬停在图表的其他非填充部分时相同。
答案 0 :(得分:2)
这不可能做到这一点。我在this thread论坛{@ 3}}的@paradoxoff得到了帮助。这就是我实现它的方式。
org.jfree.chart.annotations
文件夹。将其添加到您的项目中。使用以下代码替换标记Annotations
XYDomainValueAnnotation tempMarker = new XYDomainValueAnnotation();
tempMarker.setValue(hour.getFirstMillisecond());
//set the color of the lines
switch (priority) {
case Constants.HIGH_IMPORTANCE:
tempMarker.setPaint(Color.RED);
break;
case Constants.LOW_IMPORTANCE:
tempMarker.setPaint(Color.GREEN);
break;
default:
tempMarker.setPaint(Color.BLACK);
}
// dont set the label
//tempMarker.setLabel("Event Name");
//set the Tool Tip which will display when you mouse over.
tempMarker.setToolTipText("Annotation");
//format everything
tempMarker.setStroke(new BasicStroke(5.0f));
tempMarker.setLabelTextAnchor(TextAnchor.TOP_LEFT);
tempMarker.setLabelAnchor(RectangleAnchor.TOP_LEFT);
tempMarker.setRotationAnchor(TextAnchor.TOP_LEFT);
//add the annotation lines
plot.addAnnotation(tempMarker);
当您将鼠标悬停在注释行上时,将显示工具提示。