mirror of
https://github.com/apache/superset.git
synced 2026-04-20 00:24:38 +00:00
feat: Adds options to show subtotals in Pivot Table (#24960)
This commit is contained in:
committed by
GitHub
parent
a44c99899a
commit
be11556799
@@ -92,14 +92,14 @@ export class TableRenderer extends React.Component {
|
||||
|
||||
const colSubtotalDisplay = {
|
||||
displayOnTop: false,
|
||||
enabled: rowTotals,
|
||||
enabled: tableOptions.colSubTotals,
|
||||
hideOnExpand: false,
|
||||
...subtotalOptions.colSubtotalDisplay,
|
||||
};
|
||||
|
||||
const rowSubtotalDisplay = {
|
||||
displayOnTop: false,
|
||||
enabled: colTotals,
|
||||
enabled: tableOptions.rowSubTotals,
|
||||
hideOnExpand: false,
|
||||
...subtotalOptions.rowSubtotalDisplay,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user