Marques Woodson

Results 3 comments of Marques Woodson

i believe for that data you'll need to use the `trackTimings` method. https://developers.google.com/analytics/devguides/collection/analyticsjs/user-timings I'm actually setting this up currently. I haven't been able to get the timing event to fire...

Thanks a lot for this example. I was just trying to figure out how to work with tracking events. With the ReactGA module we did: ```js ReactGA.event({ category: 'sales', action,...

I think this was fixed: ```ts export interface RangeWithKey extends Range { key: 'selection'; } export type OnChangeProps = Range | { selection: RangeWithKey } | Date; ```