4.1.7-3 • Published 9 years ago

highcharts-highstock-commonjs v4.1.7-3

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

Highcharts Wrapper for CommonJS

Forked and added HighStock charts support

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-3

9 years ago

4.1.7-2

9 years ago

4.1.7-1

9 years ago