<<Properties,Properties>>
This topic provides information about the item tooltip layer which is used for hover interactions in the Category Series. It describes the properties of the item tooltip layer and also provides an example of its implementation.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
The ItemToolTipLayer displays tooltips for all the series on the UltraDataChart control individually when a pointer that particular series.
The tooltip style is inherited from the chart.
<<Properties,Properties>>
The following image is a preview of the UltraDataChart control renders with the ItemToolTipLayer added.
The following table summarizes the properties of the ItemToolTipLayer layer.
The following screenshot demonstrates how the UltraDataChart control with the TargetSeries property of the ItemToolTipLayer object looks as a result of the following setting:
Following is the code used in this implementation
In C#:
var itemToolTipLayerSeries = new ItemToolTipLayer(); itemToolTipLayerSeries.TargetSeries = series1; chart.Series.Add(itemToolTipLayerSeries);