diff --git a/c3.js b/c3.js index a3c5521..3e347c8 100644 --- a/c3.js +++ b/c3.js @@ -138,7 +138,12 @@ text = "", i, value, name; for (i = 0; i < d.length; i++) { if (! d[i] || !(d[i].value || d[i].value === 0)) { continue; } - value = isDefined(d[i].value) ? (Math.round(d[i].value * 100) / 100).toFixed(2) : '-'; + + value = '-'; + if (isDefined(d[i].value)) { + value = __axis_y_tick_format((Math.round(d[i].value * 100) / 100).toFixed(2)); + } + name = d[i].name; text += ""; }
" + title + "
" + name + "" + value + "