fusioncharts

How to create pie chart using javascript

不羁岁月 提交于 2019-12-01 09:37:39
I have created a pie chart using javascript and my data is stored in mongodb. In my chart I am able to separate slices of pie chart. That is whenever I roll on my mouse on any of the slices it is showing the data. But my requirements are, that if I click any of the slice of it, it should display the data in some table. This is my HTML code <html> <head> <title>Pie chart</title> <script type="text/javascript" src="fusioncharts/fusioncharts.js"></script> <script type="text/javascript" src="fusioncharts/fusioncharts.charts.js"></script> <script type="text/javascript" src="fusioncharts/themes

FusionCharts in Android?

淺唱寂寞╮ 提交于 2019-12-01 01:23:31
I have been trying to get the Fusion Charts to work on Android 2.2 (emulator). But its not loading anything . i can see only blank screen. Has anyone run Fusion Charts on the Android device / emulator before? Can Fusion charts run on Android itself? Edit: I have try to load the chart in default browser of android. In that also its not loading. But its running in Opera and Mozilla Firefox. Any Idea? Additional Information : Browser version is Webkit 3.1 FusionCharts Flash version loads fine on devices supporting Flash (Glaxy Tab, etc.) For JavaScript version, the story is slightly different. I

FusionCharts in Android?

﹥>﹥吖頭↗ 提交于 2019-11-30 20:30:20
问题 I have been trying to get the Fusion Charts to work on Android 2.2 (emulator). But its not loading anything . i can see only blank screen. Has anyone run Fusion Charts on the Android device / emulator before? Can Fusion charts run on Android itself? Edit: I have try to load the chart in default browser of android. In that also its not loading. But its running in Opera and Mozilla Firefox. Any Idea? Additional Information : Browser version is Webkit 3.1 回答1: FusionCharts Flash version loads

JQuery Mobile not working inside UIWebView

本小妞迷上赌 提交于 2019-11-30 07:04:26
I'm coming here after many many hours of looking for a solution and trying different approaches to fix this issue I'm having with JQuery Mobile and my iPad app. What I'm trying to do is a reporting app with Fusion Charts. I have successfully rendered the charts within web views (UIWebView) using different methods, and following different examples, but what I'd like to do now is accomplishing the same task using the JQuery Mobile framework. I'm not using phonegap and I've followed the steps to the letter regarding JQuery Mobile + Xcode integration (I think). The charts load without a problem on

Pdf file size too big created using jspdf

徘徊边缘 提交于 2019-11-28 17:37:56
I am using jspdf for creating PDF inside browser. I am having multiple charts having svg as chart Data. For adding data to pdf I am converting svg to png using canvas and then Base64 Data using canvas.toDataURL method. After all this conversions size of the file created by jspdf is huge (about 50 MB). Below is the code for div of chart data and canvas. newdiv = document.createElement("div"); newdiv.className = "big_Con_graph big_Con_graph0"; newdiv.style.height = "0px"; newdiv.id = "big_Con_graph" + id; below is the dimensions for SVG chart load. document.getElementById("big_Con_graph" + id)

How to export a FusionChart to Image in ASP.Net

元气小坏坏 提交于 2019-11-28 02:26:09
问题 We are using the free version of fusion charts and want to know is there a way to export the generated chart to image without using any third party components. We are using the ASP.Net for generating the charts. 回答1: SOLUTION After a research on this topic, I have found a useful solution for this. For that we need to have a freeware from Bytecout to convert swf to image. This can be downloaded from this link. Then we need to register the COM dlls and add the reference to our project. Refer to

Pdf file size too big created using jspdf

梦想与她 提交于 2019-11-27 10:10:16
问题 I am using jspdf for creating PDF inside browser. I am having multiple charts having svg as chart Data. For adding data to pdf I am converting svg to png using canvas and then Base64 Data using canvas.toDataURL method. After all this conversions size of the file created by jspdf is huge (about 50 MB). Below is the code for div of chart data and canvas. newdiv = document.createElement("div"); newdiv.className = "big_Con_graph big_Con_graph0"; newdiv.style.height = "0px"; newdiv.id = "big_Con