package.src.traces.parcoords.base_index.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plotly.js Show documentation
Show all versions of plotly.js Show documentation
The open source javascript graphing library that powers plotly
The newest version!
'use strict';
module.exports = {
attributes: require('./attributes'),
supplyDefaults: require('./defaults'),
calc: require('./calc'),
colorbar: {
container: 'line',
min: 'cmin',
max: 'cmax'
},
moduleType: 'trace',
name: 'parcoords',
basePlotModule: require('./base_plot'),
categories: ['gl', 'regl', 'noOpacity', 'noHover'],
meta: {
description: [
'Parallel coordinates for multidimensional exploratory data analysis.',
'The samples are specified in `dimensions`.',
'The colors are set in `line.color`.'
].join(' ')
}
};