Yes, there is.  In Flex 2, we've taken the multi-series behavior
embedded in column, area, and bar charts and broken them out for exactly
this kind of scenario. You should look at the 'ColumnSet' class.

Basically, you want something like this:

<CartesianChart>
  <series>
    <ColumnSet type="clustered" >
      <series>
        <ColumnSet type="stacked">
          <series>
            <ColumnSeries ... /> 
            <ColumnSeries ... /> 
            <ColumnSeries ... /> 
          </series>
        </ColumnSet>
        <ColumnSet type="stacked">
          <series>
            <ColumnSeries ... /> 
            <ColumnSeries ... /> 
            <ColumnSeries ... /> 
          </series>
        </ColumnSet>
      </series>
   </ColumnSet>
 </series>
</CartesianChart>


Ely.
 

-----Original Message-----
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of yaagcur
Sent: Saturday, March 18, 2006 8:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Any way to combine clustered and stacked in a
column chart (Flex 2) ?

It's all in the Subject Line

An example would be a soccer players goals by year stacking how he
scored e.g left foot,right foot, header alongside another stack of play
scored from e.g open play, corner, penalty etc.

Cheers






--
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



 




--
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/

<*> 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