kibana-with-account
Version:
kibana-with-account is develop based kibana project
40 lines (34 loc) • 1.09 kB
JavaScript
define(function () {
return function ChartTitleSplitFactory() {
var d3 = require('d3');
/*
* Adds div DOM elements to either the `.y-axis-chart-title` element or the
* `.x-axis-chart-title` element based on the data layout.
* For example, if the data has rows, it returns the same number of
* `.chart-title` elements as row objects.
* if not data.rows or data.columns, return no chart titles
*/
return function (selection) {
selection.each(function (data) {
var div = d3.select(this);
if (!data.series) {
div.selectAll('.chart-title')
.append('div')
.data(function (d) {
return d.rows ? d.rows : d.columns;
})
.enter()
.append('div')
.attr('class', 'chart-title');
if (data.rows) {
d3.select('.x-axis-chart-title').remove();
} else {
d3.select('.y-axis-chart-title').remove();
}
return div;
}
return d3.select(this).remove();
});
};
};
});