Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/default_panels/GraphSubplotsPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,23 @@ const GraphSubplotsPanel = (props, {localize: _}) => (
<PlotlySection name={_('Ternary')}>
<Numeric label={_('Sum')} attr="sum" />
</PlotlySection>

<PlotlySection name={_('Polar Sector')}>
<Numeric
label={_('Min')}
attr="sector[0]"
max={360}
min={-360}
showSlider
/>
<Numeric
label={_('Max')}
attr="sector[1]"
max={360}
min={-360}
showSlider
/>
</PlotlySection>
</SubplotAccordion>
);

Expand Down
1 change: 1 addition & 0 deletions src/default_panels/StyleAxesPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ class StyleAxesPanel extends Component {
/>
<AxesRange label={_('Min')} attr="range[0]" />
<AxesRange label={_('Max')} attr="range[1]" />
<Numeric label={_('Min')} attr="min" />
</PlotlySection>
<PlotlySection name={_('Zoom Interactivity')} attr="fixedrange">
<Radio
Expand Down