Skip to content
Snippets Groups Projects
Commit 871ffc9f authored by Mathieu Westphal (Kitware)'s avatar Mathieu Westphal (Kitware) :zap:
Browse files

Java: Fix an issue with axes actor API

parent faacd631
No related branches found
No related tags found
No related merge requests found
......@@ -66,10 +66,10 @@ public class LabeledCubeAxesActor {
cubeAxesActor.SetCamera(renderer.GetActiveCamera());
cubeAxesActor.SetBounds(points.GetBounds());
cubeAxesActor.SetXTitle("Date");
cubeAxesActor.SetXAxisMinorTickVisibility(0);
cubeAxesActor.SetXAxisMinorTickVisibility(false);
cubeAxesActor.SetAxisLabels(0, getXLabels());
cubeAxesActor.SetYTitle("Place");
cubeAxesActor.SetYAxisMinorTickVisibility(0);
cubeAxesActor.SetYAxisMinorTickVisibility(false);
cubeAxesActor.SetAxisLabels(1, getYLabels());
cubeAxesActor.SetZTitle("Value");
renderer.AddActor(cubeAxesActor);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment