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(
//// Simulated flight
simulation.getName(),
null,
null,
null,
PlotOrientation.VERTICAL,
true,
true,
false
/*title*/simulation.getName(),
/*xAxisLabel*/null,
/*yAxisLabel*/null,
/*dataset*/null,
/*orientation*/PlotOrientation.VERTICAL,
/*legend*/true,
/*tooltips*/true,
/*urls*/false
);
chart.addSubtitle(new TextTitle(config.getName()));