Analytics: How to access and query custom data related to custom events?

Hi! I’m trying to use ion-track-tap and ion-track-data directives. Something like this example:

<button ion-track-tap="eventName" ion-track-data="some_data"></button>

Everything is ok and I can see “eventName” as an Event on my Analytics Dashboard (https://apps.ionic.io) but I’m unable to see “some_data” anywhere, not in “Events” tab nor in “Pulse” tab.

How can I access and query custom data related to custom events on Analytics Dashboard?

How did you solve it?

Using this code I was able to see details in “Pulse” tab, but not in “Events” tab:

ion-track-tap="menu" ion-track-data="{menu_type: 'some_data'}"