This post isn't really a problem as such only in as much as I don't know how to do it.
What I would like to do is be able to use javascript like below and still make the Pie slice move out when clicked. Is it another attribute I need to set? or do I have to call a ActionScript from the Javascript?
If anyone can point me in the right direction I would really appreciate it.
XML
<chart caption='My Pie Chart' pieSliceDepth='35' >
<set label='Item1' value='5' link='javascript:MyFunc(1);' /> <set label='Item2' value='7' link='javascript:MyFunc(2);' />
</chart>
JS
function MyFunc(obj){ // do some ajax stuff}