Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. print chart from a active x container

    Hi!, Yes you can use CallFunction() to invoke the print function of FusionCharts but it works only on FusionCharts v3 3.0.6 version. This might be helpful to you. CallFunction ("<invoke name=""print"" ><arguments><string>null</string></arguments></invoke>")
  2. Hi! Bender, We have checked your previous and also updated PHP file, & found that there are still errors on it, that is you are not using the closing tag i.e. "' />" and little more. Example (as in your code): $strXML .= "<category label='" .$ors['product']; $strXML .= "<set value=" .$ors3['profit']; It should be like: $strXML .= "<category label='" .$ors['product'] . "'/>"; $strXML .= "<set value='" .$ors3['profit'] . "'/>"; For reference I have modified your previous PHP file, Please have a look on the attached PHP file. php_file.txt
  3. Export fusion charts in to pdf

    Hi!, I am afraid export to PDF is not supported as of now. You could export as image using this: <chart imageSave='1' imageSaveURL='http://<<Path to your script>>/FusionChartsSave.aspx'> That will add an option "Save As Image" to the Context Menu & by clicking on this, your chart will be exported as image. Also, more information can be found here http://www.fusioncharts.com/docs/ -> "Saving Chart as Image". You can use your own code to save this image to PDF.
  4. Sharepoint usage

    Hi, Could you please tell us that your URL "http://11.21.21.21:100" is the Sharepoint's URL & also that the piedata.aspx is in same domain?
  5. Bubble chart: ".swf" file

    Hi! LaChouette, It is "Bubble.swf".
  6. saving chart dynamically as an image

    Hi!, Could you please download the latest evaluation version (3.0.6) from FusionCharts Download section? The evaluation version supports all the features available in license version. Regards, Rahul.
  7. MouseOver event

    Hi, I am afraid, this is not supported, as of now. Regards,
  8. Legend within Tooltip

    Hi, I am afraid, this is not supported, as of now. Regards, Rahul.
  9. Sorting of Bars in descending order

    Hi, I am afraid, as of now, chart doesn't support this feature. Regards, Rahul.
  10. Javascript Parameter Length

    Hi Dear! I m not sure but u can try. Store all ur XML in to a separate XML file including ur link. like this: and try to invoke the chart by setDataURL method. Also don't forget to encoded ur links. Rahul.