|
Can I save the charts generated by FusionCharts as image/PDF? |
| |
No - not directly. FusionCharts is a set of SWF files that generates the charts at client side using Adobe Flash Platform. Now, Flash Player doesn't expose an API to save the end output as image/PDF. So, effectively we cannot provide such an option in FusionCharts too.
Since there is no role of server in this chart generation (apart from providing the XML data), we cannot do anything on the server too.
However, there are indirect ways of saving the chart as an image at client side, using third-party tools.
- The simplest option would be to take a screen shot of the chart using any screen shot utility and then save it. There are a lot of free and commercial screen shot utilities available. Examples: Hypersnap DX, FlashCapture etc.
- To save the chart as PDF, you can install a PDF Print driver like PDF995. You can now choose Print Chart and then stream the output to PDF driver, instead of your printer.
- If you've Macromedia Flash Paper installed on your system, you can also save the chart as a vector SWF or PDF using that.
|
| |
|
 |
Can I email the charts? |
| |
Yes - you can email the charts as ActiveX Objects. But, most of the modern day email clients wouldn't show the chart for security reasons, as it's an ActiveX object. |
| |
|
 |
Can FusionCharts directly consume data from my database instead of XML? |
| |
No - FusionCharts cannot directly access any database, as it's based on Flash platform. You'll need to provide data to FusionCharts in XML format only. For this, you'll have to set a middleware script (like ASP, PHP, .NET, ColdFusion, JSP etc.), which would access your database and then build the XML output for FusionCharts. |
| |
|
 |
Can I stop FusionCharts from animating? |
| |
Yes -very much. Just set <chart animation='0' ..> in your XML and the charts won't animate any more. |
| |
|
 |
I've a DHTML Menu in the same page as the chart. The menu never comes over the chart even after altering the z-index. Can you please suggest a method to send the chart behind menu? |
| |
To allow DHTML objects appear over a Flash movie just add this parameter:
WMode=Transparent
to the Flash <object> tag. It should look like this:
<param name="WMode" value="Transparent">
In order to support Mozilla-based browsers and other browsers, such as Safari, you should also include the wmode parameter in the <embed> tag, like this:
<embed wmode="transparent" .......></embed>
Although the menus will be displayed above the Flash movie under Safari, the menu items will flicker as you move the mouse over items that fall right above the Flash movie.
|
| |
|
 |
I want to use a dataURL like Data.asp?id=1&subId=2 for the chart. How can I pass these attributes as a part of dataURL? |
| |
Just URL-Encode the dataURL and then provide to the charts. |
| |
|
 |
Can I use FusionCharts v3 with my Flash 6/MX 2004 applications? |
| |
No - FusionCharts v3 cannot be used with Flash 6 / MX 2004 applications as it has been coded in Flash 8 (ActionScript 2).
If you need an older version of FusionCharts which runs on Flash 6 player, send us your Order Id at support@infosoftglobal.com and we'll be glad to provide you with the same. |
| |
|
 |
Can I use the charts as a part of my commercial product under the Developer/Professional/Site/Enterprise license? |
| |
No - none of these licenses allow you to include FusionCharts as a part of your commercial product. For that, you need an OEM license. Please contact us as support@infosoftglobal.com to get more information on OEM license. |
| |
|
 |
I want load the XML data from another domain name (website). Can you tell me how to do this?
|
| |
Since Flash doesn't allow loading of XML documents/data from other domains, it is not directly possible to load data from other domains. However, a proxy page can do the trick.
For example, use a proxy page say Relayer.aspx which connects to the remote data, reads its and then locally relays to your chart.
|
| |
|
 |
Can I change the chart messages like "Loading Chart.", "Retrieving data" etc.? |
| |
Yes - please see Advanced Charting > Changing Chart Messages section. |