UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

24 lines (23 loc) 766 B
import { Type } from "./type"; import { LegendItemBadgeShape } from "./LegendItemBadgeShape"; import { DataTemplate } from "./DataTemplate"; /** * @hidden */ export interface IDataLegendSeries { readonly index: number; readonly title: any; readonly dataLegendKey: string; legendItemBadgeShape: LegendItemBadgeShape; getDataLegendBadge(): DataTemplate; getDataLegendBadgeContext(): any; getDataLegendBadgeShapeAndMarker(): string; getDataLegendSeriesTitle(): string; getDataLegendAxisLabelFromCursorPosition(a: number, b: number): any; getDataLegendSeriesContextAt(a: number, b: number): any; readonly isValueOverlay: boolean; } /** * @hidden */ export declare let IDataLegendSeries_$type: Type;