nvd3.js 旭日图 - 如何编辑工具提示?

nvd3.js sunburst chart - How to edit the tooltip?

我尝试借用 nvd3 饼图等中使用的 .tooltipContent(function(key, y, e, graph) { return 'Some String' }).tooltip(function(key, y, e, graph) { return 'Some String' }) 函数。但是 none 似乎 运行 用于 Sunburst 图表.

如何自定义 nvd3 sunburst 图表的工具提示?

Sunburst 图表中的工具提示格式与其他 NVD3 图表不同。 All NVD3 charts 已经构建了工具提示,但有不同的方法来更改它们。

我刚刚查看了 NVD3 Suburst 图表源代码,在 line 32 中我发现了一些帮助我们操作工具提示内容的方法。

添加以下代码来制作自定义工具提示:

chart.tooltip.valueFormatter(function (d) {
    return d;
});

希望对您有所帮助