diff --git a/src/default_panels/StyleAxesPanel.js b/src/default_panels/StyleAxesPanel.js
index 55ed7e700..6fc15b038 100644
--- a/src/default_panels/StyleAxesPanel.js
+++ b/src/default_panels/StyleAxesPanel.js
@@ -66,7 +66,10 @@ class StyleAxesPanel extends Component {
- !axis._name.includes('radial') && !axis._name.includes('angular')
+ !(
+ axis._subplot.includes('polar') ||
+ axis._subplot.includes('ternary')
+ )
}
>
@@ -119,6 +122,15 @@ class StyleAxesPanel extends Component {
+
+
+
-
- !axis._name.includes('angular') && !axis._name.includes('radial')
- }
- >
-
-
-
- !axis._name.includes('angular') && !axis._name.includes('radial')
+ !(
+ axis._subplot.includes('ternary') ||
+ axis._subplot.includes('polar')
+ )
}
>