Skip to content

Commit 33264a9

Browse files
committed
add barpolar options to subplot panel
1 parent 2036d92 commit 33264a9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/default_panels/GraphSubplotsPanel.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ const GraphSubplotsPanel = (props, {localize: _}) => (
6060
<ColorPicker label={_('Plot Background')} attr="bgcolor" />
6161
</PlotlySection>
6262

63+
<PlotlySection name={_('Bar Options')}>
64+
<Radio
65+
label={_('Bar Mode')}
66+
attr="barmode"
67+
options={[{label: _('Stack'), value: 'stack'}, {label: _('Overlay'), value: 'overlay'}]}
68+
/>
69+
<NumericFraction label={_('Bar Padding')} attr="bargap" showSlider />
70+
</PlotlySection>
71+
6372
<PlotlySection name={_('Map Style')}>
6473
<Dropdown
6574
label={_('Mapbox Style')}

0 commit comments

Comments
 (0)