This topic contains 3 replies, has 2 voices, and was last updated by Hristo 9 years ago.
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.
jQuery UI Widgets › Forums › Chart › Jqx Chart Tooltip
Tagged: chart, javascript chart, jquery chart, jqwidgets chart
This topic contains 3 replies, has 2 voices, and was last updated by Hristo 9 years ago.
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
Hello atomic,
It shows only one tooltip, those are optional parameters to set the tooltip on a concrete position.
Please, take a look at this example:
https://www.jseditor.io/?key=chart-with-showed-tooltip
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com
Yes I am aware of this feature, but question is can I show all tool-tips of the chart without hovering series?
It would be something as labels for all series and elements of, for example stacked-column chart…
thanks
Hello atomic,
Thank you for the interest.
This is only what you can achieve with the Chart features.
As an alternative, I could suggest you something that you could try to set a custom tooltip on different series – jqxTooltip.
You could try to get all series and over the element that they represent to set a Tooltip.
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com
You must be logged in to reply to this topic.