@@ -30,6 +30,7 @@ function Ternary(options, fullLayout) {
30
30
this . graphDiv = options . graphDiv ;
31
31
this . init ( fullLayout ) ;
32
32
this . makeFramework ( fullLayout ) ;
33
+ this . updateFx ( fullLayout ) ;
33
34
34
35
// unfortunately, we have to keep track of some axis tick settings
35
36
// as ternary subplots do not implement the 'ticks' editType
@@ -67,7 +68,6 @@ proto.plot = function(ternaryCalcData, fullLayout) {
67
68
68
69
_this . updateLayers ( ternaryLayout ) ;
69
70
_this . adjustLayout ( ternaryLayout , graphSize ) ;
70
- _this . updateFx ( fullLayout . dragmode ) ;
71
71
Plots . generalUpdatePerTraceModule ( _this . graphDiv , _this , ternaryCalcData , ternaryLayout ) ;
72
72
_this . layers . plotbg . select ( 'path' ) . call ( Color . fill , ternaryLayout . bgcolor ) ;
73
73
} ;
@@ -98,10 +98,10 @@ proto.makeFramework = function(fullLayout) {
98
98
Drawing . setClipUrl ( _this . layers . grids , clipId , gd ) ;
99
99
} ;
100
100
101
- proto . updateFx = function ( dragmode ) {
102
- var toplevel = this . plotContainer . selectAll ( 'g.toplevel' ) ;
103
-
104
- toplevel . style ( 'cursor' , dragmode === 'pan' ? 'move' : 'crosshair' ) ;
101
+ proto . updateFx = function ( fullLayout ) {
102
+ fullLayout . _ternarylayer
103
+ . selectAll ( 'g.toplevel' )
104
+ . style ( 'cursor' , fullLayout . dragmode === 'pan' ? 'move' : 'crosshair' ) ;
105
105
} ;
106
106
107
107
proto . updateLayers = function ( ternaryLayout ) {
0 commit comments