The Item ToolTip Layer displays tooltips for each item in the category where your pointer is hovering in the igCategoryChart.
The Item ToolTip Layer is enabled by setting the toolTipType
option to "item".
The code snippet below demonstrates how to enable the Item ToolTip Layer for the igCategoryChart
.
In HTML:
$(function () {
$("chart1").igCategoryChart({
toolTipType: "item"
});
});
The following screenshot displays the igCategoryChart control using the Item ToolTip Layer.
View on GitHub