Rectangle2D dataArea = info.getPlotInfo().getDataArea();
ValueAxis domainAxis = this.renderer.getPlot().getDomainAxis();
RectangleEdge edge = this.renderer.getPlot().getDomainAxisEdge();
// define the point for the peaks
double peakPoint = domainAxis.java2DToValue(point.getX(), dataArea, edge);
this.intmark = new ValueMarker(peakPoint);
this.intmark.setPaint(Color.GREEN);
this.renderer.getPlot().addDomainMarker(this.intmark, Layer.BACKGROUND);
}