React chartjs 2 chartjs-2饼图如何删除划线工具提示

React chartjs 2 chartjs-2饼图如何删除划线工具提示,react-chartjs-2,React Chartjs 2,我想删除这个愚蠢的有线条的工具提示或者其他任何东西 有人知道怎么做吗 显然,您可以通过使用插件来控制它们,并根据需要设置样式 plugins: { outlabels:{ text: (context) =>{ return context } color: "#353948", backgroundColor: "#EFEFEF", borderColor: &

我想删除这个愚蠢的有线条的工具提示或者其他任何东西 有人知道怎么做吗


显然,您可以通过使用插件来控制它们,并根据需要设置样式

   plugins: {
    outlabels:{
      text: (context) =>{
       return context
      }
      color: "#353948",
      backgroundColor: "#EFEFEF",
      borderColor: "#EFEFEF",
      lineColor: "#353948",
      lineWidth: 1,
      borderWidth: 0,
   }
  }