Can anyone suggest how to modify the width of bars (using VerticalBarRenderer3D adn VerticalNumberAxis3d on a VerticalCategoryPlot).
Thanks!
SNebben
Changing the width of 3D bars.
Re: Changing the width of 3D bars.
In order to draw charts that look reasonable at a range of different sizes, the bar widths are automatically calculated. You can have some control, indirectly, using these four methods from the CategoryPlot class:
public void setIntroGapPercent(double);
public void setTrailGapPercent(double);
public void setItemGapsPercent(double);
public void setCategoryGapsPercent(double);
These control the percentage of total width that is assigned to the different "gap types" in a bar chart. Experiment with different settings until you get what you want...
Regards,
DG.
public void setIntroGapPercent(double);
public void setTrailGapPercent(double);
public void setItemGapsPercent(double);
public void setCategoryGapsPercent(double);
These control the percentage of total width that is assigned to the different "gap types" in a bar chart. Experiment with different settings until you get what you want...
Regards,
DG.
Re: Changing the DEPTH of 3D bars.
...I guess my question is more rather is there a way to adjust the depth of the bars?
THanks
THanks
Re: Changing the DEPTH of 3D bars.
I'm way too late, but here is the answer for anyone who is looking for it:
http://www.object-refinery.com/phorum-3 ... 304&t=5304
Regards,
DG
http://www.object-refinery.com/phorum-3 ... 304&t=5304
Regards,
DG
Re: Changing the width of 3D bars.
Better late than never! We appreciate the responses all the time!