xgqfrms / uni-app-in-action

uni-app 实战
MIT License
0 stars 0 forks source link

echarts 柱状图 #11

Open xgqfrms opened 3 years ago

xgqfrms commented 3 years ago

echarts 柱状图

https://echarts.apache.org/examples/zh/index.html#chart-type-bar

??? color

xgqfrms commented 3 years ago
option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [120, 200, 150, 80, 70, 110, 130],
        type: 'bar'
    }],
    color: ['#ff00ff',],
};

https://echarts.apache.org/examples/zh/editor.html?c=bar-simple

image