Use graph ticks to make axis more readable
This commit is contained in:
parent
d40e6bc228
commit
8fb84104e4
1 changed files with 4 additions and 4 deletions
|
@ -71,7 +71,7 @@ class window.ContributorsMasterGraph extends ContributorsGraph
|
|||
super @width, @height
|
||||
create_axes: ->
|
||||
@x_axis = d3.svg.axis().scale(@x).orient("bottom")
|
||||
@y_axis = d3.svg.axis().scale(@y).orient("left")
|
||||
@y_axis = d3.svg.axis().scale(@y).orient("left").ticks(5)
|
||||
create_svg: ->
|
||||
@svg = d3.select("#contributors-master").append("svg")
|
||||
.attr("width", @width + @MARGIN.left + @MARGIN.right)
|
||||
|
@ -130,8 +130,8 @@ class window.ContributorsAuthorGraph extends ContributorsGraph
|
|||
create_scale: ->
|
||||
super @width, @height
|
||||
create_axes: ->
|
||||
@x_axis = d3.svg.axis().scale(@x).orient("bottom").tickFormat(d3.time.format("%m/%d"));
|
||||
@y_axis = d3.svg.axis().scale(@y).orient("left")
|
||||
@x_axis = d3.svg.axis().scale(@x).orient("bottom").ticks(8)
|
||||
@y_axis = d3.svg.axis().scale(@y).orient("left").ticks(5)
|
||||
create_area: (x, y) ->
|
||||
@area = d3.svg.area().x((d) ->
|
||||
parseDate = d3.time.format("%Y-%m-%d").parse
|
||||
|
@ -148,7 +148,7 @@ class window.ContributorsAuthorGraph extends ContributorsGraph
|
|||
.append("g")
|
||||
.attr("transform", "translate(" + @MARGIN.left + "," + @MARGIN.top + ")")
|
||||
draw_path: (data) ->
|
||||
@svg.append("path").datum(data).attr("class", "area-contributor").attr("d", @area);
|
||||
@svg.append("path").datum(data).attr("class", "area-contributor").attr("d", @area)
|
||||
draw: ->
|
||||
@create_scale()
|
||||
@create_axes()
|
||||
|
|
Loading…
Reference in a new issue