Zero values in Bar3D
Posted: Thu Oct 27, 2011 6:16 pm
I need to show 0 value in a Bar3D. I have the code below. What should I change?
Code: Select all
Bar b = new Bar();
b.getMarks().setVisible(false);
getChart().addSeries(b);
b.add(1, 11, "a");
b.add(3, 12, "b");
b.add(2, 13, "c");
b.add(4, 14, "d");
b = new Bar();
getChart().addSeries(b);
b.getMarks().setVisible(false);
b.add(1, 23, "a");
b.add(3, 23, "b");
b.add(2, 24, "c");
b.add(4, 34, "d");
b = new Bar();
getChart().addSeries(b);
b.getMarks().setVisible(false);
b.add(1, 0, "a"); //Zero values, here is my problem
b.add(3, 0, "b");//Zero values, here is my problem
b.add(2, 1, "c");
b.add(4, 2, "d");