Skip to content Skip to sidebar Skip to footer

Having Trouble With Getfilteredrows Using Google Chart Api Dashboard

I'm putting together a dashboard and trying to do something that should be straight-forward. There will be Control Filters to operate at the dashboard level, but I also need to sp

Solution 1:

Couple of small changes: * No need for 'calc' as it is used for creating new calculated columns. * the format of the function requires array even for a single value.

 'view': {'columns': [0, 3], 
         'rows' : data.getFilteredRows([{column: 2, minValue: 20}])} 

Post a Comment for "Having Trouble With Getfilteredrows Using Google Chart Api Dashboard"