我想删除两个日期之间的额外空间, 这里是x轴的img
http://i.stack.imgur.com/Wknp9.png
dates array=["2016-03-04", "2016-03-07", "2016-03-08", "2016-03-09", "2016-03-10", "2016-03-11", "2016-03-14", "2016-03-15", "2016-03-16", "2016-03-17", "2016-03-18"];
var x = d3.time.scale()
.range([margin.left + padding, width + padding - 350])
.domain(d3.extent(dates, function (d) { return timeFormat.parse(d) }));
var xAxis = d3.svg.axis()
.scale(x)
.orient("top")
.tickFormat(timeFormat)
.tickValues(dates.map(function (d) { return timeFormat.parse(d) }));