You found a bug! We've classified it as EXTJSIV-7318 . We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.
  1. #1
    Sencha User Daniil's Avatar
    Join Date
    Jun 2010
    Location
    Saint-Petersburg, Russia
    Posts
    681
    Vote Rating
    62
    Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough

      1  

    Default [4.1.2] ColumnSeries style fill option appears to be not working

    [4.1.2] ColumnSeries style fill option appears to be not working


    REQUIRED INFORMATION

    Ext version tested:
    • Ext 4.1.2
    Browser versions tested against:
    • Chrome
    • FireFox
    • IE9
    Description:
    • The ColumnSeries style fill option appears to be not working.
    Steps to reproduce the problem:
    • Please run the sample.
    • Look at the third panel with the ColumnSeries.
    The result that was expected:
    • The color of columns according the style fill option.
    Code:
    style: {
         fill: 'url(#bar-gradient)',
        ...
    }
    The result that occurs instead:
    • The color seems to be the default one.
    • It is also doesn't work without gradients setting just some color.
    Test Case:

    http://docs.sencha.com/ext-js/4-1/#!...ts/Charts.html

    HELPFUL INFORMATION


    Operating System:
    • Windows 7

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,624
    Vote Rating
    434
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Thanks for the report! I have opened a bug in our bug tracker.

  3. #3
    Sencha User Daniil's Avatar
    Join Date
    Jun 2010
    Location
    Saint-Petersburg, Russia
    Posts
    681
    Vote Rating
    62
    Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough Daniil is a jewel in the rough

      0  

    Default


    For someone who is interested in.

    For now, before fixing, filling a column series can be achieved using its renderer:
    Code:
    attributes.fill = 'red'; 
    return attributes;