Pivot.js Hyperlink

Is it possible to add an onclick event or hyperlink to the structure row value?

You can get the table in the pivot like

var table = $$(“pivot”).$$(“data”);

This table is instance of webix.ui.datatable, so you can use all related API and events, including onItemClick event
http://docs.webix.com/api__link__ui.datatable_onitemclick_event.html

I have much to learn about webix. Thank you for pointing me to some docs.