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

31 lines (30 loc) 855 B
import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base'; /** * Column Directive * ```html * <e-columns><e-column></e-column><e-columns> * ``` */ export declare class ColumnDirective extends ComplexBase<ColumnDirective> { private viewContainerRef; directivePropList: any; /** * Options to customize the border of the columns. */ border: any; /** * The width of the column as a string accepts input both as like '100px' or '100%'. * If specified as '100%, column renders to the full width of its chart. * @default '100%' */ width: any; constructor(viewContainerRef: ViewContainerRef); } /** * Column Array Directive * @private */ export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> { constructor(); }