JavaScript实现轴缩放echarts

echarts.js下载链接

提取码:qj3gicon-default.png?t=M276https://pan.baidu.com/s/1hEr_0IU1aom1Ag3hhpArTw

图表数据

王斌刘倩袁波
销售87.59092.5
沟通87.588.7591.25
服务908588.75
协作91.2587.592.5
培训8588.7591.25
组织87.591.2588.75

代码

<!DOCTYPE html>
<html>

<head>
	<meta charset="utf-8">
	<script src="echarts.js"></script>
</head>

<body>
	<div id="main" style="width: 800px; height: 600px"></div>
	<script type="text/javascript">
		var myChart = echarts.init(document.getElementById("main"));
        mytextStyle = {
            color: "red",
            fontWeight: "",
            fontSize: 20,
        };
		var option = {
            title:{
                show:true,
                text:'销售经理能力对比分析',
                textStyle: mytextStyle,
                left:'center',
            },
			tooltip:{
                trigger: 'axis',
                axisPointer:{
                    type: 'shadow',
                    label: {
                        show: true
                    }
                }
            },
            toolbox:{
                show: true,
                feature:{
                    mark: { show: true },
                    dataView: { show: true, readOnly: false },
                    magicType: { show: true, type: ['line', 'bar', 'stack', 'tiled'] },
                    restore: { show: true },
                    saveAsImage: { show: true }
                }
            },
            calculable: true,
            legend:{
                data: ['王斌', '刘倩','袁波'],
                itemGap: 5,
                left:'left',
                top:'25',
                itemGap:50
            },
            grid:{
                top: '12%',
                left: '1%',
                right: '10%',
                containLabel: true
            },
            xAxis:[
                {
                    type: 'category',
                    data:['销售','沟通','服务','协作','培训','组织']
                }
            ],
            yAxis:[
                {
                    type: 'value',
                }
            ],
            dataZoom:{
                show: true, 
                realtime: true,
                start: 20, 
                end: 40
            },
            series:[
                {
                    name: '王斌',  
                    type: 'bar',
                    color:'#dd6b66',
                    data:[87.5,87.5,90,91.25,85,87.5]
                },
                {
                    name: '刘倩',  
                    type: 'bar',
                    color:'#759aa0',
                    data:[90,88.75,85,87.5,88.75,91.25]
                },
                {
                    name: '袁波',  
                    type: 'bar',
                    color:'#e69d87',
                    data:[92.5,91.25,88.75,92.5,91.25,88.75]
                },
            ]
	    };
		myChart.setOption(option); 
	</script>
</body>

</html>

效果图

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

EBYB

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值