I need to have different spacing within one category.
The arrows show where there's supposed to be a spacing.
I used setItemMargin()
on the renderer, but the different colored "couples" need to be separate.
views:
18answers:
1
+1
A:
The relevant geometry is defined by the various calculate*()
methods in BarRenderer
, which you can override in your implementation of AsymmetricStatisticalBarRenderer
.
trashgod
2010-07-27 16:13:27
I tried to override the calculateSeriesWidth() method but it seems to be never used by my renderer? added @override annotation as well.
tzippy
2010-07-28 08:32:50
@tzippy: Yes, it's called by `calculateBarW0()`, which will have to be overridden as well.
trashgod
2010-07-28 11:36:47