chartConfig.setXAxes(xAxesSet);
NumberYAxis yAxis = new NumberYAxis();
yAxis.setTitle(new AxisTitle("Wind speed (m/s)"));
yAxis.setMin(0.0);
yAxis.setMinorGrid(new MinorGrid());
yAxis.getMinorGrid().setLineWidth(0);
yAxis.setGrid(new Grid());
yAxis.getGrid().setLineWidth(0);
NumberPlotBand numberBand = new NumberPlotBand("Light air");
numberBand.setRange(new NumberRange(0.3, 1.5));