public void onDeleteComment(ChartComment comment)
{
Overlay marker = overlayMapping.get(comment.getId());
final XYPlot plot = chartPanel.getChart().getPlot();
plot.removeOverlay(marker);
plot.redraw();
resizeChartView(); // TODO: Why this?
}
public void onHighlightComment(ChartComment comment)