Skip to content

Commit

Permalink
jfree#340 Alternative solution for chart refresh using handleClick(...)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri-Blankenstein-TNO committed May 8, 2023
1 parent 54ae006 commit ab439a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jfree/chart/ChartPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1926,7 +1926,7 @@ public void mouseClicked(MouseEvent event) {
if (this.chart == null) {
return;
}
this.chart.setNotify(true);
this.chart.handleClick(x, y, this.info);

// new entity code...
Object[] listeners = this.chartMouseListeners.getListeners(
Expand Down

0 comments on commit ab439a4

Please sign in to comment.