C3.js 值为 0 时隐藏工具提示

C3.js Hide tooltip when value is 0

所以我正在使用 C3 创建折线图,如下所示:

现在我必须在图表上的值为零时隐藏工具提示。我无法在网上或 C3 的文档中找到任何解决方案。

请帮忙。谢谢。

您可以为此修改 tooltip.contents 函数。它根据您的需要修改工具提示的HTML。

根据文档

tooltip.contents

Specified function receives data, defaultTitleFormat, defaultValueFormat and color of the data point to show. If tooltip.grouped is true, data includes multiple data points.

文档在这里解释得很清楚:C3 Docs - Tooltip Contents

你可以看到关于这个的例子 fiddle 我做了:JSFiddle

希望能帮到你!