darshan

Members
  • Content count

    8
  • Joined

  • Last visited

About darshan

  • Rank
    Forum Newbie
  1. Hi Team, I am facing problem while trying to get Altered value from Gauge in runtime, i am using following code and i am getting undefined for "dialValue" . function FC_ChartUpdated(DOMId) { if (DOMId=="ChId1") { var chartRef = getChartFromId(DOMId); var dialValue = chartRef.getData(0); alert(dialValue); getNewContent(Math.floor(dialValue)); } }
  2. Using Link in set tag

    Hi, I giving "Link" attribute inside <set> tag, to open new page in side a frame. its working, but movment of slice's of pie chart (on the main page) has stopped. and if try after removing the link attribute, its working fine. cant't we do both the task in parellel? <set lable='somename' value='somevalue' link='F-someframename-somepage.aspx%3fsomevariable%3dsomevalue'>
  3. Hi, I want to disply the selected rows from database table, which i want to filter according to the AngularGauge's value. Is there any way to do so?
  4. JavaScript functions as links

    Hey, its working...!!! thanks a lot...
  5. JavaScript functions as links

    i am passing the below string to setdataXML method. i have used token overloader () to pass double qoutes... "<map borderColor='005879' fillColor='D7F4FF' numberSuffix=' Mill.' includeValueInLabels='1' labelSepChar=': ' baseFontSize='9'> <data> <entity id='NA' value='515' link="JavaScript:myJS('NA, 515');"/> <entity id='SA' value='373' link="JavaScript:myJS('SA, 373');"/> <entity id='AS' value='3875' link="JavaScript:myJS('AS, 3875');"/> <entity id='EU' value='727' link="JavaScript:myJS('EU, 727');"/> <entity id='AF' value='885' link="JavaScript:myJS('AF, 885');"/> <entity id='AU' value='32' link="JavaScript:myJS('AU, 32');"/> </data></map>"
  6. I am using your fusionmaps in a .Net application. I am using setDataXML method and trying to use the "JavaScript functions as links". But even after passing the valid XML, swf is giving message "invalid XML data". and when I try using setDataURL method, and passing the same xml from external file, its working properly. Can't I use setDataXML for "JavaScript functions as links"?