Translating mouse-over text in NVD3.js

238 Views Asked by At

I'm using some stacked bar diagrams with the excellent nvd3 library (These: http://nvd3.org/examples/multiBar.html)

I have a problem though. I want the mouse-over tooltip just as it is, but I need to translate the word 'on' into another language. I can't find any documentation on how to do that and I can't seem to find it in the source code.

Anyone have a clue?

1

There are 1 best solutions below

0
On

In versions 1.7.1 and below (which I assume you're using), you can use chart.tooltipContent().

// If you want to change the tooltip format you could edit this function
chart.tooltipContent(function (key, x, y, e, graph) {
    return '<h3>' + key + '</h3>' +
        '<p>' +  y + ' en ' + x + '</p>'
});

See this plunk for an example: http://plnkr.co/edit/YxZKDBqVWhtxryUSMwjk?p=preview

If you use 1.8.1, the same could be accomplished like this:

// If you want to change the tooltip format you could edit this function
chart.tooltip.contentGenerator(function (d) {
    return '<h3>' + d.data.key + '</h3>' +
        '<p>' +  d.data.display.y + ' en ' + new Date(d.data.x).toLocaleDateString() + '</p>'
});

As shown in this plunk: http://plnkr.co/edit/ZYsjygDJkHSit50Rh3sZ?p=preview