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

I've never looked at this library before, so I'm sorry if this answer is incorrect.
I see that your
plotis of the typeCategoryPlot3D. This class has the methodgetValueAxis()which returns aValueAxis3Dobject. TheValueAxis3Dinterface extends from theAxis3Dinterface. And this last interface has these two methods:setRange(Range)setRange(double, double)Where I believe the the latter method is just a convenience method so you do not have to create a
Rangeobject.I hope this is what you were asking for?