'How to send event value on Google Analytics?

I can check category, action, and label on Google Analytics.

However, I can't seem to check the value so I am assuming the event value is not sent.

ga('create', 'UA-XXXXXXXX-X', 'auto');
ga('send', {
    hitType: 'event',
    eventCategory: 'ad',
    eventAction: 'duration',
    eventLabel: 'ad label',
    eventValue: 20
});

Let me know if I am doing things wrong or any solution. Thanks!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source