Merge pull request #14403 from frsimond/highcharts-ng_noData

Add missing property 'noData' to HighChartsNGConfig
This commit is contained in:
Arthur Ozga
2017-02-06 14:11:50 -08:00
committed by GitHub
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -33,7 +33,8 @@ class AppController {
title: {
text: 'My Awesome Chart'
},
loading: true
loading: true,
noData: 'No data here'
};
constructor($timeout: ng.ITimeoutService) {
var vm = this;
+2
View File
@@ -35,6 +35,8 @@ declare global {
};
//function (optional) - setup some logic for the chart
func?: (chart: ChartObject) => void;
//no data text (optional) to show if all series are empty
noData?: string;
}
//Instantiated Chart