Chart.js Bubble chart with custome X-axis labels
问题 Is there anyway I can customize the X-axis label to words instead of numbers scale? I tried inserting the labels attribute in my data, but it doesn't work. this is my code: var bubbleChartData = { datasets: [ { label: "My First dataset", backgroundColor: randomColor(), data: [4, 2, 3, 4, 5] }], labels: [ "Bad", "Average", "Good", "Very Good", "Perfect" ] }; window.onload = function() { var ctx = document.getElementById("canvas").getContext("2d"); window.myChart = new Chart(ctx, { type: