Angular TileView - Overview
The TileView UI component contains a collection of tiles. Tiles can store much more information than ordinary buttons, that is why they are very popular in apps designed for touch devices.
The following code adds a primitive TileView to your page.
HTML
TypeScript
- <dx-tile-view
- [dataSource]="tileViewData">
- </dx-tile-view>
- import { DxTileViewModule } from "devextreme-angular";
- // ...
- export class AppComponent {
- tileViewData = [
- { text: "Alabama" },
- { text: "Alaska" },
- { text: "Arizona" },
- // ...
- ];
- }
- @NgModule({
- imports: [
- // ...
- DxTileViewModule
- ],
- // ...
- })
Note that field names in these data source items are conventional. This provides a default tile appearance, which can be customized later.
By default, the UI component is oriented horizontally, but you can orient it vertically using the direction property.
HTML
TypeScript
- <dx-tile-view ...
- direction="vertical">
- </dx-tile-view>
- import { DxTileViewModule } from "devextreme-angular";
- // ...
- export class AppComponent {
- // ...
- }
- @NgModule({
- imports: [
- // ...
- DxTileViewModule
- ],
- // ...
- })
See Also
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.