使用chart.js v.2库,我想在数字中添加逗号,因此我创建了一个名为addCommas
的函数。
我已经阅读了官方的chart.js文档,并没有指定设置tooltipTemplate config uisng数据属性的方法。
我还尝试使用javascript设置Chart.defaults.global
但它不起作用。
任何建议或意见将不胜感激。 先感谢您。
以下是我的代码。
<canvas data-chart="line" data-labels='["2016-10","2016-11","2016-12","2017-01","2017-02","2017-03"]' data-values='[{"backgroundColor": " (96, 125, 139, 1)", "borderColor": "#666", "borderWidth": 2, "pointBackgroundColor": "#50b432", "pointRadius": 1, "label": "매출액", "data": '["196267000","157179000","159363000","166962430","242801860","139650000"]'}]' data-hide='["gridLinesX", "legend"]' data-tooltips: '{"custom":"<%= addCommas(value) %>"}' height="150" width="300"></canvas>