|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/1/2008 9:21:49 AM
Posts: 1,
Visits: 1
|
|
When i click an annotation in the chart, I always get the link for the last annotationGroupElement.
Im using annotations to label and make links in AngularGauge.swf.
For example if i click the Idéavklaring text in FaseA, i get the link for FaseE. (or if FaseE is removed, i get the link for FaseD)
XML
<annotations>
<annotationGroup id='FaseA' showBelow='0' link="javascript:get_iteration_html('1');" />
<annotation type='text' x='60' y='105' label='Idéavklaring' size='9' color='000000' />
</annotationGroup>
<annotationGroup id='FaseB' showBelow='0' link="javascript:get_iteration_html('2');" >
<annotation type='text' x='75' y='65' label='Idéutvikling' size='9' color='000000' />
</annotationGroup>
<annotationGroup id='FaseC' showBelow='0' link="javascript:get_iteration_html('3');" >
<annotation type='text' x='125' y='25' label='Forretnings' size='9' color='000000' />
<annotation type='text' x='125' y='40' label='utvikling' size='9' color='000000' />
</annotationGroup>
<annotationGroup id='FaseD' showBelow='0' link="javascript:get_iteration_html('4');" >
<annotation type='text' x='170' y='65' label='Drift' size='9' color='000000' />
</annotationGroup>
<annotationGroup id='FaseE' showBelow='0' link="javascript:get_iteration_html('5');" >
<annotation type='text' x='200' y='100' label='Vekst' size='9' color='000000' />
</annotationGroup>
</annotations>
Javascript
function get_iteration_html(phase)
{
alert(phase);
}
Have tried all sort of changes and testing to make it work, but no luck. Therefore i assume that it's a bug.
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 5/12/2008 6:29:47 AM
Posts: 1,772,
Visits: 448
|
|
Hi,
We've identified it as a bug and would release an update soon.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|