-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added caching for consistent color of values across visualization. Closes #485 #4429
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c1efcc7
Added caching for consistent color of values across visualization
gauravsinghania 3820832
Mapped colors for line and area graph type visualization
gauravsinghania 4782bd6
Assigning label to the element, thus avoiding need to get the data-la…
gauravsinghania c6a045a
Updating label in case of split charts for rows & columns
gauravsinghania File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/kibana/components/vislib/components/color/mapped_colors.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
define(function () { | ||
return function MappedColorFactory() { | ||
|
||
var _ = require('lodash'); | ||
/* | ||
* Maintains a lookup table that associates the value (key) with a hex color (value) | ||
* across the visualizations. | ||
* Provides functions to interact with the lookup table | ||
*/ | ||
|
||
var MappedColorService = function () { | ||
}; | ||
|
||
MappedColorService.colors = {}; | ||
/** | ||
* Allows to add value (key) and color (value) to the lookup table | ||
* | ||
* @method add | ||
* @param {String} key - the value in a visualization | ||
* @param {String} value - the color associated with the value | ||
*/ | ||
MappedColorService.prototype.add = function (key, value) { | ||
MappedColorService.colors[key] = value; | ||
}; | ||
|
||
/** | ||
* Provides the color (value) associated with the value (key) | ||
* | ||
* @method get | ||
* @param {String} key - the value for which color is required | ||
* @returns the color associated with the value | ||
*/ | ||
MappedColorService.prototype.get = function (key) { | ||
return MappedColorService.colors[key]; | ||
}; | ||
|
||
/** | ||
* Size of the mapped colors | ||
* | ||
* @method count | ||
* @returns the number of values (keys) stored in the lookup table | ||
*/ | ||
MappedColorService.prototype.count = function () { | ||
return _.keys(MappedColorService.colors).length; | ||
}; | ||
|
||
/** | ||
* All the colors of in the lookup table | ||
* | ||
* @method all | ||
* @returns all the colors used in the lookup table | ||
*/ | ||
MappedColorService.prototype.all = function () { | ||
return _.values(MappedColorService.colors); | ||
}; | ||
|
||
MappedColorService.prototype.reset = function () { | ||
MappedColorService.colors = {}; | ||
}; | ||
|
||
return MappedColorService; | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,10 @@ define(function (require) { | |
.append('rect') | ||
.call(this._addIdentifier) | ||
.attr('fill', function (d) { | ||
return color(d.label); | ||
var label = d.label ; | ||
if (!label) | ||
label = this.getAttribute('data-label'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Conditional statements on more than one line should include brackets. |
||
return color(label); | ||
}); | ||
|
||
self.updateBars(bars); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
conditional statements over two lines should include brackets:
{}
.For example: