1. Ext.override(Ext.chart.series.Area, {
  2. drawSeries: function() {
  3. var result,
  4. style = this.colorArrayStyle,
  5. copy,
  6. idx = this.themeIdx,
  7. fill;
  8. if (this.style.fill) {
  9. copy = Ext.Array.clone(style);
  10. fill = Ext.isArray(this.style.fill) ? this.style.fill : [this.style.fill];
  11. Ext.each(fill, function(color, index) {
  12. style[idx + index] = color;
  13. });
  14. }
  15. result = this.callParent(arguments);
  16. this.colorArrayStyle = copy;
  17. return result;
  18. }
  19. });