igniteui-react-core
Version:
Ignite UI React Core.
23 lines (22 loc) • 606 B
TypeScript
import { ILegendOwner } from "./ILegendOwner";
import { Type } from "./type";
/**
* @hidden
*/
export interface ILegendSeries {
readonly container: ILegendOwner;
resolveLegendIndex(): number;
readonly isStacked: boolean;
readonly isVertical: boolean;
readonly isUsableInLegend: boolean;
readonly name: string;
readonly isFragment: boolean;
readonly hasSubItems: boolean;
forSubItems(a: (arg1: any) => void): void;
readonly hasMarkers: boolean;
readonly isLayer: boolean;
}
/**
* @hidden
*/
export declare let ILegendSeries_$type: Type;