Hi,
Is there a way to display all jqxChart tooltips? I do not want to hover the chart to see the tooltip. I would like them to be displayed all the time.
I tried method showtooltip
var chartInstance = $('#chartContainer').jqxChart('getInstance');
chartInstance.showToolTip(
0, /* first seriesGroup */
1, /* second serie */
0, /* x-th item */
100, /* 1s show delay, optional parameter */
100000000 /* 5s hide delay, optional parameter */
);
but it seems that this method can only display one tooltip at the moment.
Thank you