Skip to content

Commit 76712ca

Browse files
Merge pull request #680 from plotly/ternary_sum
moving attr
2 parents b5e66db + 6184861 commit 76712ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/default_panels/GraphCreatePanel.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
SubplotCreator,
1010
TraceAccordion,
1111
TraceSelector,
12-
Numeric,
1312
TraceTypeSection,
1413
LocationSelector,
1514
} from '../components';
@@ -125,7 +124,6 @@ const GraphCreatePanel = (props, {localize: _}) => {
125124
<DataSelector label={_('Intensity')} attr="intensity" />
126125
<DataSelector label={_('Facecolor')} attr="facecolor" />
127126
<DataSelector label={_('Vertexcolor')} attr="vertexcolor" />
128-
<Numeric label={_('Sum')} step={10} attr="sum" />
129127
<Radio
130128
label={_('Transpose')}
131129
attr="transpose"

src/default_panels/GraphSubplotsPanel.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,10 @@ const GraphSubplotsPanel = (props, {localize: _}) => (
217217
<Numeric label={_('Longitude')} attr="projection.rotation.lat" min={0} />
218218
<Numeric label={_('Roll')} attr="projection.rotation.roll" min={0} />
219219
</PlotlySection>
220+
221+
<PlotlySection name={_('Ternary')}>
222+
<Numeric label={_('Sum')} attr="sum" />
223+
</PlotlySection>
220224
</SubplotAccordion>
221225
);
222226

0 commit comments

Comments
 (0)