@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
69 lines (68 loc) • 1.66 kB
TypeScript
import { ViewContainerRef } from '@angular/core';
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
/**
* BulletRange Directive
* ```html
* <e-bullet-range-collection>
* <e-bullet-range></e-bullet-range>
* </e-bullet-range-collection>
* ```
*/
export declare class BulletRangeDirective extends ComplexBase<BulletRangeDirective> {
private viewContainerRef;
directivePropList: any;
/**
* Default value for qualitative range Color
* @default null
*/
color: any;
/**
* Default value for qualitative range end value
* @default null
*/
end: any;
/**
* Default value for qualitative range Color
* @default null
*/
index: any;
/**
* The URL for the Image that is to be displayed as a Legend icon. It requires `legendShape` value to be an `Image`.
* @default ''
*/
legendImageUrl: any;
/**
* Default value for qualitative range name
* @default null
*/
name: any;
/**
* Range opacity
* @default 1
*/
opacity: any;
/**
* The shape of the legend. Each ranges has its own legend shape. They are,
* * Circle
* * Rectangle
* * Triangle
* * Diamond
* * Cross
* * HorizontalLine
* * VerticalLine
* * Pentagon
* * InvertedTriangle
* * SeriesType
* * Image
* @default 'Rectangle'
*/
shape: any;
constructor(viewContainerRef: ViewContainerRef);
}
/**
* BulletRange Array Directive
* @private
*/
export declare class BulletRangeCollectionDirective extends ArrayBase<BulletRangeCollectionDirective> {
constructor();
}