option = {
graphic: [
{
type: 'line', // 指定图形类型为折线
shape: {
points: [[100, 100], [150, 50], [200, 100], [250, 80]] // 折线各点坐标
},
style: {
stroke: 'red', // 线条颜色
lineWidth: 2 // 线条宽度
},
position: [10, 10] // 位置偏移
}
],
// 其他配置项...
};
在这个例子中,我们使用 type: 'line' 指定了图形类型为折线,通过 shape 属性设置了折线的各点坐标数组。数组中的每一项都是一个点的坐标 [x, y]。style 属性用于设置折线的样式,包括线条颜色和线条宽度。最后,通过 position 属性设置了图形的位置偏移。
你可以根据实际需求调整点坐标、样式以及其他属性以满足你的要求。
转载请注明出处:http://www.zyzy.cn/article/detail/5386/ECharts