Skip to content

Commit d847a50

Browse files
Merge branch 'master' into marker-size-multivalue
2 parents 97f84c7 + 5f283d8 commit d847a50

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"fast-isnumeric": "^1.1.1",
1616
"immutability-helper": "^2.6.4",
1717
"plotly-icons": "latest",
18-
"plotly.js": "1.39.1",
18+
"plotly.js": "1.39.2",
1919
"prop-types": "^15.5.10",
2020
"raf": "^3.4.0",
2121
"react-color": "^2.13.8",

src/components/containers/TransformAccordion.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class TransformAccordion extends Component {
2323
{label: _('Filter'), type: 'filter'},
2424
{label: _('Split'), type: 'groupby'},
2525
{label: _('Aggregate'), type: 'aggregate'},
26+
{label: _('Sort'), type: 'sort'},
2627
];
2728

2829
const transformableCharts = [

src/default_panels/GraphTransformsPanel.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,14 @@ const GraphTransformsPanel = (props, {localize: _}) => {
8080
<FilterOperation label={_('Operator')} attr="operation" />
8181
<FilterValue label={_('Value')} attr="value" />
8282

83+
<Radio
84+
attr="order"
85+
options={[
86+
{label: _('Ascending'), value: 'ascending'},
87+
{label: _('Descending'), value: 'descending'},
88+
]}
89+
/>
90+
8391
<PlotlySection name={_('Aggregations')} attr="aggregations">
8492
<Aggregations />
8593
</PlotlySection>

0 commit comments

Comments
 (0)