saptarshi

Members
  • Content count

    357
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by saptarshi

  1. Any knows LogMSLine.swf?

    Hi, Actually the LogMSLine.swf chart is a part of the PowerCharts v3.1 suite. http://www.fusioncharts.com/pcdocs/Contents/ChartSS/LogLine.html
  2. get data from Web Service

    Hi, I am assuming that the return value of the method is some data. You need to convert the data into the standard FusionCharts XML format. Once you get the XML you can easily make the charts using the .SWF the XML and the JS file with HTML as a wrapper. Hope this helps.
  3. Update map without reload

    Hi Brian, It is possible to change the Loading Dialog Message but not to remove the re-loading altogether. The Maps cannot be re-rendered without reloading.
  4. Charts in Black or animated by unknown codes?

    Hello George, Welcome to the forum! Could you please send us your HTML, XML in a Zip file so that we may take a look at what might be the problem. Also, please post the following: Flash Player version Operating System Browser name and version. Awaiting your reply.
  5. Hello, To display a tooltip for the entire chart you can specify the tooltip as the div title of the DIV in which the chart is rendered. Additionally you will have to set the window mode to transparent. Hope this works.
  6. Hello Anila, Could you please try using the following syntax to specify the JS link? clickURL="j-download('DwnNPS',2)" Hope this helps.
  7. Hello Anila, There is no fundamental difference between the two syntaxes.
  8. Individual colors 3D area MSCombi3D.swf

    Hello Brian, I am afraid, 3D charts such as MSCombi3D don't support anchors.
  9. Buy Online

    Hi, Thank you for your interest in FusionCharts. To place an order please drop in a mail at [email protected]. Could you please check out the following Documentation link for the package contents? http://www.fusioncharts.com/docs/Contents/DownloadC.html The Evaluation version of FusionCharts is fully functional so when you buy you will not need to modify any code as long as the folder structure remains the same. Hope this helps.
  10. Custom Labels for linear gauge

    Hi Brian, I have tried to figure a way of doing what you wanted to. Check the attached sample I made for you and see if this is what you want. Let me know if you would like certain changes to this. Hope this helps. For_Brian.zip
  11. saving chart to PDF or JPEG

    Maria, You need to render the chart at least once at the client end (in a browser) before you can export it at the server side. You cannot directly export the chart at the server side without rendering it at the client end first. If you are already doing that the there are a couple of things you need to check: 1) Whether you are using the latest version 3.1.1 of the SWFs and FusionChartsExportComponent.js (you can enable the debug mode to check your version) 2) Whether you have the Flash Player Global settings enabled as Madhumita has already pointed out. If none of these help, just send us the code you are using and we will try to see what could be causing the problem.
  12. Automatic setting of Y max

    Hey, Thanks so much for sharing this here on the forum!
  13. Hello Derek, Could you please confirm which version of the chart you are using? Are you using FusionCharts v3.1? To know you version number, just set the enableDebugMode flag to 1 as follows: <script type="text/javascript"> var chart = new FusionCharts("../Charts/MSCombiDY2D.swf", "ChartId", "600", "300", "1", "0"); chart.setDataURL("Data/Combi2DDY.xml"); chart.render("chartdiv"); </script> Now when you run the HTML you will see this message: Info: Chart loaded and initialized. Initial Width: 600 Initial Height: 300 Scale Mode: noScale Debug Mode: Yes Application Message Language: EN Version: 3.1.1 Waiting for your reply.
  14. Single serie and ScrollColumn2D.swf

    Hello, Welcome to the forum! Yes, it is possible to have a single series column chart with scroll using a ScrollColumn2D.swf chart. Example: http://www.fusioncharts.com/Gallery/Chart.asp?scrollcolumn2d_1 You can make this chart single series by just using the data of one data series instead of two when making the XML for the chart. Hope this helps.
  15. Drilldown map data with pop up screen

    Hello, Welcome to the forum! All drill down links have to be URL encoded for them to work. Could you please check the following link for more details on how to make a window pop-up? http://www.fusioncharts.com/docs/Contents/DrillDown/PopUps.html Hope this helps.
  16. Issue in Licensing fusion chats

    Hello Ranga, Could you please make sure you have downloaded the licensed SWFs from http://fusioncharts.com/PUC/ and replaced all the Evaluation SWF files with the new SWFs? Since your charts are showing watermarks then there must be the old evaluation SWFs somewhere which they are using to render the charts. Please make sure you are using the SWF files you have bought to render the charts? Hope this helps.
  17. Stacked Bar Chart - Cut Off Sum Label

    Hello Shane, Could you please try using the attached XML once? Hope this helps. Data.xml
  18. Display graphic [another fusionchart] on mouseover

    Hello, You will have to edit the ActionScript source files.
  19. multi line chart

    Hello, Welcome to the forum! Could you please go to the following link? http://www.fusioncharts.com/docs/Contents/ChartSS/MSLine.html'>http://www.fusioncharts.com/docs/Contents/ChartSS/MSLine.html You have to generate the XML required to render the chart because FusionCharts accepts only XML. Here is some help for PHP developers: Go to http://www.fusioncharts.com/docs/ and go to Guide for Web Developers > Using With PHP section Hope this helps.
  20. Hello, You are most welcome! So glad to hear it worked. Happy FusionCharting.
  21. Cusatom ToolText

    Hello, Welcome to the forum! To display a specific tool tip in the chart do the following: 1) Set <chart showToolTip='0'...> 2) <set label='Jan' value='220000' toolText='Custom Tool Text'/> Hope this helps.
  22. Chart Notes

    Hello, There are no feature for specifically displaying notes on a chart in FusionCharts, but you can do the same using the following: 1) The Subcaption. 2) ToolTip (text displayed on mouseover) Will that help?
  23. no swatches on legend on multi-series stack charts

    Hey, Thanks so much for helping out!
  24. SSL and Caching IE Issue

    Hello, We have already replied to your Ticket. Could you please pass noCache attribute to the URLs that are generating XMLs and try once? Example: mapchartdata.aspx?noCache={random number} Hope this helps.