Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
morpheus.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Daria Zenkova
morpheus.js
Commits
ffa39a5b
Commit
ffa39a5b
authored
Apr 01, 2016
by
joshua-gould
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
show series name if series index > 0
parent
a2b4c788
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/ui/heat_map_tooltip_provider.js
src/ui/heat_map_tooltip_provider.js
+6
-5
No files found.
src/ui/heat_map_tooltip_provider.js
View file @
ffa39a5b
...
...
@@ -28,7 +28,7 @@ morpheus.HeatMapTooltipProvider = function(heatMap, rowIndex, columnIndex,
for
(
var
i
=
0
,
nseries
=
dataset
.
getSeriesCount
();
i
<
nseries
;
i
++
)
{
morpheus
.
HeatMapTooltipProvider
.
_matrixValueToString
(
dataset
,
rowIndex
,
columnIndex
,
i
,
tipText
,
separator
,
options
.
showSeriesNameInTooltip
);
options
.
showSeriesNameInTooltip
||
i
>
0
);
}
if
(
quick
)
{
var
quickRowTracks
=
heatMap
.
rowTracks
.
filter
(
function
(
t
)
{
...
...
@@ -38,10 +38,11 @@ morpheus.HeatMapTooltipProvider = function(heatMap, rowIndex, columnIndex,
quickRowTracks
,
dataset
.
getRowMetadata
(),
rowIndex
,
tipText
,
separator
);
// if (quickRowTracks.length > 0) {
// tipText
// .push('<div style="height:1px;background-color:LightGrey;"></div>');
// }
// if (quickRowTracks.length > 0) {
// tipText
// .push('<div
// style="height:1px;background-color:LightGrey;"></div>');
// }
morpheus
.
HeatMapTooltipProvider
.
_tracksToString
(
options
,
heatMap
.
columnTracks
.
filter
(
function
(
t
)
{
return
t
.
settings
.
inlineTooltip
;
...
...
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