Enum SpeedDialMode
Specifies how the speed dial action items (SpeedDialItems) are displayed for the SfSpeedDial component.
Namespace: Syncfusion.Blazor.Buttons
Assembly: Syncfusion.Blazor.dll
Syntax
public enum SpeedDialMode
Remarks
Determines whether the items use a linear or radial display mode. Use Linear for a vertical or horizontal list, or Radial for a circular menu configuration.
Examples
The following example shows how to use Linear mode:
<SfSpeedDial Mode="SpeedDialMode.Linear">
<SpeedDialItems>
<!-- Action items here -->
</SpeedDialItems>
</SfSpeedDial>
Fields
| Name | Description |
|---|---|
| Linear | Renders the speed dial items as a linear list either vertically or horizontally, based on the linear direction. |
| Radial | Renders the speed dial items in a radial (circular) layout, similar to a radial menu. |