2010年普查中国人口年龄统计表echarts 柱状配置项内容和展示

2010年普查中国人口年龄统计表

配置项如下
      var a = [
    "0",
    "1",
    "2",
    "3",
    "4",
    "5",
    "6",
    "7",
    "8",
    "9",
    "10",
    "11",
    "12",
    "13",
    "14",
    "15",
    "16",
    "17",
    "18",
    "19",
    "20",
    "21",
    "22",
    "23",
    "24",
    "25",
    "26",
    "27",
    "28",
    "29",
    "30",
    "31",
    "32",
    "33",
    "34",
    "35",
    "36",
    "37",
    "38",
    "39",
    "40",
    "41",
    "42",
    "43",
    "44",
    "45",
    "46",
    "47",
    "48",
    "49",
    "50",
    "51",
    "52",
    "53",
    "54",
    "55",
    "56",
    "57",
    "58",
    "59",
    "60",
    "61",
    "62",
    "63",
    "64",
    "65",
    "66",
    "67",
    "68",
    "69",
    "70",
    "71",
    "72",
    "73",
    "74",
    "75",
    "76",
    "77",
    "78",
    "79",
    "80",
    "81",
    "82",
    "83",
    "84",
    "85",
    "86",
    "87",
    "88",
    "89",
    "90",
    "91",
    "92",
    "93",
    "94",
    "95",
    "96",
    "97",
    "98",
    "99"
];
var b = [
    13786434,
    15657955,
    15617375,
    15250805,
    15220041,
    14732137,
    14804470,
    13429161,
    13666956,
    14248825,
    14454357,
    13935714,
    15399559,
    15225032,
    15893800,
    18024484,
    18790521,
    20775369,
    20755274,
    21543466,
    28026954,
    26556649,
    24474192,
    25695955,
    22658768,
    19933683,
    19709177,
    19480836,
    22322147,
    19568009,
    18928369,
    19866458,
    19474874,
    18179478,
    20689024,
    21186516,
    22906980,
    23990208,
    24730460,
    25211795,
    27397219,
    24956297,
    27032542,
    21355748,
    24012158,
    23962574,
    23355778,
    26972157,
    20075084,
    11228960,
    14097008,
    12838832,
    16617709,
    18351980,
    16847642,
    17610528,
    17738127,
    16093888,
    16167933,
    13701998,
    13618204,
    13029125,
    11276853,
    10791633,
    9951467,
    9073411,
    8640965,
    7942141,
    7740868,
    7715897,
    7389412,
    6265718,
    6893225,
    6343869,
    6080173,
    5632477,
    5175500,
    5082383,
    4254858,
    3706915,
    3737259,
    2816693,
    2757918,
    2237138,
    1824190,
    1648160,
    1344215,
    1065276,
    858879,
    715398,
    553805,
    371079,
    287676,
    209291,
    156456,
    117522,
    90889,
    68648,
    54689,
    38231
]

option = {
    color: ['#81bfe2'],
    title: {
        text: '2010年普查中国人口年龄统计表'
    },
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'shadow'
        },
        formatter: "年龄:{b}<br>人数: {c}"
    },
    toolbox: {
        show: true,
        orient: 'vertical',
        right: '2%',
        top: 'top',
        feature: {
            saveAsImage: {}
        }
    },
    xAxis: [{
        type: 'category',
        data: a,
        axisTick: {
            alignWithLabel: true
        },
        axisLabel: {
            show: true,
            textStyle: {
                color: '#3A3A3A'
            }
        }
    }],
    yAxis: [{
        type: 'value',
        axisLabel: {
            show: true,
            interval: 'auto',
            textStyle: {
                color: '#3A3A3A'
            },
            formatter: '{value}'
        },
        show: true
    }],
    series: [{
        type: 'bar',
        data: b
    }]
};
    
截图如下