4.1.7-1 • Published 9 years ago

highcharts-commonjs v4.1.7-1

Weekly downloads
60
License
www.highcharts.co...
Repository
github
Last release
9 years ago

Highcharts Wrapper for CommonJS

Example Usage

'use strict';
var Highcharts = require('highcharts-commonjs');

var someDOMDiv = ...;

// create chart
var chart = Highcharts.createChart(
  // dom element to inject the chart
  someDOMDiv,
  // highcharts options
  {
    title: {
      text: 'My chart'
    },
  ...
  },
  // callback, called when initialization of chart is done
  function() {
    console.log('Chart initialized');
  }
);

...

// destroy chart
Highcharts.destroy(chart);
4.1.7-1

9 years ago

4.1.6-1

9 years ago

4.1.4-1

9 years ago

4.1.1-1

9 years ago

4.1.1

9 years ago