UNPKG

igniteui-webcomponents-charts

Version:

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

31 lines (30 loc) 1.3 kB
import { IgcSeriesComponent } from "./igc-series-component"; import { IgcSeriesMatcher } from "./igc-series-matcher"; import { ChartSelection as ChartSelection_internal } from "./ChartSelection"; /** * Represents a selected item within the chart. This should be treated as immutable while in the selected items collection. Changes while part of the collection will not be respected. */ export declare class IgcChartSelection { protected createImplementation(): ChartSelection_internal; protected _implementation: any; /** * @hidden */ get i(): ChartSelection_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; get item(): any; set item(v: any); get series(): IgcSeriesComponent; set series(v: IgcSeriesComponent); /** * If set, allows for selecting a series based on a matcher. This should resolve to a single static series at the time that the chart selection is added to selected items. * It will not be re-evaluated while the ChartSelection is in the selected items. */ get matcher(): IgcSeriesMatcher; set matcher(v: IgcSeriesMatcher); findByName(name: string): any; equals(other: any): boolean; getHashCode(): number; }