背景网格线颜色设置
yAxis: {
type: 'value',
splitLine: {
show: true,
lineStyle: {
color: ['#0B2C57'],
width: 1,
type: 'solid'
}
},
axisLine: {
show: true,
lineStyle: {
color: '#234F88',
}
},
},
柱形图渐变颜色和柱体大小
series: [
{
name: '直接访问',
type: 'bar',
data: [],
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(
0, 0, 0, 1,
[
{ offset: 0, color: '#00EDFD' },
{ offset: 1, color: '#165DE8' }
]
)
},
},
barWidth: '20%'
},
]
X轴字体颜色和大小的更改,解决X轴内容过多会隐藏部分内容的问题, 取消刻度
xAxis: [
{
type: 'category',
axisTick: { show: false },
data: ['福州', '厦门', '宁德', '莆田', '泉州', '漳州', '龙岩', '三明', '南平', '平潭'],
axisLabel: {
interval: 0,
inside: false,
textStyle: {
color: '#fff',
fontSize: '10',
}
},
}
],
Y轴内容显示不全的解决方法
option = {
grid: {
left: 55
}
},
饼图和环形图文字大小
series: [
itemStyle: {
normal: {
label: {
textStyle: {
color: 'white',
fontSize: 10,
fontWeight: 'bolder'
}
},
}
},
]
echarts附近空白位置太多
grid: {
top: '5%',
left: '8%',
right: '5%',
bottom: '11%'
},
自定义鼠标移入显示的浮窗内容时,前面的圆点会消失
tooltip: {
formatter: function (params) {
return params[0].marker + params[0].name + ': ' + params[0].value + '%';
}
},
柱状图头部显示数据
series: [
{
itemStyle: {
normal: {
label: {
show: true,
position: 'top',
textStyle: {
color: 'white',
fontSize: 10,
},
formatter: '\n{c}%',
}
},
},
barWidth: '20%'
},
]
饼图自定义显示的数值格式,开启空心圆
series: [
{
type: 'pie',
radius: [30, 50],
itemStyle: {
normal: {
label: {
textStyle: {
color: 'white',
fontSize: 10,
},
formatter: '{b}:{c}%',
},
},
},
}
]
Y轴末尾添加单位
yAxis: {
name: '人数',
nameTextStyle: {
color: '#4160AE'
},
}
折线图折线点的大小、颜色、边框颜色,折线颜色
series:[
symbol: 'circle',
symbolSize: 7,
itemStyle: {
normal: {
color: "ffffff",
borderColor: '#ffffff49',
borderWidth: 8,
lineStyle: {
color: "#12C8EF",
},
},
},
]