Hi,
I am using FusionCharts in ASP.NET/C#.
How to set URL for each text that appears on xAxis or yAxis?
Eg: I'm using Bar2D and I used objChartDataFormatter.GetSingleSeriesXml() to return XML as follows:
{<chart xAxisName='Texts' yAxisName='Percentage' lineColor='#2B78DD' showValues='1' rotateLabels='1' slantLabels='1' useRoundEdges='1' labelStep='1' palette='3' use3DLighting='1' >
<set label='Text1' value='100'/>
<set label='Text2' value='85'/>
<set label='Text3' value='71'/>
</chart>}
If I use Link="abc.aspx?id=111", then URL is set for the bar graph,
but I want to set a URL for the "label" (i.e) for Text1, Text2, Text3.
Can anyone help me out on this?
Thanks.