mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Show value before label when splitting charts. Closes #4122
This commit is contained in:
parent
baba46b661
commit
7fff294644
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ define(function (require) {
|
|||
if (group) {
|
||||
table.aggConfig = agg;
|
||||
table.key = key;
|
||||
table.title = agg.makeLabel() + ': ' + (table.fieldFormatter()(key));
|
||||
table.title = (table.fieldFormatter()(key)) + ': ' + agg.makeLabel() ;
|
||||
}
|
||||
|
||||
// link the parent and child
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue