igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
26 lines (25 loc) • 1.19 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 types of alignment used by the outer labels of the funnel chart.
*/
export var OuterLabelAlignment = /*@__PURE__*/ (function (OuterLabelAlignment) {
/**
* The labels will be displayed to the left of the chart.
*/
OuterLabelAlignment[OuterLabelAlignment["Left"] = 0] = "Left";
/**
* The labels will be displayed to the right of the chart.
*/
OuterLabelAlignment[OuterLabelAlignment["Right"] = 1] = "Right";
return OuterLabelAlignment;
})({});
/**
* @hidden
*/
export let OuterLabelAlignment_$type = markEnum('OuterLabelAlignment', 'Left,0|Right,1');