echarts常见配置

Posted 李春雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts常见配置相关的知识,希望对你有一定的参考价值。

x轴、y轴label自定义
yAxis: { 
     axisLabel: { textStyle: { color: \'#fff\' ,fontFamily: \'TencentSans\',fontSize:\'18px\'} }
}
图标柱状、折线样式
series: [{
    data:[],
    lineStyle: { color: \'#5470C6\', width: 1, type: \'dashed\' },
}]
渐变色
import * as echarts from \'echarts/core\';
new echarts.graphic.LinearGradient(
    0, 0, 0, 1,
    [
      {offset: 0, color: \'#03F5FF\'},
      {offset: 1, color: \'#00A2FF\'}
    ]
)
x轴倾斜
xAxis: {
  axisLabel: {
    rotate: 45
  }
},
grid:{
  bottom:100
},
tootip背景色
tooltip: {
  trigger: \'axis\',
  axisPointer: {
      type: \'shadow\'
  },
  backgroundColor: \'rgba(47, 6, 170, 0.8)\',
  borderColor: \'#00FFFF\',
  borderWidth:1,
  textStyle:{
    color: \'#FFFFFF\',
    fontSize: \'18px\',
    fontFamily: \'TencentSans\',
  }
}

持续更新...

以上是关于echarts常见配置的主要内容,如果未能解决你的问题,请参考以下文章

echarts 使用时,常见配置

Alfred常见使用

使用ECharts画K线图

ECharts常用图表 饼图

Vue使用Echarts以及Echarts配置分享

31-Vue之ECharts-饼图