Hello flex team,
as i mentiond for title situation how to access options menu values mean https://imgur.com/a/DyGzz0b
this, i tried but which one is right options i didnt know
Hello, Bilguun,
Thank you for writing to us.
These options can be set in the options object in your report configuration, for example:
var pivot = new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
toolbar: true,
report: {
dataSource: {
type: "json",
data: getData()
},
options: {
grid: {
type: "compact",
showTotals: "on",
showGrandTotals: "on"
}
}
}
});
We have prepared a JSFiddle example for illustration: https://jsfiddle.net/flexmonster/wyjdfto9/
Also, here is how to achieve each of the options provided in the "Options" Tab through the report configuration:
showTotals: "off"
,
showTotals: "on"
,
showTotals: "rows"
,
showTotals: "columns"
showGrandTotals: "off"
showGrandTotals: "on"
showGrandTotals: "rows"
showGrandTotals: "columns"
type: "compact"
type: "classic"
type: "flat"
Please let us know if this helps.
Looking forward to your reply.
Kind regards,
Vera
Thank you Vera