I am using the angular -chart with chart.js and wanted to apply the title caption When mouse over the line. I want to put the title in the caption When mouse.I could do this using the labels , but appears below graphic names and I do not want it , how to remove the names down the chart and leave only the title of the legend?
$scope.labels = ["January", "February", "March", "April", "May", "June", "July"];
$scope.series = ['Series A', 'Series B'];
$scope.data = [
[65, 59, 80, 81, 56, 55, 40],
[28, 48, 40, 19, 86, 27, 90]
];
$scope.onClick = function (points, evt) {
console.log(points, evt);
};
});
I want to remove these texts below the graph and leave only the titles on the legend. See Image. it's possible?
Reference: http://jtblin.github.io/angular-chart.js/
JsFidle: http://jsfiddle.net/Lfmhcab3/4/