Display modes in Angular Speed dial component
27 Apr 20242 minutes to read
The action items in Angular Speed Dial can be displayed in Linear
and Radial
display modes by setting mode
property.
Linear display mode
In Linear
display mode, Speed Dial action items are displayed in a list-like format either horizontally or vertically. By default, Speed Dial items are displayed in Linear
mode.
Direction
You can open the action items on the top, left, up, and down side of the Speed Dial button by setting direction
property. The default value is Auto
where the action items are displayed based on the position
of the Speed Dial.
The Linear
directions of Speed Dial are as follows:
- Left - Action items are displayed on the left side of the button.
- Right - Action items are displayed on the right side of the button.
- Up - Action items are displayed on the top of the button.
- Down - Action items are displayed on the bottom of the button.
- Auto - Action items display direction auto calculated based on
position
of the Speed Dial. If Speed Dial is position at bottom right, then action items displayed at top.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { SpeedDialModule } from '@syncfusion/ej2-angular-buttons'
import { Component } from '@angular/core';
import { SpeedDialItemModel } from '@syncfusion/ej2-angular-buttons';
@Component({
imports: [
SpeedDialModule// Registering EJ2 SpeedDial Module.
],
standalone: true,
selector: 'app-root',
template: `<div id="targetElement" style="position:relative;min-height:350px;border:1px solid;"><div>
<!-- To Render SpeedDial component. -->
<button ejs-speeddial id="speeddial" openIconCss='e-icons e-edit' closeIconCss='e-icons e-close' target='#targetElement' [items]='items' mode= 'Linear' direction='Left'></button>`
})
export class AppComponent {
public items: SpeedDialItemModel[] = [
{ iconCss: 'e-icons e-cut' },
{ iconCss: 'e-icons e-copy' },
{ iconCss: 'e-icons e-paste' }
];
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
Radial display mode (Radial Menu)
In Radial
mode, Speed Dial action items are displayed in a circular pattern like a radial menu. For more details about radial mode, check out the link here.