File: D:/HostingSpaces/MBoogaard/oosting-horseriding.com/CMS/CMSScripts/CMSModules/CMS.Charts/Funnel.js
cmsdefine(['amcharts.funnel', 'amcharts.cmstheme'], function (chart) {
'use strict';
var Module = function(config) {
chart.makeChart(config.chartDiv, {
type: "funnel",
theme: "CMSTheme",
dataProvider: config.data,
titleField: "title",
valueField: "value",
labelPosition: "right",
marginRight: 240,
neckWidth: "40%",
neckHeight: "0",
balloonText: "<span class=\"overview-funnel-balloon\">[[title]]: [[value]]<br>[[rateText]]</span>",
labelText: "[[title]]: [[value]]\n[[rateText]]",
addClassNames: "true",
fontSize: 16,
maxLabelWidth: 400,
labelTickColor: "#e5e5e5",
labelTickAlpha: 1,
outlineThickness: 0,
balloon: {
adjustBorderColor: false,
cornerRadius: 0,
borderThickness: 0,
},
});
};
return Module;
});