鱼C论坛

 找回密码
 立即注册
查看: 4342|回复: 0

[学习笔记] test2_js.js

[复制链接]
发表于 2021-4-20 08:22:19 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
(function (){
    //legend:图例组件展现了不同系列的标记(symbol),颜色和名字。可以通过点击图例控制哪些系列不显示。
    //legend,会在统计图顶部显示不同颜色的按钮。
    var myChart = echarts.init(document.getElementById('main2'));
    var option = {
        title:{text:"年度风险数量对比直方图",left:"center"},
        legend: {
            top:"7%",
            data:['高风险','中风险','低风险']
        },
        toolbox: {
            show :true,
            feature: {
                dataView:{show:true},
                restore:{show:true},
                magicType:{type:['bar','line']},
                saveAsImage:{show:true}
            }
        },
        tooltip: {
        },
        xAxis:{
            type:'category',
            data: ['2019','2020','2021']    
        },
        yAxis:{
            type:'value'
        },
        dataset:{
            source:[
                ['year','高风险','中风险','低风险'],
                ['2019',320,120,220],
                ['2020',332,132,182],
                ['2021',301,101,191],
            ]
        },
        series: [
            {
                //name: '高风险',
                type: 'bar',
                // 根据stack的值来选取那些柱子堆叠在一起
                stack: '风险等级',
                color: 'red',
                emphasis: {
                    focus: 'series'
                },
                //data: [320, 332, 301],
                barWidth: '25%'
            },
            {
                //name: '中风险',
                type: 'bar',
                stack: '风险等级',
                color: 'orange',
                emphasis: {
                    focus: 'series'
                },
                //data: [120, 132, 101],
                barWidth: '25%'
            },
            {
                //name: '低风险',
                type: 'bar',
                stack: '风险等级',
                color: 'blue',
                emphasis: {
                    focus: 'series'
                },
                //data: [220, 182, 191],
                barWidth: '25%'
            }
        ]
    };
    //把配置项给实例对象
    myChart.setOption(option);
})();
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-2-1 02:04

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表