Custom Tooltip in Pivot Chart

Can anyone please provide a snippet of a Pivot Chart where the onHover tooltip is customized?

Hello @zihad ,
You can attach onAfterLoad event for chart object $$("pivot").$$("chart") and provide a custom tooltip with the data taken from each chart item. And after you need to redefine series:

this.define({ series: ... some custom config ... });

Please take a look at the snippet:
https://snippet.webix.com/c64h9qnj

thanks