06
Nov
07

Exploding wedges in a Flex PieChart control

The following example shows how you can explode specific wedges in a PieChart control when the user clicks an item in the chart.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/11/06/exploding-wedges-in-a-flex-piechart-control/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <mx:Script>
        <![CDATA[
            import mx.charts.events.ChartItemEvent;

            private function pieChart_itemClick(evt:ChartItemEvent):void {
                var arr:Array = [];
                arr[evt.hitData.chartItem.index] = 0.2;
                pieSeries.perWedgeExplodeRadius = arr;
            }
        ]]>
    </mx:Script>

    <mx:XML id="dp">
        <products>
            <product label="Product 1" data="3" />
            <product label="Product 2" data="1" />
            <product label="Product 3" data="4" />
            <product label="Product 4" data="1" />
            <product label="Product 5" data="5" />
            <product label="Product 6" data="9" />
        </products>
    </mx:XML>

    <mx:PieChart id="pieChart"
            dataProvider="{dp.product}"
            selectionMode="single"
            showDataTips="true"
            itemClick="pieChart_itemClick(event);"
            height="250"
            width="100%">
        <mx:series>
            <mx:PieSeries id="pieSeries" field="@data">
                <mx:stroke>
                    <mx:Stroke color="black" weight="0" />
                </mx:stroke>
                <mx:filters>
                    <mx:Array />
                </mx:filters>
            </mx:PieSeries>
        </mx:series>
    </mx:PieChart>

</mx:Application>

View source is enabled in the following example.


4 Responses to “Exploding wedges in a Flex PieChart control”


  1. 1 ÐâŖк6 Nov 21st, 2007 at 9:36 am

    Oh, this answers my last quiestion jejeje.

    Here’s another one: can you use an interpolatios when the wedge explodes??

    By the way, sorry for bothering, but I could really use your help.
    Thank you.

  2. 2 peterd Nov 21st, 2007 at 10:17 am

    DaRk6,

    I just found this out last night. Check out “Creating Exploding Pie Slices in Flex” and check out the Application/Source at the bottom.

    Peter

  3. 3 Tony Morsey Jul 9th, 2008 at 8:50 am

    I have a related question. What controls the effect of the colors changing on hover-over and itemclick on this pie chart? Is there a way to turn this effect off and only show the true/defined color of the pie slice?

    Thanks!!

    Tony

  4. 4 Benjamin Classen Jul 9th, 2008 at 12:06 pm

    To Tony:

    I found that the inclusion of selectionMode="single" for the pie chart allows the “hover” or “roll over” effect to occur. So without that property (or is it style?) the pie chart does not have that effect.

    As to the second part about modifying the effect I am unsure. As a 2nd day Flex programmer I am trying to solve that problem right now. My intuition is leading me to the properties (or are they styles?) itemRollOver and itemRollOut with an effect such as fade.

    I will be eagerly awaiting any guidance or will post additional information as I uncover it.

    Thanks Peter!
    Benjamin

Leave a Reply

This blog is terrible at eating HTML tags. If you plan on posting code/XML, please escape your "<" characters as "&lt;" and your ">" characters as "&gt;".




November 2007
M T W T F S S
« Oct   Dec »
 1234
567891011
12131415161718
19202122232425
2627282930  

Badge Farm

  • Firefox 2
  • Powered by Redoable 1.2
  • Feeds burnt by Feedburner
  • Feed