Ember-highcharts-gauge
A Highcharts, Highstock and Highmaps component for Ember CLI.
Installation
ember install:addon ember-highcharts-extra
This addon will use Highcharts by default, if you want to use Highstocks, Highmaps, Highcharts-more and/or Highcharts-3D, add this options to your Brocfile.js
:
var app = --- emberHighCharts: includeHighCharts: false includeHighStock: true includeHighMaps: true includeHighChartsMore: true includeHighCharts3D: true includeSolidGauge: true ---;
Usage
In your template:
{{high-charts mode=chartMode content=chartData chartOptions=chartOptions theme=theme}}
Then in a controller you can set the chartMode
, chartData
, chartOptions
and theme
values:
;; Controller;
Configuring Default Styles
Ember-highcharts provides its own set of default configurations in
addon/utils/option-loader.js
. At runtime you can optionally configure custom
styles by providing a app/highcharts-configs/application.js
file. This
file should provide a hook that returns the final configuration.
// app/highcharts-configs/application.js { defaultOptionscreditshref = 'http://www.my-great-chart.com'; defaultOptionscreditstext = 'great charts made cheap'; defaultOptionscreditsenabled = true; return defaultOptions; }
Generating Chart Components
Ember-highcharts also provides blueprints to easily create sub-classes of the default high-charts component.
ember generate chart <chart-name>
Overriding Chart Redrawing
This addon observes changes to chartData and redraws the chart using the highcharts Series.setData method. You can extend this component to handle advanced redrawing use cases like dynamically updating labels and titles (ex: Chart.setTitle()).
// components/dynamic-high-charts.js;; ;
{{dynamic-high-charts mode=chartMode content=chartData chartOptions=chartOptions theme=theme}}
Contributing
Changelog
see CHANGELOG.md.
Credit
This add-on is built based on the gist and medium by @poteto