chartjs-2饼图如何删除带衬里的工具提示

问题描述

我想删除此愚蠢的衬里工具提示或任何此类内容 谁知道吗?

enter image description here

解决方法

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

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