igniteui-angular-charts
Version: 
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
40 lines (39 loc) • 1.22 kB
TypeScript
import { SeriesMatcher as SeriesMatcher_internal } from "./SeriesMatcher";
export declare class IgxSeriesMatcher {
    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);
    static ngAcceptInputType_index: number | string;
    /**
     * 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;
}