echarts柱状图如何去掉鼠标移上去变小手

#userArea > div > canvas:hover {
cursor: default;
}
这个不起作用

series中加 cursor: 'default'

 series: [
    {
       cursor: 'default' ,
      data: [120, 200, 150, 80, 70, 110, 130],
      type: 'bar',
      showBackground: true,
      backgroundStyle: {
        color: 'rgba(180, 180, 180, 0.2)'
      }
    }
  ]