I have my Area chart created in the code below
chart = Chart3DFactory.createAreaChart("", // Main title
"", // Sub title
dataset, null, "Date", // X-Axis legend
"Time (seconds)"); // Y-Axis legend
chart.setChartBoxColor(new Color(255, 255, 255, 127));
chart.setLegendAnchor(LegendAnchor.BOTTOM_RIGHT);
CategoryPlot3D plot = (CategoryPlot3D) chart.getPlot();
plot.setGridlinePaintForValues(Color.BLACK);
chartViewer = new Chart3DViewer(chart);
borderPane.setCenter(chartViewer);
My values in the graph are above 200 and I would like to specify the Axis to start at 200. I haven't found much documentation on the official website or Github. Does anyone know if it's possible ? Thanks