igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 517 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available shapes for a category item highlight.
*/
export declare enum CategoryItemHighlightType {
/**
* The default depends on the series being highlighted.
*/
Auto = 0,
/**
* The highlight should use a marker shape.
*/
Marker = 1,
/**
* The highlight should use a filled band shape.
*/
Shape = 2
}
/**
* @hidden
*/
export declare let CategoryItemHighlightType_$type: Type;