5/24/2010 9:48:42 AM
Title:
breadcrumb
I am trying to implement breadcrumb for my Pie chart actions . I have data like this
<Cars>
< Company name="GM" total ="10" >
<Year name="1980" total ="5">
<Model name ="Chevy " total = "2"/>
<Model name ="Hummer " total = "1"/>
</Year>
</Company>
</Cars>
Initial stage I am showing all companies info on the pie chart and if I click on company it takes me to Years of that company and again years to models . The pie chart is working perfect no issue .But when implementing breadcrumb how do I get to the Cars node ( root node ) when I am at Model level or at least to one level up . The parent() function of the data is not helping . Thanks for your help.
5/24/2010 11:10:51 AM
Check this link you can move up or down both levels in Pie or Column Chart. Click on the chart to go deep and to level up use the button "Up One" on the top.
Sample link is here :
http://flexpearls.blogspot.com/2007/12/displaying-groupingcollectionhierarchic.html
Source link is here :
http://sreenivas.ramaswamy.googlepages.com/ChartDrillDownUp.zip
I hope it helps you
5/25/2010 1:49:44 PM
Thanks Turbo that helped me