Skip to content

Commit

Permalink
chore(plugin-chart-pivot-table): swap order of Columns and Rows contr…
Browse files Browse the repository at this point in the history
…ols (apache#17798)
  • Loading branch information
kgabryje authored and shcoderAlex committed Feb 7, 2022
1 parent 729b24e commit 64235d6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ const config: ControlPanelConfig = {
controlSetRows: [
[
{
name: 'groupbyRows',
name: 'groupbyColumns',
config: {
...sharedControls.groupby,
label: t('Rows'),
description: t('Columns to group by on the rows'),
label: t('Columns'),
description: t('Columns to group by on the columns'),
},
},
],
[
{
name: 'groupbyColumns',
name: 'groupbyRows',
config: {
...sharedControls.groupby,
label: t('Columns'),
description: t('Columns to group by on the columns'),
label: t('Rows'),
description: t('Columns to group by on the rows'),
},
},
],
Expand Down

0 comments on commit 64235d6

Please sign in to comment.