From a74998d560bba743194a4102cc3d4f6bfb736ee1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 8 Sep 2012 07:25:54 -0400 Subject: [PATCH] Spline --- js/tbl_chart.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/js/tbl_chart.js b/js/tbl_chart.js index 2c524e268e..aad7689e0e 100644 --- a/js/tbl_chart.js +++ b/js/tbl_chart.js @@ -225,6 +225,15 @@ function PMA_queryChart(data, passedSettings, passedNonJqplotSettings) } }; } + + if (passedNonJqplotSettings.chart.type == 'spline') { + settings.seriesDefaults = { + rendererOptions: { + smooth: true + } + }; + } + if (passedNonJqplotSettings.chart.type == 'pie') { settings.seriesDefaults = { renderer: $.jqplot.PieRenderer,