Tooltip Types
This topic provides conceptual information about the tooltip types available on the Ignite UI for Angular category chart component.
Demo
Tooltip Types
The category chart component can be configured to display Tooltips in the following ways:
Defaulttooltips will display a tooltip for a single item when the pointer is positioned over it.Itemtooltips will display a tooltip for each data item in the category that the pointer is positioned over.Categorytooltips will display a grouped tooltip for all data points in the category that the pointer is positioned over.Nonewill prevent tooltips from displaying.
<igx-category-chart
[dataSource]="data"
toolTipType="Category">
</igx-category-chart>