@syncfusion/ej2-angular-charts 32.1.24-ngcc → 32.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3791 -0
- package/README.md +8 -1
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/accumulation-chart/accumulationchart-all.module.mjs +53 -0
- package/esm2020/src/accumulation-chart/accumulationchart.component.mjs +146 -0
- package/esm2020/src/accumulation-chart/accumulationchart.module.mjs +43 -0
- package/esm2020/src/accumulation-chart/annotations.directive.mjs +62 -0
- package/esm2020/src/accumulation-chart/series.directive.mjs +62 -0
- package/esm2020/src/bullet-chart/bulletchart-all.module.mjs +32 -0
- package/esm2020/src/bullet-chart/bulletchart.component.mjs +85 -0
- package/esm2020/src/bullet-chart/bulletchart.module.mjs +34 -0
- package/esm2020/src/bullet-chart/ranges.directive.mjs +54 -0
- package/esm2020/src/chart/annotations.directive.mjs +60 -0
- package/esm2020/src/chart/axes.directive.mjs +58 -0
- package/esm2020/src/chart/categories.directive.mjs +59 -0
- package/esm2020/src/chart/chart-all.module.mjs +206 -0
- package/esm2020/src/chart/chart.component.mjs +525 -0
- package/esm2020/src/chart/chart.module.mjs +142 -0
- package/esm2020/src/chart/columns.directive.mjs +52 -0
- package/esm2020/src/chart/indicators.directive.mjs +54 -0
- package/esm2020/src/chart/multilevellabels.directive.mjs +60 -0
- package/esm2020/src/chart/rangecolorsettings.directive.mjs +52 -0
- package/esm2020/src/chart/rows.directive.mjs +52 -0
- package/esm2020/src/chart/segments.directive.mjs +58 -0
- package/esm2020/src/chart/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/chart/series.directive.mjs +68 -0
- package/esm2020/src/chart/striplines.directive.mjs +56 -0
- package/esm2020/src/chart/trendlines.directive.mjs +58 -0
- package/esm2020/src/chart3d/axes.directive.mjs +52 -0
- package/esm2020/src/chart3d/chart3d-all.module.mjs +68 -0
- package/esm2020/src/chart3d/chart3d.component.mjs +189 -0
- package/esm2020/src/chart3d/chart3d.module.mjs +70 -0
- package/esm2020/src/chart3d/columns.directive.mjs +52 -0
- package/esm2020/src/chart3d/rows.directive.mjs +52 -0
- package/esm2020/src/chart3d/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/chart3d/series.directive.mjs +62 -0
- package/esm2020/src/circularchart3d/circularchart3d-all.module.mjs +47 -0
- package/esm2020/src/circularchart3d/circularchart3d.component.mjs +125 -0
- package/esm2020/src/circularchart3d/circularchart3d.module.mjs +43 -0
- package/esm2020/src/circularchart3d/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/circularchart3d/series.directive.mjs +62 -0
- package/esm2020/src/index.mjs +64 -0
- package/esm2020/src/range-navigator/rangenavigator-all.module.mjs +32 -0
- package/esm2020/src/range-navigator/rangenavigator.component.mjs +127 -0
- package/esm2020/src/range-navigator/rangenavigator.module.mjs +34 -0
- package/esm2020/src/range-navigator/series.directive.mjs +54 -0
- package/esm2020/src/smithchart/series.directive.mjs +46 -0
- package/esm2020/src/smithchart/smithchart-all.module.mjs +32 -0
- package/esm2020/src/smithchart/smithchart.component.mjs +78 -0
- package/esm2020/src/smithchart/smithchart.module.mjs +34 -0
- package/esm2020/src/sparkline/rangebandsettings.directive.mjs +46 -0
- package/esm2020/src/sparkline/sparkline-all.module.mjs +29 -0
- package/esm2020/src/sparkline/sparkline.component.mjs +71 -0
- package/esm2020/src/sparkline/sparkline.module.mjs +34 -0
- package/esm2020/src/stock-chart/annotations.directive.mjs +60 -0
- package/esm2020/src/stock-chart/axes.directive.mjs +52 -0
- package/esm2020/src/stock-chart/indicators.directive.mjs +54 -0
- package/esm2020/src/stock-chart/periods.directive.mjs +54 -0
- package/esm2020/src/stock-chart/rows.directive.mjs +52 -0
- package/esm2020/src/stock-chart/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/stock-chart/series.directive.mjs +58 -0
- package/esm2020/src/stock-chart/stockchart-all.module.mjs +29 -0
- package/esm2020/src/stock-chart/stockchart.component.mjs +337 -0
- package/esm2020/src/stock-chart/stockchart.module.mjs +106 -0
- package/esm2020/src/stock-chart/stockevents.directive.mjs +54 -0
- package/esm2020/src/stock-chart/trendlines.directive.mjs +59 -0
- package/esm2020/syncfusion-ej2-angular-charts.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-charts.mjs +4376 -0
- package/fesm2015/syncfusion-ej2-angular-charts.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-charts.mjs +4376 -0
- package/fesm2020/syncfusion-ej2-angular-charts.mjs.map +1 -0
- package/package.json +28 -46
- package/public_api.d.ts +1 -1
- package/src/accumulation-chart/accumulationchart-all.module.d.ts +21 -15
- package/src/accumulation-chart/accumulationchart.component.d.ts +61 -58
- package/src/accumulation-chart/accumulationchart.module.d.ts +13 -5
- package/src/accumulation-chart/annotations.directive.d.ts +85 -80
- package/src/accumulation-chart/series.directive.d.ts +249 -244
- package/src/bullet-chart/bulletchart-all.module.d.ts +14 -8
- package/src/bullet-chart/bulletchart.component.d.ts +41 -38
- package/src/bullet-chart/bulletchart.module.d.ts +12 -5
- package/src/bullet-chart/ranges.directive.d.ts +73 -68
- package/src/chart/annotations.directive.d.ts +101 -96
- package/src/chart/axes.directive.d.ts +409 -381
- package/src/chart/categories.directive.d.ts +74 -69
- package/src/chart/chart-all.module.d.ts +72 -66
- package/src/chart/chart.component.d.ts +89 -86
- package/src/chart/chart.module.d.ts +24 -5
- package/src/chart/columns.directive.d.ts +35 -30
- package/src/chart/indicators.directive.d.ts +255 -250
- package/src/chart/multilevellabels.directive.d.ts +62 -57
- package/src/chart/rangecolorsettings.directive.d.ts +41 -36
- package/src/chart/rows.directive.d.ts +35 -30
- package/src/chart/segments.directive.d.ts +46 -41
- package/src/chart/selecteddataindexes.directive.d.ts +37 -32
- package/src/chart/series.directive.d.ts +488 -483
- package/src/chart/striplines.directive.d.ts +171 -166
- package/src/chart/trendlines.directive.d.ts +117 -112
- package/src/chart3d/axes.directive.d.ts +271 -266
- package/src/chart3d/chart3d-all.module.d.ts +26 -20
- package/src/chart3d/chart3d.component.d.ts +65 -62
- package/src/chart3d/chart3d.module.d.ts +16 -5
- package/src/chart3d/columns.directive.d.ts +31 -26
- package/src/chart3d/rows.directive.d.ts +31 -26
- package/src/chart3d/selecteddataindexes.directive.d.ts +37 -32
- package/src/chart3d/series.directive.d.ts +177 -172
- package/src/circularchart3d/circularchart3d-all.module.d.ts +19 -13
- package/src/circularchart3d/circularchart3d.component.d.ts +58 -55
- package/src/circularchart3d/circularchart3d.module.d.ts +13 -5
- package/src/circularchart3d/selecteddataindexes.directive.d.ts +37 -32
- package/src/circularchart3d/series.directive.d.ts +147 -142
- package/src/index.d.ts +63 -63
- package/src/range-navigator/rangenavigator-all.module.d.ts +14 -8
- package/src/range-navigator/rangenavigator.component.d.ts +44 -41
- package/src/range-navigator/rangenavigator.module.d.ts +12 -5
- package/src/range-navigator/series.directive.d.ts +83 -78
- package/src/smithchart/series.directive.d.ts +93 -88
- package/src/smithchart/smithchart-all.module.d.ts +14 -8
- package/src/smithchart/smithchart.component.d.ts +44 -41
- package/src/smithchart/smithchart.module.d.ts +12 -5
- package/src/sparkline/rangebandsettings.directive.d.ts +38 -33
- package/src/sparkline/sparkline-all.module.d.ts +13 -7
- package/src/sparkline/sparkline.component.d.ts +46 -43
- package/src/sparkline/sparkline.module.d.ts +12 -5
- package/src/stock-chart/annotations.directive.d.ts +89 -84
- package/src/stock-chart/axes.directive.d.ts +291 -286
- package/src/stock-chart/indicators.directive.d.ts +213 -208
- package/src/stock-chart/periods.directive.d.ts +47 -42
- package/src/stock-chart/rows.directive.d.ts +35 -30
- package/src/stock-chart/selecteddataindexes.directive.d.ts +37 -32
- package/src/stock-chart/series.directive.d.ts +247 -242
- package/src/stock-chart/stockchart-all.module.d.ts +13 -7
- package/src/stock-chart/stockchart.component.d.ts +68 -65
- package/src/stock-chart/stockchart.module.d.ts +20 -5
- package/src/stock-chart/stockevents.directive.d.ts +88 -83
- package/src/stock-chart/trendlines.directive.d.ts +118 -113
- package/syncfusion-ej2-angular-charts.d.ts +5 -0
- package/@syncfusion/ej2-angular-charts.es5.js +0 -5029
- package/@syncfusion/ej2-angular-charts.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-charts.js +0 -4747
- package/@syncfusion/ej2-angular-charts.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-charts.umd.js +0 -5719
- package/dist/ej2-angular-charts.umd.js.map +0 -1
- package/dist/ej2-angular-charts.umd.min.js +0 -11
- package/dist/ej2-angular-charts.umd.min.js.map +0 -1
- package/ej2-angular-charts.d.ts +0 -13
- package/ej2-angular-charts.metadata.json +0 -1
|
@@ -1,62 +1,65 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Chart3D } from '@syncfusion/ej2-charts';
|
|
4
|
-
import { Chart3DSeriesCollectionDirective } from './series.directive';
|
|
5
|
-
import { Chart3DAxesDirective } from './axes.directive';
|
|
6
|
-
import { Chart3DRowsDirective } from './rows.directive';
|
|
7
|
-
import { Chart3DColumnsDirective } from './columns.directive';
|
|
8
|
-
import { Chart3DSelectedDataIndexesDirective } from './selecteddataindexes.directive';
|
|
9
|
-
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
private
|
|
21
|
-
private
|
|
22
|
-
private
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Chart3D } from '@syncfusion/ej2-charts';
|
|
4
|
+
import { Chart3DSeriesCollectionDirective } from './series.directive';
|
|
5
|
+
import { Chart3DAxesDirective } from './axes.directive';
|
|
6
|
+
import { Chart3DRowsDirective } from './rows.directive';
|
|
7
|
+
import { Chart3DColumnsDirective } from './columns.directive';
|
|
8
|
+
import { Chart3DSelectedDataIndexesDirective } from './selecteddataindexes.directive';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare const inputs: string[];
|
|
11
|
+
export declare const outputs: string[];
|
|
12
|
+
export declare const twoWays: string[];
|
|
13
|
+
/**
|
|
14
|
+
* 3D Chart Component
|
|
15
|
+
* ```html
|
|
16
|
+
* <ejschart3d></ejschart3d>
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare class Chart3DComponent extends Chart3D implements IComponentBase {
|
|
20
|
+
private ngEle;
|
|
21
|
+
private srenderer;
|
|
22
|
+
private viewContainerRef;
|
|
23
|
+
private injector;
|
|
24
|
+
context: any;
|
|
25
|
+
tagObjects: any;
|
|
26
|
+
afterExport: any;
|
|
27
|
+
axisLabelRender: any;
|
|
28
|
+
beforeExport: any;
|
|
29
|
+
beforePrint: any;
|
|
30
|
+
beforeResize: any;
|
|
31
|
+
chart3DMouseClick: any;
|
|
32
|
+
chart3DMouseDown: any;
|
|
33
|
+
chart3DMouseLeave: any;
|
|
34
|
+
chart3DMouseMove: any;
|
|
35
|
+
chart3DMouseUp: any;
|
|
36
|
+
legendClick: any;
|
|
37
|
+
legendRender: any;
|
|
38
|
+
load: any;
|
|
39
|
+
loaded: any;
|
|
40
|
+
pointClick: any;
|
|
41
|
+
pointMove: any;
|
|
42
|
+
pointRender: any;
|
|
43
|
+
resized: any;
|
|
44
|
+
selectionComplete: any;
|
|
45
|
+
seriesRender: any;
|
|
46
|
+
textRender: any;
|
|
47
|
+
tooltipRender: any;
|
|
48
|
+
dataSourceChange: any;
|
|
49
|
+
childSeries: QueryList<Chart3DSeriesCollectionDirective>;
|
|
50
|
+
childAxes: QueryList<Chart3DAxesDirective>;
|
|
51
|
+
childRows: QueryList<Chart3DRowsDirective>;
|
|
52
|
+
childColumns: QueryList<Chart3DColumnsDirective>;
|
|
53
|
+
childSelectedDataIndexes: QueryList<Chart3DSelectedDataIndexesDirective>;
|
|
54
|
+
tags: string[];
|
|
55
|
+
tooltip_template: any;
|
|
56
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
57
|
+
ngOnInit(): void;
|
|
58
|
+
ngAfterViewInit(): void;
|
|
59
|
+
ngOnDestroy(): void;
|
|
60
|
+
ngAfterContentChecked(): void;
|
|
61
|
+
registerEvents: (eventList: string[]) => void;
|
|
62
|
+
addTwoWay: (propList: string[]) => void;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DComponent, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Chart3DComponent, "ejs-chart3d", never, { "axes": "axes"; "background": "background"; "backgroundImage": "backgroundImage"; "border": "border"; "columns": "columns"; "currencyCode": "currencyCode"; "dataSource": "dataSource"; "depth": "depth"; "description": "description"; "enableExport": "enableExport"; "enablePersistence": "enablePersistence"; "enableRotation": "enableRotation"; "enableRtl": "enableRtl"; "enableSideBySidePlacement": "enableSideBySidePlacement"; "height": "height"; "highlightColor": "highlightColor"; "highlightMode": "highlightMode"; "highlightPattern": "highlightPattern"; "isMultiSelect": "isMultiSelect"; "isTransposed": "isTransposed"; "legendSettings": "legendSettings"; "locale": "locale"; "margin": "margin"; "palettes": "palettes"; "perspectiveAngle": "perspectiveAngle"; "primaryXAxis": "primaryXAxis"; "primaryYAxis": "primaryYAxis"; "rotation": "rotation"; "rows": "rows"; "selectedDataIndexes": "selectedDataIndexes"; "selectionMode": "selectionMode"; "selectionPattern": "selectionPattern"; "series": "series"; "subTitle": "subTitle"; "subTitleStyle": "subTitleStyle"; "theme": "theme"; "tilt": "tilt"; "title": "title"; "titleStyle": "titleStyle"; "tooltip": "tooltip"; "useGroupingSeparator": "useGroupingSeparator"; "wallColor": "wallColor"; "wallSize": "wallSize"; "width": "width"; }, { "afterExport": "afterExport"; "axisLabelRender": "axisLabelRender"; "beforeExport": "beforeExport"; "beforePrint": "beforePrint"; "beforeResize": "beforeResize"; "chart3DMouseClick": "chart3DMouseClick"; "chart3DMouseDown": "chart3DMouseDown"; "chart3DMouseLeave": "chart3DMouseLeave"; "chart3DMouseMove": "chart3DMouseMove"; "chart3DMouseUp": "chart3DMouseUp"; "legendClick": "legendClick"; "legendRender": "legendRender"; "load": "load"; "loaded": "loaded"; "pointClick": "pointClick"; "pointMove": "pointMove"; "pointRender": "pointRender"; "resized": "resized"; "selectionComplete": "selectionComplete"; "seriesRender": "seriesRender"; "textRender": "textRender"; "tooltipRender": "tooltipRender"; "dataSourceChange": "dataSourceChange"; }, ["tooltip_template", "childSeries", "childAxes", "childRows", "childColumns", "childSelectedDataIndexes"], never>;
|
|
65
|
+
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chart3d.component";
|
|
3
|
+
import * as i2 from "./series.directive";
|
|
4
|
+
import * as i3 from "./axes.directive";
|
|
5
|
+
import * as i4 from "./rows.directive";
|
|
6
|
+
import * as i5 from "./columns.directive";
|
|
7
|
+
import * as i6 from "./selecteddataindexes.directive";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
/**
|
|
10
|
+
* NgModule definition for the Chart3D component.
|
|
11
|
+
*/
|
|
12
|
+
export declare class Chart3DModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Chart3DModule, [typeof i1.Chart3DComponent, typeof i2.Chart3DSeriesDirective, typeof i2.Chart3DSeriesCollectionDirective, typeof i3.Chart3DAxisDirective, typeof i3.Chart3DAxesDirective, typeof i4.Chart3DRowDirective, typeof i4.Chart3DRowsDirective, typeof i5.Chart3DColumnDirective, typeof i5.Chart3DColumnsDirective, typeof i6.Chart3DSelectedDataIndexDirective, typeof i6.Chart3DSelectedDataIndexesDirective], [typeof i7.CommonModule], [typeof i1.Chart3DComponent, typeof i2.Chart3DSeriesDirective, typeof i2.Chart3DSeriesCollectionDirective, typeof i3.Chart3DAxisDirective, typeof i3.Chart3DAxesDirective, typeof i4.Chart3DRowDirective, typeof i4.Chart3DRowsDirective, typeof i5.Chart3DColumnDirective, typeof i5.Chart3DColumnsDirective, typeof i6.Chart3DSelectedDataIndexDirective, typeof i6.Chart3DSelectedDataIndexesDirective]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<Chart3DModule>;
|
|
16
|
+
}
|
|
@@ -1,26 +1,31 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Column3D Directive
|
|
6
|
+
* ```html
|
|
7
|
+
* <e-columns><e-column></e-column><e-columns>
|
|
8
|
+
* ```
|
|
9
|
+
*/
|
|
10
|
+
export declare class Chart3DColumnDirective extends ComplexBase<Chart3DColumnDirective> {
|
|
11
|
+
private viewContainerRef;
|
|
12
|
+
directivePropList: any;
|
|
13
|
+
/**
|
|
14
|
+
* The width of the column as a string accepts input both as like '100px' or '100%'.
|
|
15
|
+
* If specified as '100%, column renders to the full width of its chart.
|
|
16
|
+
* @default '100%'
|
|
17
|
+
*/
|
|
18
|
+
width: any;
|
|
19
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DColumnDirective, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DColumnDirective, "e-chart3d-columns>e-chart3d-columns", never, { "width": "width"; }, {}, never>;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Chart3DColumn Array Directive
|
|
25
|
+
* @private
|
|
26
|
+
*/
|
|
27
|
+
export declare class Chart3DColumnsDirective extends ArrayBase<Chart3DColumnsDirective> {
|
|
28
|
+
constructor();
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DColumnsDirective, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DColumnsDirective, "ejs-chart3d>e-chart3d-columns", never, {}, {}, ["children"]>;
|
|
31
|
+
}
|
|
@@ -1,26 +1,31 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Row3D Directive
|
|
6
|
+
* ```html
|
|
7
|
+
* <e-rows><e-row></e-row><e-rows>
|
|
8
|
+
* ```
|
|
9
|
+
*/
|
|
10
|
+
export declare class Chart3DRowDirective extends ComplexBase<Chart3DRowDirective> {
|
|
11
|
+
private viewContainerRef;
|
|
12
|
+
directivePropList: any;
|
|
13
|
+
/**
|
|
14
|
+
* The height of the row as a string accept input both as '100px' and '100%'.
|
|
15
|
+
* If specified as '100%, row renders to the full height of its chart.
|
|
16
|
+
* @default '100%'
|
|
17
|
+
*/
|
|
18
|
+
height: any;
|
|
19
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DRowDirective, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DRowDirective, "e-chart3d-rows>e-chart3d-row", never, { "height": "height"; }, {}, never>;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Chart3DRow Array Directive
|
|
25
|
+
* @private
|
|
26
|
+
*/
|
|
27
|
+
export declare class Chart3DRowsDirective extends ArrayBase<Chart3DRowsDirective> {
|
|
28
|
+
constructor();
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DRowsDirective, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DRowsDirective, "ejs-chart3d>e-chart3d-rows", never, {}, {}, ["children"]>;
|
|
31
|
+
}
|
|
@@ -1,32 +1,37 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
* @
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
* @
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Selected Data Directive
|
|
6
|
+
* ```html
|
|
7
|
+
* <e-selecteddataindexes><e-selecteddataindex></e-selecteddataindex><e-selecteddataindexes>
|
|
8
|
+
* ```
|
|
9
|
+
*/
|
|
10
|
+
export declare class Chart3DSelectedDataIndexDirective extends ComplexBase<Chart3DSelectedDataIndexDirective> {
|
|
11
|
+
private viewContainerRef;
|
|
12
|
+
directivePropList: any;
|
|
13
|
+
/**
|
|
14
|
+
* Specifies the index of the data point within the series.
|
|
15
|
+
* @default 0
|
|
16
|
+
* @asptype int
|
|
17
|
+
*/
|
|
18
|
+
point: any;
|
|
19
|
+
/**
|
|
20
|
+
* Specifies the index of the series.
|
|
21
|
+
* @default 0
|
|
22
|
+
* @asptype int
|
|
23
|
+
*/
|
|
24
|
+
series: any;
|
|
25
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DSelectedDataIndexDirective, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DSelectedDataIndexDirective, "e-chart3d-selecteddataindexes>e-chart3d-selecteddataindex", never, { "point": "point"; "series": "series"; }, {}, never>;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Chart3DSelectedDataIndex Array Directive
|
|
31
|
+
* @private
|
|
32
|
+
*/
|
|
33
|
+
export declare class Chart3DSelectedDataIndexesDirective extends ArrayBase<Chart3DSelectedDataIndexesDirective> {
|
|
34
|
+
constructor();
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DSelectedDataIndexesDirective, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DSelectedDataIndexesDirective, "ejs-chart3d>e-chart3d-selecteddataindexes", never, {}, {}, ["children"]>;
|
|
37
|
+
}
|