protected double mouseXAxisPosition(Point p) {
ChartRenderingInfo info = this.chartPanel.getChartRenderingInfo();
Rectangle2D dataArea = info.getPlotInfo().getDataArea();
ValueAxis axis = getDomainAxis();
RectangleEdge edge = getXYPlot().getDomainAxisEdge();
return axis.java2DToValue(p.getX(), dataArea, edge);
}
protected double mouseYAxisPosition(Point p) {
ChartRenderingInfo info = this.chartPanel.getChartRenderingInfo();