From 8c5770d4a4d25ae7ea9b38997ff25c0fe36575ac Mon Sep 17 00:00:00 2001 From: Raymond Radet Date: Wed, 22 Mar 2017 23:50:30 +0100 Subject: [PATCH] Allow Decimals for Y axis --- jquery.highchartTable.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jquery.highchartTable.js b/jquery.highchartTable.js index 8f0e7c2..ba9dc30 100644 --- a/jquery.highchartTable.js +++ b/jquery.highchartTable.js @@ -303,7 +303,8 @@ stackLabels : { enabled: getYaxisAttr($table, yAxisNum, 'stacklabels-enabled') == '1' }, - gridLineInterpolation: getYaxisAttr($table, yAxisNum, 'grid-line-interpolation') || null + gridLineInterpolation: getYaxisAttr($table, yAxisNum, 'grid-line-interpolation') || null, + allowDecimals: getYaxisAttr($table, yAxisNum, 'allow-decimals') == null }; var callableYAxisFormatter = getCallable(table, 'graph-yaxis-'+yAxisNum+'-formatter-callback');