DevExtreme Angular - Overview

The Accordion widget contains several panels displayed one under another. These panels can be collapsed or expanded by an end user, which makes this widget very useful for presenting information in a limited amount of space.

View Demo Watch Video

The following code adds a simple Accordion to your page. Note that each data source object contains the title field, whose value goes to the title of the panel.

HTML
TypeScript
  • <dx-accordion
  • [dataSource]="accordionData"
  • itemTemplate="item">
  • <div *dxTemplate="let itemData of 'item'">
  • <p *ngFor="let key of getItemKeys(itemData)">
  • {{key}}: {{itemData[key]}}
  • </p>
  • </div>
  • </dx-accordion>
  • import { DxAccordionModule } from 'devextreme-angular';
  • // ...
  • export class AppComponent {
  • accordionData = [{
  • title: "Personal Data",
  • firstName: "John",
  • lastName: "Smith",
  • birthYear: 1986
  • }, {
  • title: "Contacts",
  • phone: "(555)555-5555",
  • email: "John.Smith@example.com"
  • }, {
  • title: "Address",
  • state: "CA",
  • city: "San Francisco",
  • street: "Stanford Ave"
  • }];
  • getItemKeys (item) {
  • return Object.keys(item);
  • }
  • }
  • @NgModule({
  • imports: [
  • // ...
  • DxAccordionModule
  • ],
  • // ...
  • })
See Also