search

Home  >  Q&A  >  body text

echarts how to show bubbles on every bar chart - echarts

Currently I know it should be set here

series[
    {
        markpoint:{
            data:[]
        }
    }
]

But it is not clear what value should be filled in the data.

The official example is like this

data : [
    {type : 'max', name: '最大值'},
    {type : 'min', name: '最小值'}
]

Bubbles are only used on the maximum and minimum. The effect I want is to display it on each column, and the displayed value is the value corresponding to the y-axis. How should it be set?

Official example picture:

世界只因有你世界只因有你2754 days ago587

reply all(2)I'll reply

  • 淡淡烟草味

    淡淡烟草味2017-05-19 10:45:18

    Look at the circled areas, you should understand

    reply
    0
  • PHPz

    PHPz2017-05-19 10:45:18

    Add in series

    itemStyle: { normal: {label : {show: true}}},

    reply
    0
  • Cancelreply