EXTJS 4 - I am trying to customize the renderer function for the 'series' in StackedBarChart. I want to conditionally color the bars.

renderer: function(sprite, record, curAttr, index, store) {
                        return Ext.apply(curAttr, {
                              fill: color
                        });
                        return curAttr;
},

My Question is, how to find out which element its currently rendering. I want to give white color to the first element of each record in my data store/series.

Thank you.

link|improve this question

61% accept rate
did you solve this? would you share if so? ty – astrocybernaute Jan 4 at 11:43
feedback

1 Answer

The index tells you which element is rendering. I've noticed however that in some situations renderer() is called 3 times before the elements start getting processed. I asked in the Sencha forums about this but to no avail.

link|improve this answer
did you find a solution? would you plz share ? – astrocybernaute Jan 10 at 10:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.