Angular-Chart.js – Tooltip not working with 0 values

👍:0 Just increase (or remove) the pointHitDetectionRadius to a larger value (it’ll work even if you increase the chart size, but I assume that’s not an option) and you’ll see the tooltips (I checked in IE11 in IE10 mode – the tooltips were not appearing on the Plnkr screen unless I either increased pointHitDetectionRadius or … Read more

How to add axis titles in chart.js charts

👍:0 Update: Y-title: see this SO answer X-title: see this other answer Original response From the documentation: var myLineChart = new Chart(ctx).Line(data, options); 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: … Read more