I'm using this code to send product and transaction details to GA Ecommerce.
ga('create', 'UA-xxxxxxxxx-1');
ga('require', 'ec');
let purchaseObj = {},
prodObj = {};
prodObj.id = 'P123';
prodObj.name = 'Product 1';
purchaseObj.id = '1234567';
purchaseObj.affiliation = 'My Store Website';
purchaseObj.revenue = '45.00';
purchaseObj.tax = '5.00';
ga('ec:addProduct', prodObj);
ga('ec:setAction', 'purchase', purchaseObj);
ga('send','pageview');
It successfully sent over to the GA. It can be found under Conversions > Ecommerce > Sales Performance
But in Product Performance tab, Product Revenue still shows 0.
Am I missing something here? Thanks!