Hi guys,

I think I found a bug when using a "stacked" ColumnSet and a LogAxis.
When both are used in combination, I only see one of the series. 

Take away the LogAxis and it displays properly, change the "stacked"
set to "clustered" and it displays properly.

All code to reproduce is below.

Any ideas on a work-around or did I miss something?

thanks,
Thunder

_____________________________

<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
        xmlns:mx="http://www.adobe.com/2006/mxml"; 
        height="100%" width="100%">

<mx:CartesianChart id="mainChart" dataProvider="{xmldp}" width="100%"
height="100%">
        <mx:horizontalAxis>
                <mx:CategoryAxis categoryField="c1" />
        </mx:horizontalAxis>
        <mx:verticalAxis>
                <mx:LogAxis />
        </mx:verticalAxis>
        <mx:series>
                <mx:ColumnSet type="stacked">
                        <mx:series>
                                <mx:ColumnSeries name="ser1" xField="c1" 
yField="c2" />
                                <mx:ColumnSeries name="ser2" xField="c1" 
yField="c3" />
                        </mx:series>
                </mx:ColumnSet>
        </mx:series>
</mx:CartesianChart>

<mx:XMLListCollection id="xmldp" source="{xmldata.row}" >
</mx:XMLListCollection>

<mx:Script>
        <![CDATA[
        import mx.collections.XMLListCollection;
        
        [Bindable]
        public var xmldata:XML=
<data>
        <row>
          <c1>
            LATIN AMERICA
          </c1>
          <c2>
            37678868.637720306168
          </c2>
          <c3>
            110142187.90926
          </c3>
        </row>
        <row>
          <c1>
            WESTERN EUROPE
          </c1>
          <c2>
            318490344.2893529101133
          </c2>
          <c3>
            679071488.21768
          </c3>
        </row>
        <row>
          <c1>
            CANADA
          </c1>
          <c2>
            120256461.5727694942742
          </c2>
          <c3>
            215627454.08756
          </c3>
        </row>
        <row>
          <c1>
            UNITED STATES
          </c1>
          <c2>
            988251270.71500001564
          </c2>
          <c3>
            1424728739
          </c3>
        </row>
        <row>
          <c1>
            UNKNOWN
          </c1>
          <c2>
            1384116330.0040691457986
          </c2>
          <c3>
            46989736559.273270562118
          </c3>
        </row>
        <row>
          <c1>
            ASIA
          </c1>
          <c2>
            317159861.37942892227342
          </c2>
          <c3>
            424260325.47515
          </c3>
        </row>
        <row>
          <c1>
            JAPAN
          </c1>
          <c2>
            194769590.7691669766298
          </c2>
          <c3>
            234463800.90701
          </c3>
        </row>
        <row>
          <c1>
            EASTERN EUROPE
          </c1>
          <c2>
            57658857.255431395895
          </c2>
          <c3>
            110793902.19164
          </c3>
        </row>
</data>
        
        ]]>
</mx:Script>
</mx:Application>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to