echarts散点图加标签
时间: 2023-08-25 10:14:10 浏览: 285
要在 Echarts 散点图中加标签,可以使用 series 中的 label 属性来实现。具体步骤如下:
1. 在 series 中添加 label 属性,并设置其 show 属性为 true。
2. 设置 label 属性中的 formatter 函数,用于在散点图中显示需要的标签内容。
3. 根据需要设置 label 的样式,如字体大小、颜色、位置等。
以下是一个示例代码,用于在 Echarts 散点图中添加标签:
```javascript
option = {
xAxis: {},
yAxis: {},
series: [{
type: 'scatter',
data: [[10.0, 8.04], [8.0, 6.95], [13.0, 7.58], [9.0, 8.81], [11.0, 8.33], [14.0, 9.96], [6.0, 7.24], [4.0, 4.26], [12.0, 10.84], [7.0, 4.82], [5.0, 5.68]],
label: {
show: true,
formatter: function(param) {
return param.value[0] + ', ' + param.value[1]; // 显示 x 坐标和 y 坐标
},
fontSize: 12,
color: '#333',
position: 'top' // 标签显示在散点图的上方
}
}]
};
```
这段代码会在散点图中显示每个数据点的 x 坐标和 y 坐标。你可以根据需要修改 formatter 函数中的代码,来显示自己需要的标签内容。
阅读全文