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