一致率echarts gauge配置项内容和展示

配置项如下
      option = {
  tooltip: {
    formatter: '{a} <br/>{b} : {c}%'
  },
  series: [
    {
      name: '油耗',
      type: 'gauge',
      detail: {
        formatter: '{value}'
      },
      data: [
        {
          value: 85,
          name: '一致率'
        }
      ]
    }
  ]
};
    
截图如下