From ef2e290cc3d525162557becfddf18d6ac3bcbea8 Mon Sep 17 00:00:00 2001 From: adhiraj Date: Sun, 23 Jul 2017 22:44:25 -0700 Subject: [PATCH] Correct dashStyle option type The dashStyle param to plotLines takes a string (see http://api.highcharts.com/highcharts/yAxis.plotLines.dashStyle). --- highcharts/highcharts/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highcharts/highcharts/common.py b/highcharts/highcharts/common.py index 0be82af..c9cea7f 100644 --- a/highcharts/highcharts/common.py +++ b/highcharts/highcharts/common.py @@ -662,7 +662,7 @@ class PlotBands(ArrayObject): class PlotLines(ArrayObject): ALLOWED_OPTIONS = { "color": (ColorObject, basestring, dict), - "dashStyle": int, + "dashStyle": basestring, "events": (Events, dict), "id": basestring, "label": (Labels, dict),