BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
6579ba3e
Commit
6579ba3e
authored
Aug 14, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase graphs height
parent
ddaa1f1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
stat_graph_contributors_graph.js.coffee
...ssets/javascripts/stat_graph_contributors_graph.js.coffee
+11
-9
No files found.
app/assets/javascripts/stat_graph_contributors_graph.js.coffee
View file @
6579ba3e
class
window
.
ContributorsGraph
MARGIN
:
top
:
20
right
:
20
bottom
:
30
right
:
20
bottom
:
30
left
:
50
x_domain
:
null
y_domain
:
null
...
...
@@ -38,7 +38,7 @@ class window.ContributorsGraph
@
y
=
d3
.
scale
.
linear
().
range
([
height
,
0
]).
nice
()
draw_x_axis
:
->
@
svg
.
append
(
"g"
).
attr
(
"class"
,
"x axis"
).
attr
(
"transform"
,
"translate(0,
#{
@
height
}
)"
)
.
call
(
@
x_axis
)
;
.
call
(
@
x_axis
)
draw_y_axis
:
->
@
svg
.
append
(
"g"
).
attr
(
"class"
,
"y axis"
).
call
(
@
y_axis
)
set_data
:
(
data
)
->
...
...
@@ -51,7 +51,7 @@ class window.ContributorsMasterGraph extends ContributorsGraph
else
@
width
=
870
@
height
=
125
@
height
=
200
@
x
=
null
@
y
=
null
@
x_axis
=
null
...
...
@@ -61,7 +61,7 @@ class window.ContributorsMasterGraph extends ContributorsGraph
@
brush
=
null
@
x_max_domain
=
null
process_dates
:
(
data
)
->
dates
=
@
get_dates
(
data
)
dates
=
@
get_dates
(
data
)
@
parse_dates
(
data
)
ContributorsGraph
.
set_dates
(
dates
)
get_dates
:
(
data
)
->
...
...
@@ -87,14 +87,16 @@ class window.ContributorsMasterGraph extends ContributorsGraph
@
area
=
d3
.
svg
.
area
().
x
((
d
)
->
x
(
d
.
date
)
).
y0
(
@
height
).
y1
((
d
)
->
y
(
d
.
commits
=
d
.
commits
?
d
.
additions
?
d
.
deletions
)
xa
=
d
.
commits
=
d
.
commits
?
d
.
additions
?
d
.
deletions
console
.
log
(
xa
)
y
(
xa
)
).
interpolate
(
"basis"
)
create_brush
:
->
@
brush
=
d3
.
svg
.
brush
().
x
(
@
x
).
on
(
"brushend"
,
@
update_content
)
draw_path
:
(
data
)
->
@
svg
.
append
(
"path"
).
datum
(
data
).
attr
(
"class"
,
"area"
).
attr
(
"d"
,
@
area
)
add_brush
:
->
@
svg
.
append
(
"g"
).
attr
(
"class"
,
"selection"
).
call
(
@
brush
).
selectAll
(
"rect"
).
attr
(
"height"
,
@
height
)
;
@
svg
.
append
(
"g"
).
attr
(
"class"
,
"selection"
).
call
(
@
brush
).
selectAll
(
"rect"
).
attr
(
"height"
,
@
height
)
update_content
:
=>
ContributorsGraph
.
set_x_domain
(
if
@
brush
.
empty
()
then
@
x_max_domain
else
@
brush
.
extent
())
$
(
"#brush_change"
).
trigger
(
'change'
)
...
...
@@ -126,8 +128,8 @@ class window.ContributorsAuthorGraph extends ContributorsGraph
@
width
=
490
else
@
width
=
380
@
height
=
13
0
@
height
=
20
0
@
x
=
null
@
y
=
null
@
x_axis
=
null
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment