如何在迷你图工具提示中显示始终为两位小数的值? 例如,我希望1.20显示为“1.20”而不是“1.2”?
答案 0 :(得分:0)
查看“互动迷你图”下的选项 http://omnipotent.net/jquery.sparkline/#s-docs
$(element).sparkline(scope.values, {
type: 'bar',
numberFormatter: function(num) {
console.log(count++);
return '€' + num.toFixed(2);
},
});
答案 1 :(得分:0)
找到解决方案: sparkline有选项:tooltipFormat,您可以在其中格式化工具提示。
var sparklineCharts = function(){
$('#my_id').sparkline(currentMonthArray, sparklineSettings);
};
var sparklineSettings = {
type: 'line',
width: '100%',
height: '50',
lineColor: '#1ab394',
fillColor: 'transparent',
tooltipFormat: '{{y.2}}'
};