Selection Indicator Strip

17 Jan 20251 minute to read

The selection indicator strip can be used to indicate the selected index of the tab view control. This can be customized with the built-in APIs that are available in the SelectionIndicatorSettings of SfTabView.

The selection indicator can be positioned below the title or above the title, or else it can be filled to the entire selected header space.

var selectionIndicatorSettings = new SelectionIndicatorSettings();
		selectionIndicatorSettings.Color = Color.Yellow;
		selectionIndicatorSettings.Position = SelectionIndicatorPosition.Top;
		selectionIndicatorSettings.StrokeThickness = 10;

		tabView.SelectionIndicatorSettings = selectionIndicatorSettings;

NOTE

Stroke thickness will not applicable when the selection indicator’s position is set to “Fill”.