"Bananas", "Grapes", "Plums", "Strawberries", "Raspberries"));
LinkedHashSet<XAxis> xAxesSet = new LinkedHashSet<InvientChartsConfig.XAxis>();
xAxesSet.add(xAxis);
chartConfig.setXAxes(xAxesSet);
NumberYAxis yAxis = new NumberYAxis();
yAxis.setTitle(new AxisTitle("Y-Axis"));
yAxis.setLabel(new YAxisDataLabel());
yAxis.getLabel().setFormatterJsFunc(
"function() {" + " return this.value; " + "}");
LinkedHashSet<YAxis> yAxesSet = new LinkedHashSet<InvientChartsConfig.YAxis>();
yAxesSet.add(yAxis);
chartConfig.setYAxes(yAxesSet);