highcharts.js实现柱状图实例

<!doctype html>
<html lang="en">
<head>
    <script src="https://img.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
    <script src="https://img.hcharts.cn/highcharts/highcharts.js"></script>
    <script src="https://img.hcharts.cn/highcharts/modules/exporting.js"></script>
    <script src="https://img.hcharts.cn/highcharts-plugins/highcharts-zh_CN.js"></script>
<script>
//左侧Javascript代码
$(function () {

    var quyu = ['香港特别行政区','四川省','江西省','云南省','广西壮族自治区','辽宁省','上海市','陕西省','海南省','北京市','浙江省','贵州省','吉林省','福建省','新疆维吾尔自治区','青海省','天津市','澳门特别行政区','江苏省','甘肃省','重庆市','山西省','西藏自治区','安徽省','河南省','内蒙古自治区','宁夏回族自治区','广东省','黑龙江省','台湾省','山东省','河北省','湖北省','湖南省'];
    var shuju =[3000,5000,6500,10000,11000,20000,20000,20000,20000,20000,20000,40000,40000,43000,44000,50000,50000,50000,51000,55000,60000,66000,70000,70000,73000,78000,80000,88000,89000,90000,98000,100000,2000,300]

$('#container').highcharts({
chart: {
    // type: 'bar' //条形图
    type: 'column'  //柱状图
},
title: {
    text: '区域代理收益'
},
subtitle: {
    text: ''
},
xAxis: {
    categories: quyu,
    title: {
    text: null
    } ,
    labels: {    //修改字体格式,斜体等属性
      rotation: -45,
      style: {
        fontSize: '13px',
        fontFamily: 'Verdana, sans-serif'
         }
        }

},
yAxis: {
    min: 0,
    title: {
    text: '区域代理收益(元)',
    align: 'high'
    },
    labels: {
    overflow: 'justify'
    }
},
tooltip: {
    valueSuffix: ' 元'
},
plotOptions: {
    bar: {
        dataLabels: {
        enabled: true
        }
    }
},
legend: {
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'top',
    x: -40,
    y: 100,
    floating: true,
    borderWidth: 1,
    backgroundColor: '#FFFFFF',
    shadow: true
},
credits: {
    enabled: false
},
series: [{
    name: '区域代理收益(元)',
    data: shuju
}/*, {
name: 'Year 1900',
data: [133, 156, 947, 408, 6]
}, {
name: 'Year 2008',
data: [973, 914, 4054, 732, 34]
} */ ]
});
});

</script>
</head>
<body>
<div id="container" style="min-width:1200px;height:600px"></div>
</body>
</html>

 API下载:https://download.csdn.net/download/u011125949/11140623

 文档:https://api.highcharts.com.cn/highcharts

猜你喜欢

转载自blog.csdn.net/u011125949/article/details/89486098