UNPKG

plotly.js

Version:

The open source javascript graphing library that powers plotly

51 lines (48 loc) 1.4 kB
/** * Copyright 2012-2020, Plotly, Inc. * All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; module.exports = { waterfallmode: { valType: 'enumerated', values: ['group', 'overlay'], dflt: 'group', role: 'info', editType: 'calc', description: [ 'Determines how bars at the same location coordinate', 'are displayed on the graph.', '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 an *opacity* to see multiple bars.' ].join(' ') }, waterfallgap: { valType: 'number', min: 0, max: 1, role: 'style', editType: 'calc', description: [ 'Sets the gap (in plot fraction) between bars of', 'adjacent location coordinates.' ].join(' ') }, waterfallgroupgap: { valType: 'number', min: 0, max: 1, dflt: 0, role: 'style', editType: 'calc', description: [ 'Sets the gap (in plot fraction) between bars of', 'the same location coordinate.' ].join(' ') } };