tags:

views:

18

answers:

1

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.

alt text

+1  A: 

The relevant geometry is defined by the various calculate*() methods in BarRenderer, which you can override in your implementation of AsymmetricStatisticalBarRenderer.

trashgod
I tried to override the calculateSeriesWidth() method but it seems to be never used by my renderer? added @override annotation as well.
tzippy
@tzippy: Yes, it's called by `calculateBarW0()`, which will have to be overridden as well.
trashgod