UNPKG

@syncfusion/ej2-angular-charts

Version:

Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Angular

42 lines (41 loc) 935 B
import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base'; /** * Series Directive * ```html * <e-series-collection> * <e-series> * <e-segments> * <e-segment> * </e-segment> * </e-segments> * </e-series-collection> * ``` */ export declare class SegmentDirective extends ComplexBase<SegmentDirective> { private viewContainerRef; directivePropList: any; /** * Defines the color of a region. * @default null */ color: any; /** * Defines the pattern of dashes and gaps to stroke. * @default '0' */ dashArray: any; /** * Defines the starting point of region. * @default null */ value: any; constructor(viewContainerRef: ViewContainerRef); } /** * Segment Array Directive * @private */ export declare class SegmentsDirective extends ArrayBase<SegmentsDirective> { constructor(); }