throw new IllegalArgumentException("Null 'orientation' argument.");
}
CategoryAxis categoryAxis = new CategoryAxis3D(categoryAxisLabel);
ValueAxis valueAxis = new NumberAxis3D(valueAxisLabel);
LineRenderer3D renderer = new LineRenderer3D();
if (tooltips) {
renderer.setBaseToolTipGenerator(
new StandardCategoryToolTipGenerator()
);
}
if (urls) {
renderer.setBaseItemURLGenerator(
new StandardCategoryURLGenerator()
);
}
CategoryPlot plot = new CategoryPlot(
dataset, categoryAxis, valueAxis, renderer