File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -438,16 +438,19 @@ plots.sendDataToCloud = function(gd) {
438
438
// Fill in default values:
439
439
//
440
440
// gd.data, gd.layout:
441
- // are precisely what the user specified
441
+ // are precisely what the user specified,
442
+ // these fields shouldn't be modified nor used directly
443
+ // after the supply defaults step.
442
444
//
443
445
// gd._fullData, gd._fullLayout:
444
- // are complete descriptions of how to draw the plot
446
+ // are complete descriptions of how to draw the plot,
447
+ // use these fields in all required computations.
445
448
//
446
449
// gd._fullLayout._modules
447
- // is a list of all the trace modules required to draw the plot
450
+ // is a list of all the trace modules required to draw the plot.
448
451
//
449
452
// gd._fullLayout._basePlotModules
450
- // is a list of all the plot modules required to draw the plot
453
+ // is a list of all the plot modules required to draw the plot.
451
454
//
452
455
plots . supplyDefaults = function ( gd ) {
453
456
var oldFullLayout = gd . _fullLayout || { } ,
You can’t perform that action at this time.
0 commit comments