igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
30 lines (29 loc) • 1.36 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "igniteui-angular-core";
/**
* Describes available shapes for a category item highlight.
*/
export var CategoryItemHighlightType = /*@__PURE__*/ (function (CategoryItemHighlightType) {
/**
* The default depends on the series being highlighted.
*/
CategoryItemHighlightType[CategoryItemHighlightType["Auto"] = 0] = "Auto";
/**
* The highlight should use a marker shape.
*/
CategoryItemHighlightType[CategoryItemHighlightType["Marker"] = 1] = "Marker";
/**
* The highlight should use a filled band shape.
*/
CategoryItemHighlightType[CategoryItemHighlightType["Shape"] = 2] = "Shape";
return CategoryItemHighlightType;
})({});
/**
* @hidden
*/
export let CategoryItemHighlightType_$type = markEnum('CategoryItemHighlightType', 'Auto,0|Marker,1|Shape,2');