plotly.js
Version:
The open source javascript graphing library that powers plotly
41 lines (39 loc) • 1.22 kB
JavaScript
module.exports = {
funnelmode: {
valType: 'enumerated',
values: ['stack', 'group', 'overlay'],
dflt: 'stack',
editType: 'calc',
description: [
'Determines how bars at the same location coordinate',
'are displayed on the graph.',
'With *stack*, the bars are stacked on top of one another',
'With *group*, the bars are plotted next to one another',
'centered around the shared location.',
'With *overlay*, the bars are plotted over one another,',
'you might need to reduce *opacity* to see multiple bars.'
].join(' ')
},
funnelgap: {
valType: 'number',
min: 0,
max: 1,
editType: 'calc',
description: [
'Sets the gap (in plot fraction) between bars of',
'adjacent location coordinates.'
].join(' ')
},
funnelgroupgap: {
valType: 'number',
min: 0,
max: 1,
dflt: 0,
editType: 'calc',
description: [
'Sets the gap (in plot fraction) between bars of',
'the same location coordinate.'
].join(' ')
}
};
;