From 4a43d710f9ccba8ec05b39e0e8a7a040db2d29d0 Mon Sep 17 00:00:00 2001 From: Freek Wielstra Date: Fri, 1 Sep 2017 13:00:18 +0200 Subject: [PATCH] Add textOverflow and whiteSpace properties to CSSObject [xAxis.labels.style](http://api.highcharts.com/highcharts/xAxis.labels.style) describes these properties: > Use `whiteSpace: 'nowrap'` to prevent wrapping of category labels > Use `textOverflow: 'none'` to prevent ellipsis (dots). --- types/highcharts/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/highcharts/index.d.ts b/types/highcharts/index.d.ts index b192a5bd63..863595bd0e 100644 --- a/types/highcharts/index.d.ts +++ b/types/highcharts/index.d.ts @@ -1994,6 +1994,8 @@ declare namespace Highcharts { position?: string; top?: string; textOutline?: string; + textOverflow?: string; + whiteSpace?: string; } interface CreditsOptions {