Stephen Lomnes
Stephen Lomnes
The most confusing thing for me about the errors generated when 'gak' has bad values in it is that the error message reports that the issue is with the data....
@lavigne958 Here is a helper class that helps you define a pivot table using the google sheets API in conjunction with gspread. It likely is not complete and tested fully...
I ran into this issue as well. Thanks for reporting this bug. I found that the issue arises from nan values being generated in the kernel 'gak' but the error...
@mc-its-sorted It looks like the correct implementation is: ```python # Remove the groupIncludeFooter parameter from the configure_column method gb.configure_column(field='profit', sort='asc', aggFunc='sum') # Instead use the configure_grid_options method to include the...
Ag-grid 31.3.0 changed how total rows are handled here: https://ag-grid.com/archive/31.3.0/javascript-data-grid/grouping-footers/ likely the new way to do this is: ```python gb.configure_grid_options(groupTotalRow='bottom', grandTotalRow ='bottom') ```