echarts2 使用方法

需要导入 <script src="../echarts-2.2.7/build/dist/echarts-all.js"></script>    这个全导入

1、废话少说 直接上代码

     js代码

   function loadchart() {

            // 基于准备好的dom,初始化echarts图表
            var myChart = echarts.init(document.getElementById('main'));


            option = {
                tooltip: {
                    trigger: 'axis'
                },
                toolbox: {
                    show: true,
                    feature: {
                        mark: { show: true },
                        //dataView: { show: true, readOnly: false },
                        //magicType: { show: true, type: ['line', 'bar'] },
                        restore: { show: true },
                        saveAsImage: { show: true }
                    }
                },
                calculable: true,
                legend: { 
                    data: ['rework(%)', 'passqty']
                },
    
                xAxis: [


                    {
                        type: 'category',
                        data: ['DNW PRST', 'CW PRST', 'PRW PRST', 'N-CH PRST', 'SAN PRST', 'TNV PRST', 'SNV PRST', 'NW PRST', 'SPV PRST', 'SAP PRST',
                                  'C-HALO PRST', 'NM2 PRST', 'NMS PRST', 'NMT PRST', 'PMS PRST', 'PMT PRST', 'P+ PRST', 'N+ PRST', 'CO PRST', 'BLC2 PRST', 'P+ ADD PRST'],
                        axisLabel: {
                            interval:0,
                            rotate: -30 //30度角
                        }
                    }
                ],
                yAxis: [
                    {
                        type: 'value',
                        name: 'Rework(%)',
                        axisLabel: {
                            formatter: '{value} %'
                        }
                    },
                    {
                        type: 'value',
                        name: 'PassQty',
                        axisLabel: {
                            formatter: '{value}'
                        }
                    }
                ],
                series: [


                    {
                        name: 'rework(%)',
                        type: 'line',
                        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                        itemStyle: { normal: { label: { show: true, position: 'top', formatter: '{c}%' } } }
                    },
                    {
                        name: 'passqty',
                        type: 'bar',
                        yAxisIndex: 1,
                        data: [58, 65, 72, 0, 71, 65, 64, 59, 60, 59, 31, 0, 60, 58, 55, 58, 29, 35, 49, 62, 58],
                        itemStyle : { normal: {label : {show: true, position: 'top'}}}
                    }
                ]
            };


            // 为echarts对象加载数据 
            myChart.setOption(option);

        }

html代码:

   <div id="main" style="width:1100px;height:400px">

效果图:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值