/**
* Draw the plot (axes and data visualization).
*/
private void drawPlot(final GC gc, final Rectangle plotArea,
final Point anchor, final ChartRenderingInfo info) {
PlotRenderingInfo plotInfo = null;
if (info != null) {
plotInfo = info.getPlotInfo();
}
this.plot.draw(gc, plotArea, anchor, null, plotInfo);
}