File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3729,6 +3729,9 @@ function makePlotFramework(gd) {
3729
3729
// single polar layer for the whole plot
3730
3730
fullLayout . _polarlayer = fullLayout . _paper . append ( 'g' ) . classed ( 'polarlayer' , true ) ;
3731
3731
3732
+ // single smith layer for the whole plot
3733
+ fullLayout . _smithlayer = fullLayout . _paper . append ( 'g' ) . classed ( 'smithlayer' , true ) ;
3734
+
3732
3735
// single ternary layer for the whole plot
3733
3736
fullLayout . _ternarylayer = fullLayout . _paper . append ( 'g' ) . classed ( 'ternarylayer' , true ) ;
3734
3737
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ function Smith(gd, id) {
54
54
. attr ( 'id' , this . clipIds . forTraces ) ;
55
55
this . clipPaths . forTraces . append ( 'path' ) ;
56
56
57
- this . framework = fullLayout . _polarlayer . append ( 'g' )
57
+ this . framework = fullLayout . _smithlayer . append ( 'g' )
58
58
. attr ( 'class' , id ) ;
59
59
60
60
// unfortunately, we have to keep track of some axis tick settings
You can’t perform that action at this time.
0 commit comments