I am currently fiddling around with some charts, and I would like for there to be a string of text to come up as you hover over certain data points.
So for example, currently my dataset looks like this:
var data = {
labels: ["January", "February:", "March", "April", "May", "June", "July"],
datasets: [{
label: "My first dataset",
fillColor: "rgba(220,220,220,0.2)",
strokeColor: "rgba(220,220,220,1)",
pointColor: "rgba(220,220,220,1)",
pointStrokeColor: "#fff",
pointHighlightFill: "#fff",
pointHighlightStroke: "rgba(220,220,220,1)",
data: [65, 59, 80, 81, 56, 55, 40]
}]
};
I would like for example, to hover over the February : 59 point and have it display "February : 59 - Some unique text"
Thank you