【echarts】在柱状图上方显示数值
series: [{
type: 'bar',
data: value,
label: {
show: true, // 开启显示
rotate: 70, // 旋转70度
position: 'top', // 在上方显示
distance: 20, // 距离图形元素的距离。当 position 为字符描述值(如 'top'、'insideRight')时候有效。
verticalAlign: 'middle',
textStyle: { // 数值样式
color: 'black',
fontSize: 12
}
}
}]