igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
39 lines (38 loc) • 1.16 kB
TypeScript
import { SeriesMatcher as SeriesMatcher_internal } from "./SeriesMatcher";
export declare class IgcSeriesMatcher {
protected createImplementation(): SeriesMatcher_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): SeriesMatcher_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* If set, tries to match a series based on its name.
*/
get name(): string;
set name(v: string);
/**
* If set, tries to match a series based on its title.
*/
get title(): string;
set title(v: string);
/**
* If set, tries to match a series based on index
*/
get index(): number;
set index(v: number);
/**
* Combined with MemberPath allows you to select a series by member path.
*/
get memberPathType(): string;
set memberPathType(v: string);
/**
* If set, tries to match a series based on a member path, combined with MemberPathType.
*/
get memberPath(): string;
set memberPath(v: string);
findByName(name: string): any;
}