Angular Grid 仮想化とパフォーマンス
Ignite UI for Angular の IgxGrid コントロールは、igxForOf
ディレクティブを使用し、水平および垂直方向にコンテンツを仮想化します。
Angular Grid 仮想化とパフォーマンスの例
import { NgModule } from "@angular/core" ;
import { FormsModule } from "@angular/forms" ;
import { BrowserModule } from "@angular/platform-browser" ;
import { BrowserAnimationsModule } from "@angular/platform-browser/animations" ;
import { AppComponent } from "./app.component" ;
import { HttpClientModule } from "@angular/common/http" ;
import {
IgxAvatarModule,
IgxBadgeModule,
IgxButtonModule,
IgxGridModule,
IgxIconModule,
IgxInputGroupModule,
IgxProgressBarModule,
IgxRippleModule,
IgxSwitchModule
} from "igniteui-angular" ;
import { FinancialSampleComponent } from "./grid/grid-sample-2/grid-sample-2.component" ;
import { FinancialDataService } from "./services/financial.service" ;
import { IgxPreventDocumentScrollModule } from "./directives/prevent-scroll.directive" ;
@NgModule ({
bootstrap : [AppComponent],
declarations : [
AppComponent,
FinancialSampleComponent
],
imports : [
BrowserModule,
BrowserAnimationsModule,
FormsModule,
IgxPreventDocumentScrollModule,
IgxAvatarModule,
IgxBadgeModule,
IgxButtonModule,
IgxGridModule,
IgxIconModule,
IgxInputGroupModule,
IgxProgressBarModule,
IgxRippleModule,
IgxSwitchModule,
HttpClientModule
],
providers : [FinancialDataService],
entryComponents : [],
schemas : []
})
export class AppModule {}
ts コピー import { Component, Injectable, ViewChild, OnInit } from '@angular/core' ;
import { IgxGridComponent } from 'igniteui-angular' ;
import { Observable } from 'rxjs' ;
import { FinancialDataService } from '../../services/financial.service' ;
@Component ({
providers : [FinancialDataService],
selector : 'app-grid-sample' ,
styleUrls : ['./grid-sample-2.component.scss' ],
templateUrl : 'grid-sample-2.component.html'
})
export class FinancialSampleComponent {
@ViewChild ('grid1' , { static : true }) public grid1: IgxGridComponent;
public data: Observable<any []>;
constructor (private localService: FinancialDataService ) {
this .localService.getData(100000 );
this .data = this .localService.records;
}
public formatNumber (value: number ) {
return value.toFixed(2 );
}
public formatCurrency (value: number ) {
return '$' + value.toFixed(2 );
}
}
ts コピー <div class ="grid__wrapper" >
<igx-grid [igxPreventDocumentScroll ]="true" #grid1 [data ]="data | async" [height ]="'500px'" width ="100%" [autoGenerate ]='false' [allowFiltering ]="true" >
<igx-column [field ]="'Category'" [width ]="'120px'" > </igx-column >
<igx-column [field ]="'Type'" [width ]="'150px'" [filterable ]='false' > </igx-column >
<igx-column [field ]="'Open Price'" [width ]="'120px'" dataType ="number" [formatter ]="formatCurrency" >
</igx-column >
<igx-column [field ]="'Price'" [width ]="'120px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'Change'" [width ]="'120px'" dataType ="number" [headerClasses ]="'headerAlignSyle'" >
<ng-template igxHeader >
<span > Change</span >
</ng-template >
<ng-template igxCell let-val >
<div class ="currency-badge-container" >
<igx-badge *ngIf ="val>0" type ="success" position ="bottom-right" icon ="arrow_upward" class ="badge-left" > </igx-badge >
<igx-badge *ngIf ="val<0" type ="error" position ="bottom-right" icon ="arrow_downward" class ="error badge-left" > </igx-badge >
<span class ="cellAlignSyle" [class.up ]="val>0" [class.down ]="val<0" > {{ formatNumber(val) }}</span >
</div >
</ng-template >
</igx-column >
<igx-column [field ]="'Change(%)'" [width ]="'130px'" dataType ="number" [formatter ]="formatNumber" >
<ng-template igxHeader >
<span > Change(%)</span >
</ng-template >
<ng-template igxCell let-val >
<span class ="cellAlignSyle" [class.up ]="val>0" [class.down ]="val<0" > {{ formatNumber(val) }}%</span >
</ng-template >
</igx-column >
<igx-column [field ]="'Change On Year(%)'" [width ]="'150px'" dataType ="number" [formatter ]="formatNumber" >
<ng-template igxCell let-val >
<div class ="currency-badge-container" >
<igx-badge *ngIf ="val>0" type ="success" position ="bottom-right" icon ="arrow_upward" class ="badge-left" > </igx-badge >
<igx-badge *ngIf ="val<0" type ="error" position ="bottom-right" icon ="arrow_downward" class ="error badge-left" > </igx-badge >
<span class ="cellAlignSyle" [class.up ]="val>0" [class.down ]="val<0" > {{ formatNumber(val) }}%</span >
</div >
</ng-template >
</igx-column >
<igx-column [field ]="'Buy'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'Sell'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'Spread'" [width ]="'130px'" dataType ="number" [formatter ]="formatNumber" > </igx-column >
<igx-column [field ]="'Volume'" [width ]="'130px'" dataType ="number" [formatter ]="formatNumber" > </igx-column >
<igx-column [field ]="'High(D)'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'Low(D)'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'High(Y)'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'Low(Y)'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
<igx-column [field ]="'Start(Y)'" [width ]="'130px'" dataType ="number" [formatter ]="formatCurrency" > </igx-column >
</igx-grid >
<br />
</div >
html コピー .cellAlignSyle {
text-align : right;
float :right ;
}
.cellAlignSyle > span {
float :right ;
}
.up {
color : green;
}
.down {
color : red;
}
.headerAlignSyle {
text-align : right !important ;
}
.grid__wrapper {
margin : 0 auto;
padding : 16px ;
}
.currency-badge-container {
width : 80px ;
float : right;
}
.badge-left {
float : left;
}
scss コピー
このサンプルが気に入りましたか? 完全な Ignite UI for Angularツールキットにアクセスして、すばやく独自のアプリの作成を開始します。無料でダウンロードできます。
仮想化の有効化
igxForOf
ディレクティブは、ビューポートに表示されているデータのみを描画し、ユーザーがスクロール時に表示データを切り替えた際に @@ が DOM 描画およびメモリ使用を最適化します。IgxGrid の width
と height
は、デフォルトが 100%
で表示コンテンツが使用可能なスペースにフィットしない場合、水平または垂直のスクロールバーが必要になります。ただし、Grid の width
および/または height
を null
に設定することが可能で、関連するディメンションが内部の項目サイズの合計で決定されます。スクロールバーが表示されず、すべての項目が相対するディメンション (width
が null
値の場合は列で、height
が null
値の場合は行) に描画されます。
データのサイズは以下によって決定されます。
垂直 (行) 仮想化の行の高さ。rowHeight
オプションで決定されますがデフォルトは 50(px) です。
水平 (列) 仮想化の列幅 (ピクセル単位)。各列コンポーネントで明示的に幅を設定、または明示的に幅が設定されないすべての列に適用する Grid の columnWidth
オプションを設定できます。
ディメンションを設定せずにグリッドでデフォルト動作を適用する場合、ほとんどの場合は望ましいレイアウトになります。列幅は列カウント、幅が設定された列、および Grid コンテナーの計算幅に基づいて決定されます。グリッドは、割り当てる幅が 136px 未満になる以外はすべての列を利用可能なスペースに合わせようとします。その場合、割り当てられない幅を持つ列は 136px の最小幅に設定され、水平方向スクロールバーが表示されます。グリッドは水平方向に仮想化されます。
列幅をパーセンテージ (%) で明示的に設定する場合、ほとんどの場合に水平スクロールバーがない水平方向に仮想化されないグリッドを作成します。
リモート仮想化
Grid はリモート仮想化をサポートします。詳細については、Grid リモート データ操作
で説明されています。
仮想化の制限
Mac OS で「Show scrollbars only when scrolling」システム オプションを true (デフォルト値) に設定した場合、水平スクロールバーが表示されません。これは、Grid の行コンテナーで、overflow が hidden に設定されているためです。オプションを "Always" に変更するとスクロールが表示されます。
FAQ
仮想化で Grid でディメンションを設定する必要があるのはなぜですか?
描画する前にコンテナーおよび項目のサイズの情報がない場合に Grid でランダムな位置にスクロールすると、スクロールバーの幅や高さの設定、表示項目の決定で誤りが発生します。ディメンションの推測がスクロールバーの誤操作となり、ユーザー エクスペリエンスを低下させます。そのため、仮想化を有効にするには、関連ディメンションを設定する必要があります。
API リファレンス
その他のリソース
コミュニティに参加して新しいアイデアをご提案ください。