[toc]
获取echarts.min.js
选择”在线定制”
修改图例、x轴或y轴文本字体颜色改变
修改legend(图例)字体颜色:1
2
3
4
5
6
7
8 legend: {
y:'55%',
textStyle:{
fontSize: 18,//字体大小
color: '#ffffff'//字体颜色
},
data: []
}
修改x轴字体颜色:1
2
3
4
5
6
7
8
9
10
11
12xAxis : [
{
type : 'category',
data : [],
axisLabel: {
show: true,
textStyle: {
color: '#ffffff'
}
}
}
]
修改y轴字体颜色:1
2
3
4
5
6
7
8
9
10
11
12
13
14yAxis : [
{
type : 'value',
nameTextStyle: {
color: '#ffffff'
}, // name的颜色值在这里改
name : '',
axisLabel : {
textStyle: {
color: '#ffffff'
}
}
}
]
在一个页面同时显示多个不同形状的图表
- 采用两个id不同的div
- 设置series数组
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26option = {//简单的 折线图+饼图 展示
grid: [
{x: '7%', y: '7%', width: '38%', height: '38%'},//折线图位置控制
],
xAxis: [
{gridIndex: 0,type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri']},
],
yAxis: [
{gridIndex: 0 },
],
series: [
{
type: 'line',//折线图
xAxisIndex: 0,
yAxisIndex: 0,
data: [1,2,3,4,5],
},
{
type: 'pie',
radius : '45%',
center: ['80%', '30%'],//饼图位置控制
data: [1,2,3,4,5],
},
]
}
饼图边框
1 | option = { |