flutter_echarts icon indicating copy to clipboard operation
flutter_echarts copied to clipboard

bar中tooltip的valueFormatter为啥无效

Open lumingyuan opened this issue 3 years ago • 0 comments

{
  name: 'ga',
  type: 'bar',
  showBackground: true,
  backgroundStyle: {
    borderRadius: [5, 5, 0, 0]
  },
  tooltip: {
    valueFormatter: (value) => '$' + value.toFixed(2)
  },
  itemStyle: {
    borderRadius: [5, 5, 0, 0]
  },
  data: [
    0, 36.93000000000029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  ]
}

tooltip里的valueFormatter和formatter设置后都无效果

lumingyuan avatar Apr 05 '22 06:04 lumingyuan