igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 544 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available locations of the axis labels in the chart.
*/
export declare enum MarkerFillMode {
/**
* Outline mode is managed by the series.
*/
Auto = 0,
/**
* This series base its marker brush on the marker outlines collection.
*/
Normal = 1,
/**
* The series should match the marker fill to the marker outline.
*/
MatchMarkerOutline = 2
}
/**
* @hidden
*/
export declare let MarkerFillMode_$type: Type;