UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

67 lines (59 loc) 1.73 kB
var alter = require('../lib/alter.js'); var Chainable = require('../lib/classes/chainable'); module.exports = new Chainable('yaxis', { args: [ { name: 'inputSeries', types: ['seriesList'] }, { name: 'yaxis', types: ['number', 'null'], help: 'The numbered y-axis to plot this series on, eg .yaxis(2) for a 2nd y-axis.' }, { name: 'min', types: ['number', 'null'], help: 'Min value' }, { name: 'max', types: ['number', 'null'], help: 'Max value' }, { name: 'position', types: ['string', 'null'], help: 'left or right' }, { name: 'label', types: ['string', 'null'], help: 'Label for axis' }, { name: 'color', types: ['string', 'null'], help: 'Color of axis label' }, ], help: 'Configures a variety of y-axis options, the most important likely being the ability to add an Nth (eg 2nd) y-axis', fn: function yaxisFn(args) { return alter(args, function (eachSeries, yaxis, min, max, position, label, color) { yaxis = yaxis || 1; eachSeries.yaxis = yaxis; eachSeries._global = eachSeries._global || {}; eachSeries._global.yaxes = eachSeries._global.yaxes || []; eachSeries._global.yaxes[yaxis - 1] = eachSeries._global.yaxes[yaxis - 1] || {}; var myAxis = eachSeries._global.yaxes[yaxis - 1]; myAxis.position = position || (yaxis % 2 ? 'left' : 'right'); myAxis.min = min; myAxis.max = max; myAxis.axisLabelFontSizePixels = 11; myAxis.axisLabel = label; myAxis.axisLabelColour = color; myAxis.axisLabelUseCanvas = true; return eachSeries; }); } });