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
03424421
Commit
03424421
authored
Apr 09, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4493 from mtanda/highlight_tooltip
highlight series name in tooltip when shared tooltip enabled
parents
5d9c3d59
0a13b7c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
public/app/plugins/panel/graph/graph_tooltip.js
+6
-1
No files found.
public/app/plugins/panel/graph/graph_tooltip.js
View file @
03424421
...
@@ -142,11 +142,16 @@ function ($) {
...
@@ -142,11 +142,16 @@ function ($) {
continue
;
continue
;
}
}
var
highlightStyle
=
''
;
if
(
item
&&
i
===
item
.
seriesIndex
)
{
highlightStyle
=
' style="font-weight: bold;"'
;
}
series
=
seriesList
[
i
];
series
=
seriesList
[
i
];
value
=
series
.
formatValue
(
hoverInfo
.
value
);
value
=
series
.
formatValue
(
hoverInfo
.
value
);
seriesHtml
+=
'<div class="graph-tooltip-list-item"><div class="graph-tooltip-series-name">'
;
seriesHtml
+=
'<div class="graph-tooltip-list-item"><div class="graph-tooltip-series-name"
'
+
highlightStyle
+
'
>'
;
seriesHtml
+=
'<i class="fa fa-minus" style="color:'
+
series
.
color
+
';"></i> '
+
series
.
label
+
':</div>'
;
seriesHtml
+=
'<i class="fa fa-minus" style="color:'
+
series
.
color
+
';"></i> '
+
series
.
label
+
':</div>'
;
seriesHtml
+=
'<div class="graph-tooltip-value">'
+
value
+
'</div></div>'
;
seriesHtml
+=
'<div class="graph-tooltip-value">'
+
value
+
'</div></div>'
;
plot
.
highlight
(
i
,
hoverInfo
.
hoverIndex
);
plot
.
highlight
(
i
,
hoverInfo
.
hoverIndex
);
...
...
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