UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

23 lines (22 loc) 533 B
import { Type } from "igniteui-webcomponents-core"; /** * Describes available locations of the axis labels in the chart. */ export declare enum SeriesOutlineMode { /** * Outline mode is managed by the series. */ Auto = 0, /** * This series should show the outline portion of the visual. */ Visible = 1, /** * The series should hide the outline portion of the visual. */ Collapsed = 2 } /** * @hidden */ export declare let SeriesOutlineMode_$type: Type;