Sub Total Hiding
22 May 2017 / 1 minute to read
NOTE
This feature is applicable only for Relational data source.
You can hide the Sub Total for respective fields in rows and columns by setting the property showSubTotal
to false
<script type="text/babel">
//..
var pivotdataSource = {
data: pivot_dataset,
rows: [{ fieldName: "Country", fieldCaption: "Country", showSubTotal: false },{ fieldName: "State", fieldCaption: "State" }],
columns: [{ fieldName: "Product", fieldCaption: "Product" }],
values: [{ fieldName: "Amount", fieldCaption: "Amount" },{ fieldName: "Quantity", fieldCaption: "Quantity" }],
filters: []
};
//..
</script>
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page