Is it possible to remove paddings inside bar chart?
<canvas id="weeksChartFallout" width="660" height="200"></canvas> var falloutArray = [12, 24, 20, 15, 18, 20, 22, 10, 10, 12, 14, 10, 16, 16]; var dataWeeksFallouts = { labels: ["16.02", "17.02", "18.02", "19.02", "20.02", "21.02", "22.02", "23.02", "24.02", "25.02", "26.02", "27.02", "28.02", "01.03"], datasets: [ { label: "Fallouts", fillColor: "rgba(63,107,245,0.67)", data: falloutArray } ] }; var fc = document.getElementById('weeksChartFallout').getContext('2d'); window.weeksChartFallout = new Chart(fc).Bar(dataWeeksFallouts,{ barShowStroke : false, barValueSpacing : 4, //distance between bars barValueWidth: 20, scaleShowLabels: false, scaleFontColor: "transparent", tooltipEvents: [] }); I mean space between first bar and left line and, especially space between last Bar and end of the chart (screenshot).
Here is my Fiddle