From 09472c8b0b9ff807b94ce917bc979f9a5974c60a Mon Sep 17 00:00:00 2001 From: Steve Mayes Date: Thu, 24 Mar 2016 21:54:56 -0400 Subject: [PATCH] Update highcharts-ng loading property Per Issue #8691, the loading property can be a boolean or a string value. Add the string type as a possibility for this property. --- highcharts-ng/highcharts-ng.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highcharts-ng/highcharts-ng.d.ts b/highcharts-ng/highcharts-ng.d.ts index b429bb97d..fc0d107b9 100644 --- a/highcharts-ng/highcharts-ng.d.ts +++ b/highcharts-ng/highcharts-ng.d.ts @@ -17,7 +17,7 @@ interface HighChartsNGConfig { }; //Boolean to control showng loading status on chart (optional) //Could be a string if you want to show specific loading text. - loading?: boolean; + loading?: boolean | string; //Configuration for the xAxis (optional). Currently only one x axis can be dynamically controlled. //properties currentMin and currentMax provied 2-way binding to the chart's maximimum and minimum xAxis?: {