Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
93b2b9b7
Commit
93b2b9b7
authored
Jun 30, 2014
by
Pierre-Luc Brunet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed invalid references to grid.min and grid.max in function render_panel_as_graphite_png()
parent
91b48258
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/app/directives/grafanaGraph.js
+4
-2
No files found.
src/app/directives/grafanaGraph.js
View file @
93b2b9b7
...
...
@@ -353,8 +353,10 @@ function (angular, $, kbn, moment, _) {
url
+=
scope
.
panel
.
fill
!==
0
?
(
'&areaAlpha='
+
(
scope
.
panel
.
fill
/
10
).
toFixed
(
1
))
:
''
;
url
+=
scope
.
panel
.
linewidth
!==
0
?
'&lineWidth='
+
scope
.
panel
.
linewidth
:
''
;
url
+=
scope
.
panel
.
legend
.
show
?
'&hideLegend=false'
:
'&hideLegend=true'
;
url
+=
scope
.
panel
.
grid
.
min
!==
null
?
'&yMin='
+
scope
.
panel
.
grid
.
min
:
''
;
url
+=
scope
.
panel
.
grid
.
max
!==
null
?
'&yMax='
+
scope
.
panel
.
grid
.
max
:
''
;
url
+=
scope
.
panel
.
grid
.
leftMin
!==
null
?
'&yMin='
+
scope
.
panel
.
grid
.
leftMin
:
''
;
url
+=
scope
.
panel
.
grid
.
leftMax
!==
null
?
'&yMax='
+
scope
.
panel
.
grid
.
leftMax
:
''
;
url
+=
scope
.
panel
.
grid
.
rightMin
!==
null
?
'&yMin='
+
scope
.
panel
.
grid
.
rightMin
:
''
;
url
+=
scope
.
panel
.
grid
.
rightMax
!==
null
?
'&yMax='
+
scope
.
panel
.
grid
.
rightMax
:
''
;
url
+=
scope
.
panel
[
'x-axis'
]
?
''
:
'&hideAxes=true'
;
url
+=
scope
.
panel
[
'y-axis'
]
?
''
:
'&hideYAxis=true'
;
...
...
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