highcharts

来源:互联网 发布:网络挣钱是真的吗 编辑:程序博客网 时间:2024/05/17 01:11
$(function () {
    $('#container').highcharts({
        title: {
            text: 'Fixed tooltip'
        },
        tooltip: {
            positioner: function () {
                return { x: 80, y: 50 };
            },
            shadow: false,
            borderWidth: 0,
            backgroundColor: 'rgba(255,255,255,0.8)'
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
        }, {
            data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4]
        }]
    });

});


<div id="container" style="min-width:400px;height:400px;"></div>


文章来源:https://code.hcharts.cn/highcharts/hhhhGx

0 0
原创粉丝点击