zoukankan      html  css  js  c++  java
  • Echart使用过的属性总结

    改变坐标轴颜色与粗细:

    axisLine: {
                                    lineStyle: {//设置轴的颜色
                                        color: '#CD0000',
                                         1,//轴的宽度  
                                    }
                                }

    改变坐标轴上刻度的间隔与倾斜方向:

    axisLabel: {
                            interval: 1,//横轴间隔一个显示  
                            rotate: -30,//-30度角倾斜显示  
                        }

    伸缩坐标轴设置:

    dataZoom: [{
                    type: 'inside',//也可设置为slider,则表现出来
                    show: true,
                    realtime: true,
                    start: 0,
                    end: 100
                }],

    设置y轴便宜,向右偏移:

    offset: 60

    设置y轴的刻度范围及刻度间隔:

     min: 0,
     max: 1600,
     interval: 400,
  • 相关阅读:
    ubuntu安装
    学习资料

    disksim-3.0 with flashsim 安装
    STL
    存储引擎
    数据库索引
    数据库表、字段设计
    查询SQL优化
    导航栏实现
  • 原文地址:https://www.cnblogs.com/engineerlm/p/7276910.html
Copyright © 2011-2022 走看看