-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathindex.js
More file actions
27 lines (23 loc) · 772 Bytes
/
index.js
File metadata and controls
27 lines (23 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use strict';
var deprecationWarning = [
'*pointcloud* trace is deprecated!',
'Please consider switching to the *scattergl* trace type.'
].join(' ');
module.exports = {
attributes: require('./attributes'),
supplyDefaults: require('./defaults'),
// reuse the Scatter3D 'dummy' calc step so that legends know what to do
calc: require('../scatter3d/calc'),
plot: require('./convert'),
moduleType: 'trace',
name: 'pointcloud',
basePlotModule: require('../../plots/gl2d'),
categories: ['gl', 'gl2d', 'showLegend'],
meta: {
description: [
deprecationWarning,
'The data visualized as a point cloud set in `x` and `y`',
'using the WebGl plotting engine.'
].join(' ')
}
};