Hi,

I have a question regarding charting.
Environment CF8.x developer latest patch, on Windows.

I have the following chart:
<cfchart format="flash" chartHeight="350" chartWidth="500" gridlines="5"
                        dataBackgroundColor="##cccccc" showBorder="no" 
backgroundColor="##cccccc"
                        scaleFrom="0"   showLegend="no" 
seriesPlacement="cluster"
                        show3D="yes"    tipStyle="MouseOver"    
tipBGColor="##ffffff">
        <cfchartseries type="bar" seriesLabel="item1" >
                <cfchartdata item="col_1" value="120"/>
        </cfchartseries>
        <cfchartseries type="bar" seriesLabel="item2" >
                <cfchartdata item="col_1" value="300"/>
        </cfchartseries>
        <cfchartseries type="bar" seriesLabel="Item3" >
                <cfchartdata item="col_1" value="50" />
        </cfchartseries>                
        <cfchartseries type="bar" seriesLabel="Item4" >
                <cfchartdata item="col_2" value="20" />
        </cfchartseries>
</cfchart>

I thought that the above will create a chart with two groupings, the
first one 3 bars under col_1 xAxis label and one under col_2 xAxis
label which is what I want.
I need like this:
120/300/50    20
  col_1         col_2

What I get is duplication. All chartdata is shown for both col_1 and
col_2 labels.
And I get like this
120/300/50/20    120/300/50/20
  col_1                col_2
I am missing something?

Thanks
Victor

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324020
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to