@syncfusion/ej2-angular-charts 32.2.8-ngcc → 32.2.8
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 +3807 -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,78 +1,83 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* <e-rangenavigator-series
|
|
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
|
-
|
|
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
|
-
*
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
*
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* RangenavigatorSeries Directive
|
|
6
|
+
* ```html
|
|
7
|
+
* <e-rangenavigator-series-collection>
|
|
8
|
+
* <e-rangenavigator-series></e-rangenavigator-series>
|
|
9
|
+
* </e-rangenavigator-series-collection>
|
|
10
|
+
* ```
|
|
11
|
+
*/
|
|
12
|
+
export declare class RangenavigatorSeriesDirective extends ComplexBase<RangenavigatorSeriesDirective> {
|
|
13
|
+
private viewContainerRef;
|
|
14
|
+
directivePropList: any;
|
|
15
|
+
/**
|
|
16
|
+
* It defines the series type of the range navigator.
|
|
17
|
+
* @default 'Line'
|
|
18
|
+
*/
|
|
19
|
+
type: any;
|
|
20
|
+
/**
|
|
21
|
+
* Options to customizing animation for the series.
|
|
22
|
+
*/
|
|
23
|
+
animation: any;
|
|
24
|
+
/**
|
|
25
|
+
* Options for customizing the color and width of the series border.
|
|
26
|
+
*/
|
|
27
|
+
border: any;
|
|
28
|
+
/**
|
|
29
|
+
* Defines the pattern of dashes and gaps to stroke the lines in `Line` type series.
|
|
30
|
+
* @default '0'
|
|
31
|
+
*/
|
|
32
|
+
dashArray: any;
|
|
33
|
+
/**
|
|
34
|
+
* It defines the data source for a series.
|
|
35
|
+
* @default null
|
|
36
|
+
*/
|
|
37
|
+
dataSource: any;
|
|
38
|
+
/**
|
|
39
|
+
* The fill color for the series that accepts value in hex and rgba as a valid CSS color string.
|
|
40
|
+
* It also represents the color of the signal lines in technical indicators.
|
|
41
|
+
* For technical indicators, the default value is 'blue' and for series, it has null.
|
|
42
|
+
* @default null
|
|
43
|
+
*/
|
|
44
|
+
fill: any;
|
|
45
|
+
/**
|
|
46
|
+
* The opacity for the background.
|
|
47
|
+
* @default 1
|
|
48
|
+
*/
|
|
49
|
+
opacity: any;
|
|
50
|
+
/**
|
|
51
|
+
* It defines the query for the data source.
|
|
52
|
+
* @default null
|
|
53
|
+
*/
|
|
54
|
+
query: any;
|
|
55
|
+
/**
|
|
56
|
+
* The stroke width for the series that is applicable only for `Line` type series.
|
|
57
|
+
* It also represents the stroke width of the signal lines in technical indicators.
|
|
58
|
+
* @default 1
|
|
59
|
+
*/
|
|
60
|
+
width: any;
|
|
61
|
+
/**
|
|
62
|
+
* It defines the xName for the series.
|
|
63
|
+
* @default null
|
|
64
|
+
*/
|
|
65
|
+
xName: any;
|
|
66
|
+
/**
|
|
67
|
+
* It defines the yName for the series.
|
|
68
|
+
* @default null
|
|
69
|
+
*/
|
|
70
|
+
yName: any;
|
|
71
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangenavigatorSeriesDirective, never>;
|
|
73
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangenavigatorSeriesDirective, "e-rangenavigator-series-collection>e-rangenavigator-series", never, { "animation": "animation"; "border": "border"; "dashArray": "dashArray"; "dataSource": "dataSource"; "fill": "fill"; "opacity": "opacity"; "query": "query"; "type": "type"; "width": "width"; "xName": "xName"; "yName": "yName"; }, {}, never>;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* RangenavigatorSeries Array Directive
|
|
77
|
+
* @private
|
|
78
|
+
*/
|
|
79
|
+
export declare class RangenavigatorSeriesCollectionDirective extends ArrayBase<RangenavigatorSeriesCollectionDirective> {
|
|
80
|
+
constructor();
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangenavigatorSeriesCollectionDirective, never>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangenavigatorSeriesCollectionDirective, "ej-rangenavigator>e-rangenavigator-series-collection", never, {}, {}, ["children"]>;
|
|
83
|
+
}
|
|
@@ -1,88 +1,93 @@
|
|
|
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
|
-
|
|
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
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
*
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
*
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
*
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SmithchartSeriesDirective extends ComplexBase<SmithchartSeriesDirective> {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
directivePropList: any;
|
|
7
|
+
/**
|
|
8
|
+
* perform animation of series based on animation duration.
|
|
9
|
+
* @default '2000ms'
|
|
10
|
+
*/
|
|
11
|
+
animationDuration: any;
|
|
12
|
+
/**
|
|
13
|
+
* Specifies the dataSource
|
|
14
|
+
* @default null
|
|
15
|
+
* @isdatamanager false
|
|
16
|
+
*/
|
|
17
|
+
dataSource: any;
|
|
18
|
+
/**
|
|
19
|
+
* enable or disable the animation of series.
|
|
20
|
+
* @default false
|
|
21
|
+
*/
|
|
22
|
+
enableAnimation: any;
|
|
23
|
+
/**
|
|
24
|
+
* avoid the overlap of dataLabels.
|
|
25
|
+
* @default false
|
|
26
|
+
*/
|
|
27
|
+
enableSmartLabels: any;
|
|
28
|
+
/**
|
|
29
|
+
* color for series.
|
|
30
|
+
* @default null
|
|
31
|
+
*/
|
|
32
|
+
fill: any;
|
|
33
|
+
/**
|
|
34
|
+
* options for customizing marker.
|
|
35
|
+
*/
|
|
36
|
+
marker: any;
|
|
37
|
+
/**
|
|
38
|
+
* The name of the series visible in legend.
|
|
39
|
+
* @default ''
|
|
40
|
+
*/
|
|
41
|
+
name: any;
|
|
42
|
+
/**
|
|
43
|
+
* opacity for series.
|
|
44
|
+
* @default 1
|
|
45
|
+
*/
|
|
46
|
+
opacity: any;
|
|
47
|
+
/**
|
|
48
|
+
* points for series.
|
|
49
|
+
* @default []
|
|
50
|
+
*/
|
|
51
|
+
points: any;
|
|
52
|
+
/**
|
|
53
|
+
* reactance name for dataSource.
|
|
54
|
+
* @default ''
|
|
55
|
+
*/
|
|
56
|
+
reactance: any;
|
|
57
|
+
/**
|
|
58
|
+
* resistance name for dataSource.
|
|
59
|
+
* @default ''
|
|
60
|
+
*/
|
|
61
|
+
resistance: any;
|
|
62
|
+
/**
|
|
63
|
+
* options for customizing tooltip.
|
|
64
|
+
*/
|
|
65
|
+
tooltip: any;
|
|
66
|
+
/**
|
|
67
|
+
* tooltip mapping name for the series.
|
|
68
|
+
* @default ''
|
|
69
|
+
*/
|
|
70
|
+
tooltipMappingName: any;
|
|
71
|
+
/**
|
|
72
|
+
* visibility for series.
|
|
73
|
+
* @default 'visible'
|
|
74
|
+
*/
|
|
75
|
+
visibility: any;
|
|
76
|
+
/**
|
|
77
|
+
* width for series.
|
|
78
|
+
* @default 1
|
|
79
|
+
*/
|
|
80
|
+
width: any;
|
|
81
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
82
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmithchartSeriesDirective, never>;
|
|
83
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SmithchartSeriesDirective, "e-seriesCollection>e-series", never, { "animationDuration": "animationDuration"; "dataSource": "dataSource"; "enableAnimation": "enableAnimation"; "enableSmartLabels": "enableSmartLabels"; "fill": "fill"; "marker": "marker"; "name": "name"; "opacity": "opacity"; "points": "points"; "reactance": "reactance"; "resistance": "resistance"; "tooltip": "tooltip"; "tooltipMappingName": "tooltipMappingName"; "visibility": "visibility"; "width": "width"; }, {}, never>;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* SmithchartSeries Array Directive
|
|
87
|
+
* @private
|
|
88
|
+
*/
|
|
89
|
+
export declare class SmithchartSeriesCollectionDirective extends ArrayBase<SmithchartSeriesCollectionDirective> {
|
|
90
|
+
constructor();
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmithchartSeriesCollectionDirective, never>;
|
|
92
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SmithchartSeriesCollectionDirective, "ejs-smithchart>e-seriesCollection", never, {}, {}, ["children"]>;
|
|
93
|
+
}
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import { ValueProvider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "./smithchart.module";
|
|
5
|
+
export declare const SmithchartLegendService: ValueProvider;
|
|
6
|
+
export declare const TooltipRenderService: ValueProvider;
|
|
7
|
+
/**
|
|
8
|
+
* NgModule definition for the Smithchart component with providers.
|
|
9
|
+
*/
|
|
10
|
+
export declare class SmithchartAllModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmithchartAllModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmithchartAllModule, never, [typeof i1.CommonModule, typeof i2.SmithchartModule], [typeof i2.SmithchartModule]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmithchartAllModule>;
|
|
14
|
+
}
|
|
@@ -1,41 +1,44 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Smithchart } from '@syncfusion/ej2-charts';
|
|
4
|
-
import { SmithchartSeriesCollectionDirective } from './series.directive';
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Smithchart } from '@syncfusion/ej2-charts';
|
|
4
|
+
import { SmithchartSeriesCollectionDirective } from './series.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare const inputs: string[];
|
|
7
|
+
export declare const outputs: string[];
|
|
8
|
+
export declare const twoWays: string[];
|
|
9
|
+
/**
|
|
10
|
+
* Smithchart Component
|
|
11
|
+
* ```html
|
|
12
|
+
* <ejs-smithchart></ejs-smithchart>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class SmithchartComponent extends Smithchart implements IComponentBase {
|
|
16
|
+
private ngEle;
|
|
17
|
+
private srenderer;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private injector;
|
|
20
|
+
context: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
animationComplete: any;
|
|
23
|
+
axisLabelRender: any;
|
|
24
|
+
beforePrint: any;
|
|
25
|
+
legendRender: any;
|
|
26
|
+
load: any;
|
|
27
|
+
loaded: any;
|
|
28
|
+
seriesRender: any;
|
|
29
|
+
subtitleRender: any;
|
|
30
|
+
textRender: any;
|
|
31
|
+
titleRender: any;
|
|
32
|
+
tooltipRender: any;
|
|
33
|
+
childSeries: QueryList<SmithchartSeriesCollectionDirective>;
|
|
34
|
+
tags: string[];
|
|
35
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
36
|
+
ngOnInit(): void;
|
|
37
|
+
ngAfterViewInit(): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
ngAfterContentChecked(): void;
|
|
40
|
+
registerEvents: (eventList: string[]) => void;
|
|
41
|
+
addTwoWay: (propList: string[]) => void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmithchartComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmithchartComponent, "ejs-smithchart", never, { "background": "background"; "border": "border"; "elementSpacing": "elementSpacing"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "font": "font"; "height": "height"; "horizontalAxis": "horizontalAxis"; "legendSettings": "legendSettings"; "locale": "locale"; "margin": "margin"; "radialAxis": "radialAxis"; "radius": "radius"; "renderType": "renderType"; "series": "series"; "theme": "theme"; "title": "title"; "width": "width"; }, { "animationComplete": "animationComplete"; "axisLabelRender": "axisLabelRender"; "beforePrint": "beforePrint"; "legendRender": "legendRender"; "load": "load"; "loaded": "loaded"; "seriesRender": "seriesRender"; "subtitleRender": "subtitleRender"; "textRender": "textRender"; "titleRender": "titleRender"; "tooltipRender": "tooltipRender"; }, ["childSeries"], never>;
|
|
44
|
+
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./smithchart.component";
|
|
3
|
+
import * as i2 from "./series.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
/**
|
|
6
|
+
* NgModule definition for the Smithchart component.
|
|
7
|
+
*/
|
|
8
|
+
export declare class SmithchartModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmithchartModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmithchartModule, [typeof i1.SmithchartComponent, typeof i2.SmithchartSeriesDirective, typeof i2.SmithchartSeriesCollectionDirective], [typeof i3.CommonModule], [typeof i1.SmithchartComponent, typeof i2.SmithchartSeriesDirective, typeof i2.SmithchartSeriesCollectionDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmithchartModule>;
|
|
12
|
+
}
|
|
@@ -1,33 +1,38 @@
|
|
|
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
|
-
|
|
33
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RangeBandSettingDirective extends ComplexBase<RangeBandSettingDirective> {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
directivePropList: any;
|
|
7
|
+
/**
|
|
8
|
+
* To configure sparkline rangeband color.
|
|
9
|
+
*/
|
|
10
|
+
color: any;
|
|
11
|
+
/**
|
|
12
|
+
* To configure sparkline end range.
|
|
13
|
+
* @aspdefaultvalueignore
|
|
14
|
+
*/
|
|
15
|
+
endRange: any;
|
|
16
|
+
/**
|
|
17
|
+
* To configure sparkline rangeband opacity.
|
|
18
|
+
* @default 1
|
|
19
|
+
*/
|
|
20
|
+
opacity: any;
|
|
21
|
+
/**
|
|
22
|
+
* To configure sparkline start range.
|
|
23
|
+
* @aspdefaultvalueignore
|
|
24
|
+
*/
|
|
25
|
+
startRange: any;
|
|
26
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeBandSettingDirective, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeBandSettingDirective, "e-rangeBandSettings>e-rangeBandSetting", never, { "color": "color"; "endRange": "endRange"; "opacity": "opacity"; "startRange": "startRange"; }, {}, never>;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* RangeBandSetting Array Directive
|
|
32
|
+
* @private
|
|
33
|
+
*/
|
|
34
|
+
export declare class RangeBandSettingsDirective extends ArrayBase<RangeBandSettingsDirective> {
|
|
35
|
+
constructor();
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeBandSettingsDirective, never>;
|
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeBandSettingsDirective, "ejs-sparkline>e-rangeBandSettings", never, {}, {}, ["children"]>;
|
|
38
|
+
}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
*
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { ValueProvider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "./sparkline.module";
|
|
5
|
+
export declare const SparklineTooltipService: ValueProvider;
|
|
6
|
+
/**
|
|
7
|
+
* NgModule definition for the Sparkline component with providers.
|
|
8
|
+
*/
|
|
9
|
+
export declare class SparklineAllModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SparklineAllModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SparklineAllModule, never, [typeof i1.CommonModule, typeof i2.SparklineModule], [typeof i2.SparklineModule]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SparklineAllModule>;
|
|
13
|
+
}
|