美文网首页
Highcharts柱状图

Highcharts柱状图

作者: 百不理 | 来源:发表于2020-07-16 14:19 被阅读0次
    效果
    <!--Highcharts javascript -->
    <script src="https://code.highcharts.com.cn/highcharts/highcharts.js"></script>
    <script src="https://code.highcharts.com.cn/highcharts/modules/exporting.js"></script>
    <script src="https://img.hcharts.cn/highcharts-plugins/highcharts-zh_CN.js"></script>
    
    <script>
    $(function() {
        var chart = Highcharts.chart('container',{
            chart: {
                type: 'column'
            },
            title: {
                text: '渠道推广人数'
            },
            subtitle: {
                text: ''
            },
            xAxis: {
                categories: [
                    '头条','其他'
                ],
                crosshair: true
            },
            yAxis: {
                min: 0,
                title: {
                    text: '人数'
                }
            },
            tooltip: {
                // head + 每个 point + footer 拼接成完整的 table
                headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
                pointFormat: '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' +
                '<td style="padding:0"><b>{point.y}</b></td></tr>',
                footerFormat: '</table>',
                shared: true,
                useHTML: true
            },
            plotOptions: {
                column: {
                    pointPadding: 0.2,
                    borderWidth: 0,
                    // dataLabels: {
                    //     enabled: true
                    // }
                }
            },
            series: [{
                name: '人数',
                data: [107, 48]
            }]
        });
    });
    </script>
    

    相关文章

      网友评论

          本文标题:Highcharts柱状图

          本文链接:https://www.haomeiwen.com/subject/gluphktx.html