UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

30 lines (29 loc) 1.37 kB
import { IgcChartSortDescription } from "./igc-chart-sort-description"; import { ChartSortDescriptionCollection as ChartSortDescriptionCollection_internal } from "./ChartSortDescriptionCollection"; /** * Represents a collection of sort elements that are applied to a data source or provider. */ export declare class IgcChartSortDescriptionCollection { protected createImplementation(): ChartSortDescriptionCollection_internal; protected _implementation: any; get i(): ChartSortDescriptionCollection_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; item(index: number, value?: IgcChartSortDescription): IgcChartSortDescription; get count(): number; toArray(): IgcChartSortDescription[]; [Symbol.iterator](): Generator<any, void, unknown>; /** * Gets or sets whether this collection should detach the sync when the target collection changes. */ get shouldDetachOnTargetChange(): boolean; set shouldDetachOnTargetChange(v: boolean); findByName(name: string): any; add(item: IgcChartSortDescription): boolean; insert(index: number, item: IgcChartSortDescription): void; clear(): void; indexOf(item: IgcChartSortDescription): number; remove(item: IgcChartSortDescription): boolean; removeAt(index: number): IgcChartSortDescription; }