D3Js Bar Chart Bars Starting Way After beginning of X-Axis
问题 As the title say, I am creating a bar chart using D3Js. What do I have to change in the following snippet for the bars to start at the beginning of the X-Axis? var allBarsDatasets = [ { "xAxisTickValue": "10-1", "barValue": 18 }, { "xAxisTickValue": "10-2", "barValue": 17 }, { "xAxisTickValue": "10-3", "barValue": 17 }, { "xAxisTickValue": "10-4", "barValue": 19 }, { "xAxisTickValue": "11-1", "barValue": 19 }, { "xAxisTickValue": "11-2", "barValue": 14 }, { "xAxisTickValue": "11-3", "barValue