File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ var deprecationWarning = [
4+ '*heatmapgl* trace is deprecated!' ,
5+ 'Please consider switching to the *heatmap* or *image* trace types.' ,
6+ 'Alternatively you could contribute/sponsor rewriting this trace type' ,
7+ 'based on cartesian features and using regl framework.'
8+ ] . join ( ' ' ) ;
9+
310module . exports = {
411 attributes : require ( './attributes' ) ,
512 supplyDefaults : require ( './defaults' ) ,
@@ -14,6 +21,7 @@ module.exports = {
1421 categories : [ 'gl' , 'gl2d' , '2dMap' ] ,
1522 meta : {
1623 description : [
24+ deprecationWarning ,
1725 'WebGL version of the heatmap trace type.'
1826 ] . join ( ' ' )
1927 }
Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ var deprecationWarning = [
4+ '*pointcloud* trace is deprecated!' ,
5+ 'Please consider switching to the *scattergl* trace type.'
6+ ] . join ( ' ' ) ;
7+
38module . exports = {
49 attributes : require ( './attributes' ) ,
510 supplyDefaults : require ( './defaults' ) ,
@@ -14,6 +19,7 @@ module.exports = {
1419 categories : [ 'gl' , 'gl2d' , 'showLegend' ] ,
1520 meta : {
1621 description : [
22+ deprecationWarning ,
1723 'The data visualized as a point cloud set in `x` and `y`' ,
1824 'using the WebGl plotting engine.'
1925 ] . join ( ' ' )
You can’t perform that action at this time.
0 commit comments