FusionCharts for Flex helps you to create drill-down charts easily. All the charts in FusionCharts for Flex suite support drill down for data elements i.e., in each chart type, the data plot of that chart (columns in Column Charts, Pie slices in Pie Charts etc.) can act as hotspots for the chart. Using the drill down functionality provided by FusionCharts, you can easily produce charts that enact "drill down" or "zoom in (data)" capabilities within your Flex project.
Here we will add simple links to our simple sales chart example. To define a simple link for any data plot, just define the link attribute for the <set> element as under:
<set ... value='2235' ... link='DrillDown.html' ...>
If we want each of the data-plots to open a new location, we can specify it as follows:
<chart caption='Half Yearly Sales Summary' subcaption='For the year 2008 - First Half' xAxisName='Month' yAxisName='Sales' numberPrefix='$' >
<set label='Jan' value='17400' link='Location1.html' />
<set label='Feb' value='19800' link='Location2.html' />
<set label='Mar' value='21800' link='Location3.html' />
<set label='Apr' value='23000' link='Location4.html' />
<set label='May' value='29000' link='Location5.html' />
<set label='Jun' value='27600' link='Location6.html' />
</chart>