angular-highcharts
angular-highcharts copied to clipboard
Highcharts directive for Angular
Does this plugin have theme support? it would be nice to have a way of doing something like [this](https://github.com/highcharts/highcharts/blob/master/js/themes/dark-blue.js) directly with Angular.
I am using the stock module to introduce charts in different models and will always report errors. I hope you have some demos to refer to; My mistake is as...
Hi I have a couple of charts showing up in my app. I am using Angular-Highcharts package and for some reason the colors dont show up properly in my chart....
In my project, I am using a stock chart having options mentioned below ``` this.stock = new StockChart({ rangeSelector: { selected: 3 }, colors: Global.colors, title: { text: '' },...
I have a stock chart in my application which I have to disable after button click event. this is my stock chart options ``` this.stock = new StockChart({ colors: Global.colors,...
My goal is to get my chart working like such: https://www.highcharts.com/demo/3d-scatter-draggable I've looked at the documentation for loading modules. I've reviewed the following issues: - https://github.com/cebor/angular-highcharts/issues/64 - https://github.com/cebor/angular-highcharts/issues/198 I've loaded...
I am trying to display the heatmap on my Angular 6 project so I've installed angular-highcharts and imported highchart module. But I have some problems for the heatmap. This is...
Would it be possible to integrate Highchart's native load event with this library?
Hello everybody, i'm doing a migration with highchart, highmaps from angularJS1.4 to angular 5 and i have one problem and i don't know how to resolve it : i followed...
``` exportCSV(chart: Chart) { chart.ref$.subscribe(ref => { const blob = new Blob([ref.getCSV()], { type: 'text/csv' }); const url = window.URL.createObjectURL(blob); window.open(url); }); } ``` ``` import { ChartModule, HIGHCHARTS_MODULES }...