Echarts图表之折线图

 <!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>Echarts图表</title>
        <!-- 引入echarts.min.js -->
        <script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js"></script>
    </head>
    <body>
        <div id="main" style="width: 600px;height:400px;"></div>
        <script type="text/javascript">
            var myChart = echarts.init(document.getElementById('main'));
            var option = {
                color: '#02acb4',
                backgroundColor: 'rgba(1,202,217,.6)',
                grid: {
                    left: 60,
                    right: 60,
                    top: 50,
                    bottom: 40
                },
                //工具栏组件
                toolbox: {
                    //辅助线开关
                    feature: {
                        show: true,
                        //保存为图片
                        saveAsImage: {
                            show: true
                        }
                    }
                },
                xAxis: {
                    type: 'category',
                    boundaryGap: false,
                    //去掉坐标轴刻线
                    axisTick: {
                        show: false
                    },
                    axisLine: {
                        lineStyle: {
                            color: 'rgba(255,255,255,.5)'
                        }
                    },
                    splitLine: {
                        lineStyle: {
                            color: 'rgba(255,255,255,.1)'
                        }
                    },
                    axisLabel: {
                        color: 'rgba(255,255,255,.5)'
                    },
                    data: ['1', '3', '5', '7', '9', '11', '13', '15', '17', '19', '21', '23']
                },
                yAxis: {
                    type: 'value',
                    name: '',
                    min: 0,
                    max: 300,
                    //设置刻度间隔
                    interval: 50,
                    axisTick: {
                        show: false
                    },
                    axisLine: {
                        lineStyle: {
                            color: 'rgba(255,255,255,.5)'
                        }
                    },
                    splitLine: {
                        lineStyle: {
                            color: 'rgba(255,255,255,.1)'
                        }
                    },
                    axisLabel: {
                        color: 'rgba(255,255,255,.5)'
                    }
                },
                series: [{
                    name: 'xxx分析',
                    type: 'line',
                    data: [110, 100, 200, 210, 240, 270, 120, 90, 180, 200, 240, 270]
                }]
            };
            myChart.setOption(option);
        </script>
    </body>
</html>

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值