vote up 0 vote down star

Hello all,

alt text

I am having an issue where the chart labels on my Flex Pie Chart don't go away when the data is refreshed. In the picture above, the left/before chart is how the chart loads by default. By choosing another item from a drop down, the chart changes to the right/after chart, but the "At Risk" label does not go away. The same goes for another selection where "In Work" does no go away.

Has anyone else had this happen to them? I can't find ANY information on this!

Thanks!

-Matt

flag

Was a bmp really necessary? What's wrong with PNG? – Richard Szalay Jun 30 at 9:47
Uhh... I dunno, I just did a quick copy/paste in Paint. – mattdell Jul 1 at 18:24

3 Answers

vote up 3 vote down check

I ran into this problem and it took me a while to figure out a workaround for this bug.

To fix this, I set the PieChart series when the dataProvider's underlying Collection is set and anytime that Collection changes:

<?xml version="1.0" encoding="utf-8"?>
<mx:PieChart xmlns:mx="http://www.adobe.com/2006/mxml"
    dataProvider="{dataForPieChart}">
    <mx:Script>
        <![CDATA[
            import mx.events.CollectionEvent;
            import mx.collections.ArrayCollection;
            import mx.charts.series.PieSeries;

            [Bindable]
            private var _dataForPieChart:ArrayCollection;

            public function set dataForPieChart(value:ArrayCollection):void
            {
                _dataForPieChart = value;

                /* Add a Collection Change Event Listener to the Collection. */
                _dataForPieChart.addEventListener(
                    CollectionEvent.COLLECTION_CHANGE, 
                    dataForPieChart_collectionChangeHandler);

                reloadPieSeries();
            }

            public function get dataForPieChart():ArrayCollection
            {
                return _dataForPieChart;
            }

            private function dataForPieChart_collectionChangeHandler(
                event:CollectionEvent):void
            {
                reloadPieSeries();
            }

            private function reloadPieSeries():void
            {
                series = new PieSeries();

                series.field = "myValue";

                series.labelPosition = "callout";
            }
        ]]>
    </mx:Script>
</mx:PieChart>
link|flag
Thanks Eric. I have tried this quite a number of times and tried to tweak it, but I can't get it to work. :( – mattdell May 9 at 1:38
I also wrestled with this bug for more than a whole day, lots of swearing and hair loss included. Eric's idea works, though: The key is to create a new PieSeries every time the SeriesInterpolate animation stops. The bug does not surface if you don't animate the PieChart's changes. There's abug in Adobe's bug tracker at bugs.adobe.com/jira/browse/FLEXDMV-1995 - they're fixing it in Flex 4. – Simon May 26 at 9:45
Yup! That's the bug I entered, and apparently it's currently being worked on. – Eric Belair May 26 at 13:24
vote up 1 vote down

What does your data look like in both cases? My guess is that you have series data whose value is 0, which may cause the label to render without any visible slice showing up on the pie chart. Try filtering out data with 0 values or using a custom label function to not display the label if the field value is 0.

(Note this is just a guess)

link|flag
This sort of helped. I looped through the data and removed the data with a count of 0. That fixed the issue with the labels not disappearing. But now for some reason Labels don't show AT ALL for Pie Charts with only one item (ie - 100%). Sigh... – mattdell May 9 at 1:41
vote up 0 vote down

Sorry but i don't use any effect and the bug surfaces even if i tried your suggested solution? I use Mate. Here is my code:

    				[Bindable]
					private  var _graficoStatistiche:ArrayCollection;

    				private function dataForPieChart_collectionChangeHandler(
                		event:CollectionEvent):void
            		{
                		reloadPieSeries();
            			series.validateProperties();
            			series.validateNow();
            			series.validateDisplayList();

            		}

					public function set graficoStatistiche(value:ArrayCollection):void
            		{
                		_graficoStatistiche = value;
						/* Add a Collection Change Event Listener to the Collection. */
                		_graficoStatistiche.addEventListener(
                    	CollectionEvent.COLLECTION_CHANGE, 
                    		dataForPieChart_collectionChangeHandler);
						reloadPieSeries();
            		}

					public function pieFillFunction(item:ChartItem, index:Number):IFill {
		          		var curItem:PieSeriesItem = PieSeriesItem(item);
		          			if(curItem.item.Tipo=="OK") {
		              			return scOK;
		          		} else if (curItem.item.Tipo=="Pending") {
		              		return scPending;
		          		} else {
		              		return scKO;
		          		}
		     		}

            		public function get graficoStatistiche():ArrayCollection
            		{
                		return _graficoStatistiche;
            		}

					private function displayStatistiche(data:Object, field:String, index:Number, percentValue:Number):String {
						var roundPercVal : Number; 
						roundPercVal = Math.round(percentValue *10)/10; 
						var temp:String= (" " + roundPercVal).substr(0,6);
						return data.Tipo + ": " + '\n' + "Numero Messaggi: " + data.Numero + '\n' + temp + "%";
					}


            		private function reloadPieSeries():void
            		{

                		series = new PieSeries();



            		}
			]]>
    		</mx:Script>

			<mx:series>
        		<mx:PieSeries  id="series" labelPosition="callout" labelFunction="displayStatistiche" fillFunction="pieFillFunction" field="Numero" >
            		<mx:calloutStroke>
                		<mx:Stroke weight="0" color="#45C02D" alpha="1.0"/>
            		</mx:calloutStroke>
            		<mx:radialStroke>
                		<mx:Stroke weight="0" color="#FFFFFF" alpha="0.20"/>
            		</mx:radialStroke>
            		<mx:stroke>
                		<mx:Stroke color="0" alpha="0.20" weight="2"/>
            		</mx:stroke>
        	</mx:PieSeries>
    	</mx:series>

	</mx:PieChart>

Any suggestgions? Thanks a lot Nello

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.