0.0.4 • Published 6 years ago

ember-plotly-shim v0.0.4

Weekly downloads
72
License
MIT
Repository
github
Last release
6 years ago

ember-plotly-shim

ES6 accessible module for plotly.js within your Ember applications. Warning: This is a work in progress

Usage

  • ember install ember-plotly-shim

By default, the main plotly bundle will be used. To use a partial bundle, add a line like the one below in your config/environment.js file

// config.environment.js
module.exports = function(environment) {
  return {
    plotly: {
      // Options:
      // basic, cartesian,
      // geo, gl3d, gl2d,
      // mapbox, finance
      partialBundle: 'basic'
    }
  };
}

Then import plotly like the line below in a js file:

import Plotly from 'plotly';

For more information on partial bundles -> https://github.com/plotly/plotly.js/blob/master/dist/README.md#bundle-information

Note: At this time, manually picking commonjs modules as discussed here https://github.com/plotly/plotly.js/#modules is not supported

This project is licensed under the MIT License.