final PlotOrientation orientation = computePlotOrientation();
chart = ChartFactory.createScatterPlot(computeTitle(), getDomainTitle(), getRangeTitle(),
xyDataset, orientation, isShowLegend(), false, false);
}
chart.getXYPlot().setRenderer(new XYDotRenderer());
configureLogarithmicAxis(chart.getXYPlot());
return chart;
}