igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
14 lines (13 loc) • 339 B
TypeScript
import { Type } from "igniteui-webcomponents-core";
/**
* @hidden
*/
export interface ISupportsMarkers {
readonly shouldDisplayMarkers: boolean;
updateMarkerCount(a: number): void;
updateMarkerTemplate(a: number, b: number, c: number): void;
}
/**
* @hidden
*/
export declare let ISupportsMarkers_$type: Type;