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
bc8c2428
Commit
bc8c2428
authored
Jun 14, 2016
by
Joshua Gould
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chart hover mode
parent
a86107b5
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
191 additions
and
181 deletions
+191
-181
js/morpheus-latest.min.js
js/morpheus-latest.min.js
+16
-16
src/matrix/dataset_util.js
src/matrix/dataset_util.js
+164
-164
src/tools/chart_tool2.js
src/tools/chart_tool2.js
+1
-0
src/ui/heat_map.js
src/ui/heat_map.js
+10
-1
No files found.
js/morpheus-latest.min.js
View file @
bc8c2428
This diff is collapsed.
Click to expand it.
src/matrix/dataset_util.js
View file @
bc8c2428
This diff is collapsed.
Click to expand it.
src/tools/chart_tool2.js
View file @
bc8c2428
...
@@ -228,6 +228,7 @@ morpheus.ChartTool2 = function (chartOptions) {
...
@@ -228,6 +228,7 @@ morpheus.ChartTool2 = function (chartOptions) {
morpheus
.
ChartTool2
.
getPlotlyDefaults
=
function
()
{
morpheus
.
ChartTool2
.
getPlotlyDefaults
=
function
()
{
var
layout
=
{
var
layout
=
{
hovermode
:
'
closest
'
,
autosize
:
false
,
autosize
:
false
,
paper_bgcolor
:
'
rgb(255,255,255)
'
,
paper_bgcolor
:
'
rgb(255,255,255)
'
,
plot_bgcolor
:
'
rgb(229,229,229)
'
,
plot_bgcolor
:
'
rgb(229,229,229)
'
,
...
...
src/ui/heat_map.js
View file @
bc8c2428
...
@@ -621,9 +621,14 @@ morpheus.HeatMap.showTool = function (tool, controller, callback) {
...
@@ -621,9 +621,14 @@ morpheus.HeatMap.showTool = function (tool, controller, callback) {
}
}
}
}
}
}
var
toolName
=
tool
.
toString
();
var
parenIndex
=
toolName
.
indexOf
(
'
(
'
);
if
(
parenIndex
!==
-
1
)
{
toolName
=
toolName
.
substring
(
0
,
parenIndex
).
trim
();
}
morpheus
.
Util
.
trackEvent
({
morpheus
.
Util
.
trackEvent
({
eventCategory
:
'
Tool
'
,
eventCategory
:
'
Tool
'
,
eventAction
:
tool
.
toString
()
eventAction
:
tool
Name
});
});
};
};
morpheus
.
HeatMap
.
getSpaces
=
function
(
groupByKeys
,
length
,
gapSize
)
{
morpheus
.
HeatMap
.
getSpaces
=
function
(
groupByKeys
,
length
,
gapSize
)
{
...
@@ -863,6 +868,10 @@ morpheus.HeatMap.prototype = {
...
@@ -863,6 +868,10 @@ morpheus.HeatMap.prototype = {
project
.
setRowSortKeys
(
sortKeys
,
true
);
project
.
setRowSortKeys
(
sortKeys
,
true
);
this
.
scrollTop
(
0
);
this
.
scrollTop
(
0
);
}
}
morpheus
.
Util
.
trackEvent
({
eventCategory
:
'
Tool
'
,
eventAction
:
isColumns
?
'
sortRowsBasedOnSelection
'
:
'
sortColumnsBasedOnSelection
'
});
},
},
getToolbarElement
:
function
()
{
getToolbarElement
:
function
()
{
...
...
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