package.src.traces.scatter3d.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 = {
plot: require('./convert'),
attributes: require('./attributes'),
markerSymbols: require('../../constants/gl3d_markers'),
supplyDefaults: require('./defaults'),
colorbar: [
{
container: 'marker',
min: 'cmin',
max: 'cmax'
}, {
container: 'line',
min: 'cmin',
max: 'cmax'
}
],
calc: require('./calc'),
moduleType: 'trace',
name: 'scatter3d',
basePlotModule: require('../../plots/gl3d'),
categories: ['gl3d', 'symbols', 'showLegend', 'scatter-like'],
meta: {
hrName: 'scatter_3d',
description: [
'The data visualized as scatter point or lines in 3D dimension',
'is set in `x`, `y`, `z`.',
'Text (appearing either on the chart or on hover only) is via `text`.',
'Bubble charts are achieved by setting `marker.size` and/or `marker.color`',
'Projections are achieved via `projection`.',
'Surface fills are achieved via `surfaceaxis`.'
].join(' ')
}
};