vishaldood / highcharts

Highcharts JS, the JavaScript charting framework

Home Page:www.highcharts.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Highcharts JS is a JavaScript charting library based on SVG, with fallbacks to VML and canvas for old browsers.

For NPM users, please note that this module replaces the previous Highcharts Server module.

Example Usage in Node/Browserify/Webpack

Please note that this is only one way to use Highcharts. For general installation instructions, see the docs.

// Load the framework first. Alternatively, load jQuery and pass it to Highcharts.
var hcFramework = require('highcharts/lib/adapters/standalone-framework');
var Highcharts = require('highcharts')(hcFramework);

// Alternatively, this is how to load Highstock. Highmaps is similar.
// var Highcharts = require('highcharts/lib/highstock');

// This is how a module is loaded
require('highcharts/lib/modules/exporting')(Highcharts);

// Generate the chart
var chart = new Highcharts.Chart({
  chart: {
    renderTo: 'container'
  },
  // ... more options - see http://api.highcharts.com/highcharts
});

About

Highcharts JS, the JavaScript charting framework

www.highcharts.com

License:Other


Languages

Language:JavaScript 95.0%Language:HTML 2.7%Language:PHP 2.2%Language:CSS 0.0%Language:ApacheConf 0.0%