数据
const xData = ['小米', '三星', '苹果']
const yData = [2451, 5415, 4012]
配置项
{
xAxis: {
type: 'category',
data: xData
},
yAxis: {
type: 'value'
},
series: [
{
type: 'line', //设置折线图
data: yData,
}
]
}
曲线图(平滑过度)
smooth: true
内容填充(瀑布)
areaStyle: { }
标记最大值 最小值 平均值
markPoint: {
data: [
{
name: '最大值',
type: 'max',
}, {
name: '最小值',
type: 'min'
}
]
}, markLine: {
data: [
{
name: '平均值',
type: 'average'
}
]
}
设置线条颜色
lineStyle: { // 设置线条的style等
normal: {
color: 'red', // 折线线条颜色:红色
},
}
设置点颜色
itemStyle: {
normal: {
color: 'pink'
}
}