Not sure why my post isn't visible...So here is my problem again.

I am using the code from the "charting explorer" component that is
available at 
http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml?versionChecked=true";

The sample is column chart, styles examples #3.

Using a gradient causes my bars to become invisible, yet the data is
still present and the tool tip shows the plotting points on the chart.
 If I comment out the <mx:fill> portion of each series the bars will
plot and become visible...but that means no style!

Here is the sample code if you don't want to view the link.

<mx:ColumnChart id="chart" dataProvider="{results}"
showDataTips="true" width="100%" height="100%" columnWidthRatio="0.9">

        <mx:horizontalAxis>
            <mx:CategoryAxis dataProvider="{results}"
categoryField="month"/>
        </mx:horizontalAxis>

        <mx:series>
            <mx:Array>
                <mx:ColumnSeries yField="apple" name="Apple">
                    <mx:fill>
                        <mx:LinearGradient>
                            <mx:entries>
                                <mx:Array>
                                    <mx:GradientEntry color="#C6D5DD"
ratio="0" alpha="100"/>
                                    <mx:GradientEntry color="#336699"
ratio="10" alpha="100"/>
                                    <mx:GradientEntry color="#24496D"
ratio="90" alpha="100"/>
                                    <mx:GradientEntry color="#000000"
ratio="100" alpha="100"/>
                                </mx:Array>
                            </mx:entries>
                        </mx:LinearGradient>
                    </mx:fill>
                </mx:ColumnSeries>

                <mx:ColumnSeries yField="orange" name="Orange">
                    <mx:fill>
                        <mx:LinearGradient>
                            <mx:entries>
                                <mx:Array>
                                    <mx:GradientEntry color="#D2F3C2"
ratio="0" alpha="100"/>
                                    <mx:GradientEntry color="#66CC33"
ratio="10" alpha="100"/>
                                    <mx:GradientEntry color="#5B9A40"
ratio="90" alpha="100"/>
                                    <mx:GradientEntry color="#000000"
ratio="100" alpha="100"/>
                                </mx:Array>
                            </mx:entries>
                        </mx:LinearGradient>
                    </mx:fill>
                </mx:ColumnSeries>
                <mx:ColumnSeries yField="banana" name="Banana">
                    <mx:fill>
                        <mx:LinearGradient>
                            <mx:entries>
                                <mx:Array>
                                    <mx:GradientEntry color="#F5FFBB"
ratio="0" alpha="100"/>
                                    <mx:GradientEntry color="#FFCC33"
ratio="10" alpha="100"/>
                                    <mx:GradientEntry color="#CD9600"
ratio="90" alpha="100"/>
                                    <mx:GradientEntry color="#97781D"
ratio="100" alpha="100"/>
                                </mx:Array>
                            </mx:entries>
                        </mx:LinearGradient>
                    </mx:fill>
                </mx:ColumnSeries>
            </mx:Array>
        </mx:series>

    </mx:ColumnChart>


Reply via email to