Where put “multiTooltipTemplate” in Chart.js v2.x

点点圈 提交于 2020-01-21 08:19:26

问题


i want to change the "label" for the "datasetlabel" width "multiTooltipTemplate". But i find the solution only for the previous version of chart.js

Can you tell me how to convert this :

multiTooltipTemplate: "<%%=datasetLabel%> : <%%= value %>",

To the version 2 of Chart.js

For now i got this in option :

    options: {
tooltips: {
            enabled: true,
            mode: 'single',
            callbacks: {
                label: function(tooltipItems, data) { 
                    return tooltipItems.yLabel + ' €';
                }
            }
        },
}

Thanks for helping


回答1:


Your options object should be

...
options: {
  tooltips: {
    callbacks: {
      label: function(tooltipItem, data) {
        var datasetLabel = data.datasets[tooltipItem.datasetIndex].label || '';
        return datasetLabel + ' : ' + tooltipItem.yLabel + ' €';
      }
    }
  }
}
...


来源:https://stackoverflow.com/questions/37158477/where-put-multitooltiptemplate-in-chart-js-v2-x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!