let option = {
title: {
// 标题文本
text: '标题文本',
textStyle: {
// 标题字体大小
fontSize: 14
},
// textAlign: "right"
// 标题位置居中
left: "center"
},
// 坐标面板位置
grid: {
right: 0
},
// x轴
xAxis: {
type: "category",
data: ['毛衣', '裤子', '裙子']
},
// y轴
yAxis: {
type: "value",
name: 'y轴名称',
nameTextStyle: { fontSize: 10 }
},
// 保存为图片
toolbox: {
show: true,
right: 20,
feature: {
saveAsImage: {
show: true,
excludeComponents: ["toolbox"],
pixelRatio: 2
}
}
},
series: [
{
type: "line",
data: [20, 30, 40],
// 显示数值
itemStyle: {
normal: {
label: { show: true },
// 设置线条颜色
color: "#6833CF",
lineStyle: {
//设置线条粗细
width: 1.5
}
}
}
}
]
};