igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
30 lines (29 loc) • 1.4 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-react-core";
/**
* Describes available types of a callout line for the labels.
*/
export var LeaderLineType = /*@__PURE__*/ (function (LeaderLineType) {
/**
* A straight line is drawn between the slice and its label.
*/
LeaderLineType[LeaderLineType["Straight"] = 0] = "Straight";
/**
* A curved line is drawn between the slice and its label. The line follows makes a natural turn from the slice to the label.
*/
LeaderLineType[LeaderLineType["Arc"] = 1] = "Arc";
/**
* A curved line is drawn between the slice and its label. The line starts radially from the slice and then turns to the label.
*/
LeaderLineType[LeaderLineType["Spline"] = 2] = "Spline";
return LeaderLineType;
})({});
/**
* @hidden
*/
export let LeaderLineType_$type = /*@__PURE__*/ markEnum('LeaderLineType', 'Straight,0|Arc,1|Spline,2');