How to use ember-highcharts - 3 common examples

To help you get started, we’ve selected a few ember-highcharts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ahmadsoe / ember-highcharts / blueprints / chart / files / __path__ / __name__.js View on Github external
import Highcharts from 'ember-highcharts/components/high-charts';

export default Highcharts.extend({
  // mode: '', // empty, 'StockChart', or 'Map'
  // chartOptions: {},
  // content: [],
  // theme: {}
});
github basho-labs / riak-explorer-gui / app / components / charts / cluster-stat.js View on Github external
import Ember from 'ember';
import EmberHighChartsComponent from 'ember-highcharts/components/high-charts';
import _ from 'lodash/lodash';
/*globals Highcharts */

export default EmberHighChartsComponent.extend({
  defaultOptions: {
    title: {
      text: 'Cluster Data'
    },
    rangeSelector: {
      buttons: [{
        count: 1,
        type: 'minute',
        text: '1M'
      }, {
        count: 5,
        type: 'minute',
        text: '5M'
      }, {
        count: 10,
        type: 'minute',
github basho-labs / riak-explorer-gui / app / components / charts / node-stat.js View on Github external
import EmberHighChartsComponent from 'ember-highcharts/components/high-charts';
import _ from 'lodash/lodash';
/*globals Highcharts */

export default EmberHighChartsComponent.extend({
  

  defaultOptions: {
    chart: {
      type: 'spline',
      animation: Highcharts.svg
    },
    title: {
      text: 'Node Data'
    },
    xAxis: {
      type: 'datetime',
      tickPixelInterval: 150
    },
    yAxis: {
      title: {

ember-highcharts

A Highcharts, HighStock and HighMaps component for ember cli

MIT
Latest version published 3 months ago

Package Health Score

68 / 100
Full package analysis

Popular ember-highcharts functions