mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-19 09:36:47 +10:00
Use graph ticks to make axis more readable
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user