I have a simeple question about Chart.js, I would like to know how I can fix my chart.
I am using Chart.js and respChartJS ( https://github.com/arifLogic/respChartJS )
Demo: http://jsfiddle.net/k3YH7/1/
var data = { labels : ["Something #1","Something #2","Something #3"], datasets : [ { fillColor : "rgba(224, 34, 34, 0.5)", strokeColor : "#830505", data : [1500,1500,1500] } ] } respChart($("#chart2"),data);
Well, these bars are so small and do not work as I expected. How can I make it visible? I want the box to scale better, for example: 500, 1000, 1500, 2500, etc.
source share