@@ -66,7 +66,10 @@ class StyleAxesPanel extends Component {
66
66
< AxesFold
67
67
name = { _ ( 'Layout' ) }
68
68
axisFilter = { axis =>
69
- ! axis . _name . includes ( 'radial' ) && ! axis . _name . includes ( 'angular' )
69
+ ! (
70
+ axis . _subplot . includes ( 'polar' ) ||
71
+ axis . _subplot . includes ( 'ternary' )
72
+ )
70
73
}
71
74
>
72
75
< PlotlySection name = { _ ( 'Boundaries' ) } attr = "domain[0]" >
@@ -119,6 +122,15 @@ class StyleAxesPanel extends Component {
119
122
< AxesRange label = { _ ( 'Min' ) } attr = "range[0]" />
120
123
< AxesRange label = { _ ( 'Max' ) } attr = "range[1]" />
121
124
</ TraceTypeSection >
125
+ < PlotlySection name = { _ ( 'Zoom Interactivity' ) } attr = "fixedrange" >
126
+ < Radio
127
+ attr = "fixedrange"
128
+ options = { [
129
+ { label : _ ( 'Enable' ) , value : false } ,
130
+ { label : _ ( 'Disable' ) , value : true } ,
131
+ ] }
132
+ />
133
+ </ PlotlySection >
122
134
< Dropdown
123
135
label = { _ ( 'Direction' ) }
124
136
attr = "direction"
@@ -480,25 +492,13 @@ class StyleAxesPanel extends Component {
480
492
</ PlotlySection >
481
493
</ AxesFold >
482
494
483
- < AxesFold
484
- name = { _ ( 'Zoom Interactivity' ) }
485
- axisFilter = { axis =>
486
- ! axis . _name . includes ( 'angular' ) && ! axis . _name . includes ( 'radial' )
487
- }
488
- >
489
- < Radio
490
- attr = "fixedrange"
491
- options = { [
492
- { label : _ ( 'Enable' ) , value : false } ,
493
- { label : _ ( 'Disable' ) , value : true } ,
494
- ] }
495
- />
496
- </ AxesFold >
497
-
498
495
< AxesFold
499
496
name = { _ ( 'Hover Projections' ) }
500
497
axisFilter = { axis =>
501
- ! axis . _name . includes ( 'angular' ) && ! axis . _name . includes ( 'radial' )
498
+ ! (
499
+ axis . _subplot . includes ( 'ternary' ) ||
500
+ axis . _subplot . includes ( 'polar' )
501
+ )
502
502
}
503
503
>
504
504
< Radio
0 commit comments