Following the tutorial this code draws the line chart, but no tooltips. Am I missing some configuration option here? In the tutorial there are tooltips showing up.
You just need to put backgroundColor with a single value instead a array:
datasets: [{ label: "# of beauty womens", data: [12, 5, 3], backgroundColor: "#FC940B", fill: false, borderColor: "#FC940B" }]
Hugs...