HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/TDijk1/erp-apps.eu/wwwroot/CMSScripts/CMSModules/CMS.Charts/Line.js
cmsdefine(['amcharts.serial', 'amcharts.cmstheme'], function (chart) {
    'use strict';

    var Module = function (config) {
        chart.makeChart(config.chartDiv, {
            type: "serial",
            theme: "CMSTheme",
            dataProvider: config.data,
            categoryField: "category",
            categoryAxis: {
                minorGridEnabled: true
            },
            valueAxes: [{
                id: "v1"
            }],
            graphs: [{
                title: "red line",
                id: "g1",
                valueAxis: "v1",
                valueField: "value",
                bullet: "round",
                balloonText: "[[category]]: <b>[[value]]</b>"
            }],
            chartCursor: {
                fullWidth: true
            },
            chartScrollbar: {
                graph: "g1"
            },
            mouseWheelZoomEnabled: true
        });
    };

    return Module;
});