menu

MAUI

  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class SunburstSelectionDisplayMode - MAUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Class SunburstSelectionDisplayMode

    Specifies how selected segments are visually highlighted in the sunburst chart.

    Inheritance
    System.Object
    SunburstSelectionDisplayMode
    Namespace: Syncfusion.Maui.SunburstChart
    Assembly: Syncfusion.Maui.SunburstChart.dll
    Syntax
    public sealed class SunburstSelectionDisplayMode : Enum
    Remarks

    Enum Values:

    • HighlightByBrush (1): Highlights selected segments by changing their fill color using the Fill property.
    • HighlightByOpacity (2): Highlights selected segments by adjusting their opacity using the Opacity property.
    • HighlightByStroke (4): Highlights selected segments by modifying their stroke color and width using the Stroke and StrokeWidth properties.

    Usage Example:

    // Apply multiple display modes using bitwise OR
    sunburstChart.SelectionSettings.DisplayMode = SunburstSelectionDisplayMode.HighlightByBrush | SunburstSelectionDisplayMode.HighlightByStroke;

    Fields

    HighlightByBrush

    Highlights selected segments by changing their fill color.

    Declaration
    public const SunburstSelectionDisplayMode HighlightByBrush
    Field Value
    Type
    SunburstSelectionDisplayMode

    HighlightByOpacity

    Highlights selected segments by changing their opacity.

    Declaration
    public const SunburstSelectionDisplayMode HighlightByOpacity
    Field Value
    Type
    SunburstSelectionDisplayMode

    HighlightByStroke

    Highlights selected segments by changing their stroke color and width.

    Declaration
    public const SunburstSelectionDisplayMode HighlightByStroke
    Field Value
    Type
    SunburstSelectionDisplayMode
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved