1. How using highlight, itemtap and iteminfo ?? 2. How do I check the version touch charts in my project?

-->Don't working this type:


interactions: [

// If all you want is to use the default interaction,

// simply put its name here.

'panzoom',

'itemhighlight',

{

type: 'iteminfo',

// For some interactions, you can specify the gesture

// to trigger it.

gesture: 'itemtaphold',

// You can also attach listeners to an interaction.

listeners: {

show: function (me, item, panel) {

panel.setHtml("Current Item: " + item.record.data.name);

}

}

}

]