Book Image

Sencha Charts Essentials

By : Ajit Kumar
Book Image

Sencha Charts Essentials

By: Ajit Kumar

Overview of this book

Table of Contents (16 chapters)
Sencha Charts Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

FusionCharts


This is one of the most comprehensive open charting libraries in terms of different types of charts supported by a JS charting library. Like Google Charts, FusionCharts also renders charts using SVG and VML.

We will create the chart based on the following steps:

  1. Create the ch09/FusionCharts folder.

  2. Create the index.html file and save the following code in it:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
      <title>FusionCharts</title>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    
      <script src="sdk/js/fusioncharts.js"></script>
      <script type="text/javascript" src="sdk/js/themes/fusioncharts.theme.fint.js"></script>
    
      <script type="text/javascript" src="themes/awesome.js"></script>
      <script type="text/javascript" src="app_themed.js"></script>
    
    &lt...