Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
FusionCharts Beginner's Guide: The Official Guide for FusionCharts Suite

You're reading from  FusionCharts Beginner's Guide: The Official Guide for FusionCharts Suite

Product type Book
Published in Apr 2012
Publisher Packt
ISBN-13 9781849691765
Pages 252 pages
Edition 1st Edition
Languages

Table of Contents (16) Chapters

FusionCharts
Credits
About the Authors
About the Reviewer
www.PacktPub.com
1. Preface
1. Introducing FusionCharts 2. Customizing your Chart 3. JavaScript Capabilities 4. Enabling Drill-down on Charts 5. Exporting Charts 6. Integrating with Server-side Scripts 7. Creating Maps for your Applications 8. Selecting the Right Visualization for your Data 9. Increasing the Usability of your Charts Pop quiz Answers

Time for action — create a button to export the chart


  1. 1. Create a copy of CustomizeClientSideExport.html and save it as ExportUsingJavaScriptAPI.html.

  2. 2. Open this new HTML file using a text editor and locate the<script> within the HTML<head> element within which we have written our previous set of code. At the end of the script block (around line 31), insert a new line and type the following lines of code:

    function beginChartExport () {
    if(chartObj.hasRendered && chartObj.hasRendered()) {
    chartObj.exportChart();
    }
    else {
    alert("Please wait for the chart to render.");
    }
    }
    
  3. 3. Locate the export component container<div> HTML element with ID exporterContainer (around line 47) and add the following HTML code containing the button to initiate the chart export:

    <p id="exportControls">
    <input type="button" value="Export Chart" onclick="beginChartExport()" />
    </p>
    
  4. 4. Now open the ExportUsingJavaScriptAPI.html file within a browser and click on the newly...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}