echarts 柱状图条柱顶部或者右侧 显示数字

忘是亡心i 2022-12-13 14:07 608阅读 0赞

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2h6eE9ubGluZU9r_size_16_color_FFFFFF_t_70

  1. series: [
  2. {
  3. type: 'bar',
  4. barWidth: 30,
  5. data: [193, 234, 310, 121, 1341, 68180],
  6. itemStyle: {
  7. normal: {
  8. label: {
  9. show: true, // 开启显示
  10. distance: 20, // 条柱之间的距离
  11. position: 'right', // 在上方top在右侧right显示
  12. textStyle: { // 数值样式
  13. color: 'black',
  14. fontSize: 12
  15. }
  16. }
  17. }
  18. }
  19. }
  20. ]

发表评论

表情:
评论列表 (有 0 条评论,608人围观)

还没有评论,来说两句吧...

相关阅读