From d8668f727e7205258be6b362015723550d89b32c Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Thu, 23 Dec 2010 09:29:40 +0100 Subject: [PATCH] share/collection.js: Add the vertical (y-axis) label. --- share/collection.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/collection.js b/share/collection.js index 57de19d..57bd04d 100644 --- a/share/collection.js +++ b/share/collection.js @@ -358,6 +358,9 @@ function inst_get_chart_opts (inst, def) /* {{{ */ if (def.title) chart_opts.title = { text: def.title }; + if (def.vertical_label) + chart_opts.yAxis.title = { text: def.vertical_label }; + return (chart_opts); } /* }}} function chart_opts_get */ -- 2.11.0