Skip to content

Commit 43dade9

Browse files
change bounds
1 parent d319db1 commit 43dade9

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/default_panels/GraphSubplotsPanel.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,20 @@ const GraphSubplotsPanel = (props, {localize: _}) => (
223223
</PlotlySection>
224224

225225
<PlotlySection name={_('Polar Sector')}>
226-
<Numeric label={_('Min')} attr="sector[0]" max={360} min={0} showSlider />
227-
<Numeric label={_('Max')} attr="sector[1]" max={360} min={0} showSlider />
226+
<Numeric
227+
label={_('Min')}
228+
attr="sector[0]"
229+
max={360}
230+
min={-360}
231+
showSlider
232+
/>
233+
<Numeric
234+
label={_('Max')}
235+
attr="sector[1]"
236+
max={360}
237+
min={-360}
238+
showSlider
239+
/>
228240
</PlotlySection>
229241
</SubplotAccordion>
230242
);

0 commit comments

Comments
 (0)