palmun

Members
  • Content count

    5
  • Joined

  • Last visited

About palmun

  • Rank
    Forum Newbie
  1. Exporter Problem In Ie

    Hello We are using a licensed copy of Fusion charts(latest version) . I believe we also have the support. The issue I am facing is with exporters in IE. We have many-one paradigm of exporting. We have one exporter (fcExporter) and all the charts export to this formatter. We do not show all the charts at one time. The user can pick the chart they want to display and we send the chart JSON in AJAX and the chart displays. The problem in IE is that after the first chart is exported all the other chart exports go back to the first chart exported. Firefox,chrome and Safari it is fine. Is there a way a call could be set up Regards
  2. Hello Guys, I am trying to display data in a tabular format. Is there a way?. I see there is something called SSGrid but does not have javascript equivalence. I see Heat Map chart in Power charts. Are thier any other way? Regards
  3. Linked Charts Json

    Thank you very much. It is working. From your conversation I understand that one does not need this setting if the content is delivered through a Web server. Am I correct?
  4. Linked Charts Json

    Thanks for the reply. I am still not able to see the Linked chart. I using setJSONData and lining in the JSON Data. I am attaching the file and if you could please take a look at it and see if I am doing anything wrong, that would be great. Thank you for your help. I am able to see the first level. weekly-sales-jsondef.html
  5. Linked Charts Json

    Hello Guys I am trying to deliver Linked charts using JSON data. I am using the javascript way now and then planning go the render tag route. I am using the evaluation version. I am able to see the level1 charts but not the linked chart when clicked on parent charts. I have all the three javascript files (FusionChart.js, highcharts.js, jquery.min.js). I am using setJSONData and this is the data I use {"chart":{"caption":"OutstandingsDashboard","xaxisname":"months","yaxisname":"Outstanding Amount"}, "data":[{"label":"JUN10","value":100.01,"link":"newchart-json-1"}, {"label":"JUL10","value":200.01,"link":"newchart-json-2"}], "linkeddata":[{"id":"1", "linkedcharts": {"chart":{"caption":"Dealer Outstandings","xaxisname":"name","yaxisname":"Outstanding Amount"}, "data":[{"label":"label_1_14","value":100.01}, {"label":"label_1_15","value":200.01}, {"label":"label_1_16","value":300.01}, {"label":"label_1_17","value":400.01}, {"label":"label_1_18","value":500.01}, {"label":"label_1_19","value":600.01}, {"label":"label_1_20","value":700.01}, {"label":"label_1_21","value":800.01}, {"label":"label_1_22","value":900.01}, {"label":"label_1_23","value":1000.01}]}}, {"id":"2", "linkedcharts": {"chart":{"caption":"Dealer Outstandings","xaxisname":"name","yaxisname":"Outstanding Amount"}, "data":[{"label":"label_2_24","value":100.01}, {"label":"label_2_25","value":200.01}, {"label":"label_2_26","value":300.01}, {"label":"label_2_27","value":400.01}, {"label":"label_2_28","value":500.01}, {"label":"label_2_29","value":600.01}, {"label":"label_2_30","value":700.01}, {"label":"label_2_31","value":800.01}, {"label":"label_2_32","value":900.01}, {"label":"label_2_33","value":1000.01}]}} ]} Further more I have the same problem when trying the data provided by the Fusion chart examples. Is this feature available in evaluation version. Any help will be greatly appreciated.