HEX
Server: LiteSpeed
System: Linux php-prod-3.spaceapp.ru 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: sarli3128 (1010)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/local/CyberCP/baseTemplate/static/baseTemplate/assets/widgets/charts/xcharts/xcharts-demo.js
$(function() {

    var data = {
        "xScale": "ordinal",
        "yScale": "linear",
        "main": [{
            "className": ".pizza",
            "data": [{
                "x": "Pepperoni",
                "y": 4
            }, {
                "x": "Cheese",
                "y": 8
            }]
        }]
    };
    var myChart = new xChart('bar', data, '#example1');

});


$(function() {

    var tt = document.createElement('div'),
        leftOffset = -(~~$('html').css('padding-left').replace('px', '') + ~~$('body').css('margin-left').replace('px', '')),
        topOffset = -32;
    tt.className = 'ex-tooltip';
    document.body.appendChild(tt);

    var data = {
        "xScale": "time",
        "yScale": "linear",
        "main": [{
            "className": ".pizza",
            "data": [{
                "x": "2012-11-05",
                "y": 6
            }, {
                "x": "2012-11-06",
                "y": 6
            }, {
                "x": "2012-11-07",
                "y": 8
            }, {
                "x": "2012-11-08",
                "y": 3
            }, {
                "x": "2012-11-09",
                "y": 4
            }, {
                "x": "2012-11-10",
                "y": 9
            }, {
                "x": "2012-11-11",
                "y": 6
            }]
        }]
    };
    var opts = {
        "dataFormatX": function(x) {
            return d3.time.format('%Y-%m-%d').parse(x);
        },
        "tickFormatX": function(x) {
            return d3.time.format('%A')(x);
        },
        "mouseover": function(d, i) {
            var pos = $(this).offset();
            $(tt).text(d3.time.format('%A')(d.x) + ': ' + d.y)
                .css({
                    top: topOffset + pos.top,
                    left: pos.left + leftOffset
                })
                .show();
        },
        "mouseout": function(x) {
            $(tt).hide();
        }
    };
    var myChart = new xChart('line-dotted', data, '#example4', opts);

});