mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Merge pull request #14403 from frsimond/highcharts-ng_noData
Add missing property 'noData' to HighChartsNGConfig
This commit is contained in:
@@ -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;
|
||||
|
||||
Vendored
+2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user