app/assets/javascripts/plasticine/line.coffee in plasticine-1.2.2 vs app/assets/javascripts/plasticine/line.coffee in plasticine-1.2.3

- old
+ new

@@ -126,11 +126,11 @@ @xAxis = d3.axisBottom(@xScale) @xAxis.tickSize -@holder.height() switch @xAxisFormat when 'date' then @xAxis.tickFormat(d3.timeFormat('%b')) - when 'day' then @xAxis.tickFormat(d3.timeFormat('%e %b')) + when 'day' then @xAxis.tickFormat(d3.timeFormat('%e-%m')) when 'quarter' then @xAxis.tickFormat (d) => PlasticineHelpers.toQuarter(d, @quarterStartMonth) when 'year' then @xAxis.tickFormat (d) => PlasticineHelpers.toYear(d, @quarterStartMonth) when 'money' then @xAxis.tickFormat (d) => PlasticineHelpers.toPrice(d) when 'numeric' then @xAxis.tickFormat (d) => PlasticineHelpers.toNumeric(d) @@ -149,8 +149,8 @@ @yAxis.tickSize -@holderWidth() @yAxis.ticks @yAxisTickCount switch @yAxisFormat when 'date' then @yAxis.tickFormat(d3.timeFormat('%b')) - when 'day' then @yAxis.tickFormat(d3.timeFormat('%e %b')) + when 'day' then @yAxis.tickFormat(d3.timeFormat('%e-%m')) when 'money' then @yAxis.tickFormat (d) => PlasticineHelpers.toPrice(d) when 'numeric' then @yAxis.tickFormat (d) => PlasticineHelpers.toNumeric(d)