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
381b9ee7
Commit
381b9ee7
authored
Nov 11, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Graph: legend css tweaks
parent
a301c96c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
9 deletions
+13
-9
src/app/panels/graph/legend.js
+6
-6
src/css/less/graph.less
+7
-3
No files found.
src/app/panels/graph/legend.js
View file @
381b9ee7
...
@@ -90,7 +90,7 @@ function (angular, app, _, kbn, $) {
...
@@ -90,7 +90,7 @@ function (angular, app, _, kbn, $) {
html
+=
'<i class="icon-minus pointer" style="color:'
+
series
.
color
+
'"></i>'
;
html
+=
'<i class="icon-minus pointer" style="color:'
+
series
.
color
+
'"></i>'
;
html
+=
'</div>'
;
html
+=
'</div>'
;
html
+=
'<div class="graph-legend-alias
small
">'
;
html
+=
'<div class="graph-legend-alias">'
;
html
+=
'<a>'
+
series
.
label
+
'</a>'
;
html
+=
'<a>'
+
series
.
label
+
'</a>'
;
html
+=
'</div>'
;
html
+=
'</div>'
;
...
@@ -101,11 +101,11 @@ function (angular, app, _, kbn, $) {
...
@@ -101,11 +101,11 @@ function (angular, app, _, kbn, $) {
var
total
=
series
.
formatValue
(
series
.
stats
.
total
);
var
total
=
series
.
formatValue
(
series
.
stats
.
total
);
if
(
panel
.
legend
.
values
)
{
if
(
panel
.
legend
.
values
)
{
if
(
panel
.
legend
.
min
)
{
html
+=
'<div class="graph-legend-value min
small
">'
+
min
+
'</div>'
;
}
if
(
panel
.
legend
.
min
)
{
html
+=
'<div class="graph-legend-value min">'
+
min
+
'</div>'
;
}
if
(
panel
.
legend
.
max
)
{
html
+=
'<div class="graph-legend-value max
small
">'
+
max
+
'</div>'
;
}
if
(
panel
.
legend
.
max
)
{
html
+=
'<div class="graph-legend-value max">'
+
max
+
'</div>'
;
}
if
(
panel
.
legend
.
avg
)
{
html
+=
'<div class="graph-legend-value avg
small
">'
+
avg
+
'</div>'
;
}
if
(
panel
.
legend
.
avg
)
{
html
+=
'<div class="graph-legend-value avg">'
+
avg
+
'</div>'
;
}
if
(
panel
.
legend
.
current
)
{
html
+=
'<div class="graph-legend-value
current small
">'
+
current
+
'</div>'
;
}
if
(
panel
.
legend
.
current
)
{
html
+=
'<div class="graph-legend-value">'
+
current
+
'</div>'
;
}
if
(
panel
.
legend
.
total
)
{
html
+=
'<div class="graph-legend-value total
small
">'
+
total
+
'</div>'
;
}
if
(
panel
.
legend
.
total
)
{
html
+=
'<div class="graph-legend-value total">'
+
total
+
'</div>'
;
}
}
}
html
+=
'</div>'
;
html
+=
'</div>'
;
...
...
src/css/less/graph.less
View file @
381b9ee7
...
@@ -18,12 +18,12 @@
...
@@ -18,12 +18,12 @@
top: 1px;
top: 1px;
}
}
.graph-legend-series,
.graph-legend-icon,
.graph-legend-icon,
.graph-legend-alias,
.graph-legend-alias,
.graph-legend-value {
.graph-legend-value {
float: left;
float: left;
white-space: nowrap;
white-space: nowrap;
font-size: 85%;
text-align: left;
text-align: left;
&.current:before {
&.current:before {
content: "Current: "
content: "Current: "
...
@@ -43,6 +43,8 @@
...
@@ -43,6 +43,8 @@
}
}
.graph-legend-series {
.graph-legend-series {
float: left;
white-space: nowrap;
padding-left: 10px;
padding-left: 10px;
padding-top: 6px;
padding-top: 6px;
}
}
...
@@ -110,7 +112,8 @@
...
@@ -110,7 +112,8 @@
text-align: right;
text-align: right;
padding: 5px 10px;
padding: 5px 10px;
font-weight: bold;
font-weight: bold;
color: @blue
color: @blue;
font-size: 85%;
}
}
}
}
...
@@ -131,7 +134,8 @@
...
@@ -131,7 +134,8 @@
display: table-cell;
display: table-cell;
vertical-align: top;
vertical-align: top;
position: relative;
position: relative;
left: -4px;
left: 4px;
top: -20px;
}
}
.graph-legend {
.graph-legend {
...
...
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