Please refer this fiddle,
https://jsfiddle.net/sohansoni/hc5o2asm/1/
Here I see Delta, Zactive and Zrefresh columns on the pivot but with no values whereas it has values. Now if you select those columns from fields, then you see values on the pivot.
Now remove the selection of those fields , you will again see those columns on the pivot but with no values. I am sure I am doing something wrong here but not sure what ?
Hello Sohan,
Thank you for writing. It seems that it is the side effect of using grandTotalsPosition
property. The necessary fix will be added to the version 2.409 ETA Dec04.
Please let us know if it works for you.
Regards,
Dmytro.
Sure
Hello Sohan,
We are glad to inform you that the issue with using grandTotalsPosition
property was fixed in the latest 2.409 version. You are welcome to update the component. Please note that the property was moved to "grid" object. Now it looks the following way:
options: {
grid: {
"grandTotalsPosition": "bottom"
}
}
or you can set it like this options.grid.grandTotalsPosition= "bottom"
;
Please let us know if everything works fine for you.
Regards,
Dmytro.
This works, thanks !