I am using Sencha touch donut chart. Now I am looking for tooltip display in donut charts sections. After I searched on internet, i found that there is no tooltip library in sencha touch charts like we do have in EXTJS.
please let me know if we can use EXTJS tooltip code into sencha touch charts, if not then please help me with some links, examples for sencha touch charts tooltips.
i am using this code in my sencha touch donut chart JS but this is not working:
var tip = Ext.create('Ext.tip.ToolTip', {
target: 'donut-chart',
html: '<font size="2" color="white"><span style="padding-left:2px"><B>Electronics $15.3m</B></span> <br><br> <span style="padding-left:2px">%Total 13%</span></font>',
width: 150,
height: 6,
Border: 'false',
bodyStyle: 'background-color: teal;',
style: 'background-color: white;opacity: 0.5;'
});
tip.showAt(200, 100);
please help...
Thanks!