Vigyano

Members
  • Content count

    2
  • Joined

  • Last visited

About Vigyano

  • Rank
    Forum Newbie
  1. How to set URL

    I tried but it is not working if I have "href" in the label. If I remove "href" from anchor element then the text is displayed as a link, but it is not clickable. Any ideas?
  2. How to set URL

    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.