mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Pass chart.tooltipFormatter function to chart
This commit is contained in:
parent
1cb10faed0
commit
60f88dae8b
1 changed files with 7 additions and 0 deletions
|
@ -68,6 +68,13 @@ define(function (require) {
|
|||
};
|
||||
}
|
||||
|
||||
chart.tooltipFormatter = function (datapoint) {
|
||||
if (aggX.name === 'date_histogram') {
|
||||
return moment(datapoint.x).format();
|
||||
}
|
||||
return datapoint.x;
|
||||
};
|
||||
|
||||
// Y-axis description
|
||||
chart.yAxisLabel = colY.label;
|
||||
if (colY.field) chart.yAxisFormatter = colY.field.format.convert;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue