如何使用 c3.js 在工具提示标题中显示每列的总数?
How to show the total per column in tooltip title with c3.js?
在这种情况下,我想在工具提示标题上显示 180 而不是 0。我知道它可以像在 c3 official documentation 中那样进行自定义。但是我找不到获取每列总数的方法。
只需编写自己的工具提示内容函数
tooltip: {
contents: function (d, defaultTitleFormat, defaultValueFormat, color) {
var sum = 0;
d.forEach(function (e) {
sum += e.value
})
defaultTitleFormat = function () {
return sum
};
return c3.chart.internal.fn.getTooltipContent.apply(this, arguments);
}
}
Fiddle - http://jsfiddle.net/x0b3w32e/
在这种情况下,我想在工具提示标题上显示 180 而不是 0。我知道它可以像在 c3 official documentation 中那样进行自定义。但是我找不到获取每列总数的方法。
只需编写自己的工具提示内容函数
tooltip: {
contents: function (d, defaultTitleFormat, defaultValueFormat, color) {
var sum = 0;
d.forEach(function (e) {
sum += e.value
})
defaultTitleFormat = function () {
return sum
};
return c3.chart.internal.fn.getTooltipContent.apply(this, arguments);
}
}
Fiddle - http://jsfiddle.net/x0b3w32e/