Reports API Events
click:progress
Fires when the user clicks on the "Progress" field in the Progress by Tag by User or Event Progress by Tag by User report.
You would want to be notified about this event firing to take some action when the user clicks on the "Progress" field or retrieve the related contextual information such as the user ID, Tag type, and Tag name, for example.
Examples
reportsApp.getReport('my-report-id')
.on('click:progress', function (userID, tagType, tagName) {
console.log('This code executes when the user clicks on the "Progress" field.');
console.log(activityID);
});
Callback arguments
-
userID string
The ID of the associated user.
-
tagType string
The associated Tag type.
-
tagName string
The associated Tag name.