AnyChart Treemap with context menu – make data node accessible to action handler

I have an AnyChart Treemap. Its nodes contain (besides their natural value) also additional attribute. I want to show (ultimately perform action upon) the value of that attribute on click on rectangle.

Example: assume tree map with data of population of countries where additional attribute contains URL shortcut to map of state or continent:

var dataSet = [
  {name: "Europe", url: "https://maps.google.com/europemap", children: [
    {name: "Czechia", value: 10600000, url: "https://maps.google.com/czechiamap"},
    ...
  ]}
];

Since clicking on rectangle is currently reserved to drilling down to deeper level, I started experimenting with context menu with custom action, which would suffice my needs. The example of context menu shows how to implement action handler to serve click on menu item. Unfortunately I cannot figure out how to see the corresponding data set node from within the body of action handler.

I tried to inspect the this object in action handler which seems to be an uncomprehensible internals of minified library or may be parts of generated SVG.

Is there any way to identify data the concrete rectangle has been built from? (I suspect the original data set is completely lost after SVG has been generated – if I am right, some advice how to append dataset to generated SVG as a metadata would be helpful too.)