modify the heigth of the bars series in echarts

2019-07-26 07:20发布

I currently have a map loaded, and I have some bars on the map. I would like to include my variable text_toltip[i] in the tooltip so that the coordinates and text of the variable text_toltip[i] are displayed in each bar. how can I do it? I'm new in this library.

I know that there is an attribute called minHeight, which allows to establish a minimum height for the bars, but I would like to establish a maximum predetermined size for the bars and so the other sizes and colors of the bars are calculated. how can I do it?

  series: [{
      type: 'bar3D',
      coordinateSystem: 'geo3D',
      barSize:0.05,
      minHeight:0.05,
      data: data.map(function (item) {
      return {
          value: [item[0], item[1], item[2]],
          label: {
              show: false
          }
      }
      }),
      shading: 'lambert'
  }] 

https://plnkr.co/edit/Tdwwk8yKCi0fiY7I3AqK?p=preview

Thank you.

标签: ECharts
1条回答
姐就是有狂的资本
2楼-- · 2019-07-26 08:02

For this question,I read the Echarts's documentation and found a property belonging to "geo3D called "boxHeight" ,which can play the same role as you say "maxheight".I've tested it,no problem. boxHeight

查看更多
登录 后发表回答