Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 vue-chart 制作条形图。我想在条形图正文上显示值而不是使用工具提示?为此我该怎么办?
您能否发布一些代码,以便我们可以看到您的选项是什么样的?
不过总的来说。在您的选项中,您可以配置不同的轴。默认情况下,数据将显示在图表主体和工具提示上。你的代码中有这样的东西吗?
yAxes:[{ display:false, }],
如果您愿意,还可以通过将以下内容添加到您的选项来禁用工具提示。
tooltips: { enabled: false }