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) 814 B
import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base'; /** * Row Directive * ```html * <e-rows><e-row></e-row><e-rows> * ``` */ export declare class RowDirective extends ComplexBase<RowDirective> { private viewContainerRef; directivePropList: any; /** * Options to customize the border of the rows. */ border: any; /** * The height of the row as a string accept input both as '100px' and '100%'. * If specified as '100%, row renders to the full height of its chart. * @default '100%' */ height: any; constructor(viewContainerRef: ViewContainerRef); } /** * Row Array Directive * @private */ export declare class RowsDirective extends ArrayBase<RowsDirective> { constructor(); }