constructor(data?: T[]): ObservableArray
ObservableArrayクラスの新しいインスタンスを初期化します。
Array containing items used to populate the ObservableArray.
deferUpdate(fn: Function): void
beginUpdate/endUpdateブロック内で関数を実行します。
この関数が終了するまでコレクションはリフレッシュされません。 このメソッドは、関数が例外を生成した場合でもendUpdate が呼び出されるようにします。
Function to be executed without updates.
getAxis(name: string): Axis
名前によって軸を取得します。
The name of the axis to look for.
implementsInterface(interfaceName: string): boolean
指定したインタフェースがサポートされている場合、trueを返します。
Name of the interface to look for.
indexOf(name: string): number
名前によって軸のインデックスを取得します。
The name of the axis to look for.
insert(index: number, item: T): void
配列内の指定した位置に項目を挿入します。
Position where the item will be added.
Item to add to the array.
onCollectionChanged(e?: NotifyCollectionChangedEventArgs): void
collectionChanged イベントを発生させます。
Contains a description of the change.
push(...items: T[]): number
配列の末尾に1つ以上の項目を追加します。
One or more items to add to the array.
remove(item: T): boolean
配列から項目を削除します。
Item to remove.
removeAt(index: number): void
配列内の指定した位置にある項目を削除します。
Position of the item to remove.
setAt(index: number, item: T): void
配列内の指定した位置にある項目を設定します。
Position where the item will be assigned.
Item to assign to the array.
slice(begin?: number, end?: number): T[]
配列の一部のシャローコピーを作成します。
Position where the copy starts.
Position where the copy ends.
sort(compareFn?: Function): this
配列の要素を適切な位置にソートします。
Specifies a function that defines the sort order. If specified, the function should take two arguments and should return -1, +1, or 0 to indicate the first argument is smaller, greater than, or equal to the second argument. If omitted, the array is sorted in dictionary order according to the string conversion of each element.
splice(index: number, count: number, ...item: T[]): T[]
配列からの項目の削除と配列への項目の追加の一方または両方を行います。
Position where items will be added or removed.
Number of items to remove from the array.
One or more items to add to the array.
unshift(...items: T[]): number
配列の先頭に1つ以上の要素を追加し、配列の新しい長さを返します。
One or more items to add to the array.
FlexChart コントロールのAxis オブジェクトのコレクションを表します。