Added comments to createXYLineChart arguments.

This commit is contained in:
kruland2607 2013-02-06 20:19:45 -06:00
parent a4efe4f3b9
commit eef2cbb5fa

View File

@ -89,14 +89,14 @@ public class SimulationPlot {
this.chart = ChartFactory.createXYLineChart( this.chart = ChartFactory.createXYLineChart(
//// Simulated flight //// Simulated flight
simulation.getName(), /*title*/simulation.getName(),
null, /*xAxisLabel*/null,
null, /*yAxisLabel*/null,
null, /*dataset*/null,
PlotOrientation.VERTICAL, /*orientation*/PlotOrientation.VERTICAL,
true, /*legend*/true,
true, /*tooltips*/true,
false /*urls*/false
); );
chart.addSubtitle(new TextTitle(config.getName())); chart.addSubtitle(new TextTitle(config.getName()));