jsanthosh

Members
  • Content count

    6
  • Joined

  • Last visited

Everything posted by jsanthosh

  1. Threshold

    Hi Is threshold is supported in Fusion? If so how can i acheive that? Sample chart in HighCharts, http://jsfiddle.net/vGRFD/1/ Regards, Santhosh
  2. Threshold

    Any update on this. Regards, Santhosh
  3. Hi, Am new to FusionCharts. I have 2 questions. 1) Am trying to create a basic chart (Pure JavaScript) using FusionCharts. But am getting the below script error while creating. I have given the chart type as "Column3D". But if i give the chart type as "FusionCharts/Column3D.swf" then a column chart is created without 3D Effect. Can you tell me what am doing wrong here. Uncaught TypeError: Cannot call method 'chartType' of undefined Below is my code. <html> <head> <script type="text/javascript" src="FusionCharts/FusionCharts.js"> </script> </head> <body> <div id="chartContainer"></div> <script type="text/javascript"> FusionCharts.setCurrentRenderer('javascript'); var myChart = new FusionCharts( "Column3D", "myChartId", "400", "300", "0" ); myChart.setJSONData( { "chart": { "yaxisname": "Sales Figure", "caption": "Top 5 Sales Person", "numberprefix": "$", "showborder": "1", "imagesave": "1", "exporthandler": "http://export.api3.fusioncharts.com" }, "data": [ { "label": "Alex", "value": "25000" }, { "label": "Mark", "value": "35000" }, { "label": "David", "value": "42300" }, { "label": "Graham", "value": "35300" }, { "label": "John", "value": "31300" } ], } ); //myChart.setXMLUrl("Data.xml"); myChart.render("chartContainer"); </script> </body> </html> 2) How do i give the chart data to fusion to draw a chart? Whether the following is the only way to give the data data :[ { "value" : 'value1' }, { "value" : 'value2' }, { "value" : 'value3' } ....... ....... ] or can we give the data as array like below. data : [ value : ["value1", "value2", "value3", ....] ] Please help me. Regards, Santhosh
  4. Java Script Chart Redering Issue

    Hi, Any update on this. Regards, Santhosh
  5. Java Script Chart Redering Issue

    Hi, Thank you for the reply. I am using HighCharts so far. Now am trying to evaluate FusionCharts. Fusion is good but following are my difficulties. 1. In highcharts it’s very easy to specify chart types (e.g.,) For column charts, I will give only chart type as column but in Fusion there is lot of categories in column chart itself (Like Column2D, MSColumn2D, StackedColumn2D, ….etc)? 2. Zooming : a) Is it possible to Zoom the chart other than the zoomline chart? I would like to zoom the column chart. In highcharts it’s possible. Refer the below example http://jsfiddle.net/DPpg4/ Also, there is 3 types of zoom is available (x, y and xy) whereas in Fusion only column (y) zoom is available I think. 3 I have seen that, in zoom line chart I can give the data with a separater “|” like below “12|13|14|14|15|16|17|” Can I do the same for other types of chart as well. Currently am generating the data in Fusionin the following way { “value” : “12”, “value” : “13”, ………}. But in HighCharts i can construct the data as [12, 13, 14, 15, ....]. This will reduce the data construction time as well as the data transfer from the server to client (If we construct the data in server) 4. Legend: After clicking on the legend icon, chart is not getting regenated as like what high charts are doing. Refer the below example http://jsfiddle.net/XewKH/ Please let me know, whether i can achieve above things in FusionCharts. Regards, Santhosh
  6. Hi, Heard that you have built new JavaScript version charts that uses Raphel as rendering engine. So you have completely came out of HighCharts right? If i want to use your latest version, which version i have to download? Do i have to include FusionCharts.HC.Chart.js stil? Please clarify. Regards, Santhosh