2016-09-27 90 views

回答

2

編輯您的工具提示title回調財產屬性,存儲在選項:

tooltips: { 
    callbacks: { 
     title: function(tooltipItem, chartData) { 
      // You return what you want here 
      return "Title"; 
     } 
    } 
} 

你可以看到你的on this jsFiddle更新例如,這裏是它的結果:

enter image description here