@covalent/echarts 6.3.0 → 7.0.0
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/bar/bar.component.d.ts +1 -1
- package/base/axis/axis.component.d.ts +1 -1
- package/base/axis/x-axis.component.d.ts +1 -1
- package/base/axis/y-axis.component.d.ts +1 -1
- package/base/chart.component.d.ts +1 -1
- package/base/dataset/dataset.component.d.ts +1 -1
- package/base/series/series.component.d.ts +1 -1
- package/clustering/clustering.component.d.ts +1 -1
- package/esm2022/bar/bar.component.mjs +163 -0
- package/{esm2020 → esm2022}/bar/bar.module.mjs +5 -5
- package/esm2022/base/axis/axis.component.mjs +157 -0
- package/esm2022/base/axis/x-axis.component.mjs +56 -0
- package/esm2022/base/axis/y-axis.component.mjs +56 -0
- package/{esm2020 → esm2022}/base/base.module.mjs +11 -11
- package/esm2022/base/chart-options.service.mjs +63 -0
- package/esm2022/base/chart.component.mjs +211 -0
- package/esm2022/base/dataset/dataset.component.mjs +57 -0
- package/esm2022/base/series/series.component.mjs +106 -0
- package/esm2022/clustering/clustering.component.mjs +275 -0
- package/{esm2020 → esm2022}/clustering/clustering.module.mjs +5 -5
- package/esm2022/graph/graph.component.mjs +230 -0
- package/{esm2020 → esm2022}/graph/graph.module.mjs +5 -5
- package/esm2022/histogram/histogram.component.mjs +127 -0
- package/{esm2020 → esm2022}/histogram/histogram.module.mjs +5 -5
- package/esm2022/line/line.component.mjs +195 -0
- package/{esm2020 → esm2022}/line/line.module.mjs +5 -5
- package/esm2022/map/map.component.mjs +159 -0
- package/{esm2020 → esm2022}/map/map.module.mjs +5 -5
- package/esm2022/pie/pie.component.mjs +153 -0
- package/{esm2020 → esm2022}/pie/pie.module.mjs +5 -5
- package/esm2022/regression/regression.component.mjs +140 -0
- package/{esm2020 → esm2022}/regression/regression.module.mjs +5 -5
- package/esm2022/sankey/sankey.component.mjs +139 -0
- package/{esm2020 → esm2022}/sankey/sankey.module.mjs +5 -5
- package/esm2022/scatter/scatter.component.mjs +175 -0
- package/{esm2020 → esm2022}/scatter/scatter.module.mjs +5 -5
- package/esm2022/toolbox/toolbox.component.mjs +149 -0
- package/{esm2020 → esm2022}/toolbox/toolbox.module.mjs +7 -7
- package/esm2022/tooltip/series-tooltip.component.mjs +112 -0
- package/esm2022/tooltip/tooltip.component.mjs +168 -0
- package/{esm2020 → esm2022}/tooltip/tooltip.module.mjs +9 -9
- package/esm2022/tree/tree.component.mjs +139 -0
- package/{esm2020 → esm2022}/tree/tree.module.mjs +5 -5
- package/esm2022/treemap/treemap.component.mjs +182 -0
- package/{esm2020 → esm2022}/treemap/treemap.module.mjs +5 -5
- package/esm2022/wordcloud/wordcloud.component.mjs +106 -0
- package/{esm2020 → esm2022}/wordcloud/wordcloud.module.mjs +5 -5
- package/{fesm2015 → fesm2022}/covalent-echarts-bar.mjs +40 -12
- package/fesm2022/covalent-echarts-bar.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/covalent-echarts-base.mjs +135 -69
- package/{fesm2015 → fesm2022}/covalent-echarts-base.mjs.map +1 -1
- package/{fesm2015 → fesm2022}/covalent-echarts-clustering.mjs +54 -12
- package/{fesm2020 → fesm2022}/covalent-echarts-clustering.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-graph.mjs +57 -12
- package/{fesm2015 → fesm2022}/covalent-echarts-graph.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-histogram.mjs +14 -12
- package/{fesm2020 → fesm2022}/covalent-echarts-histogram.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-line.mjs +48 -12
- package/fesm2022/covalent-echarts-line.mjs.map +1 -0
- package/{fesm2015 → fesm2022}/covalent-echarts-map.mjs +39 -12
- package/{fesm2020 → fesm2022}/covalent-echarts-map.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-pie.mjs +38 -12
- package/fesm2022/covalent-echarts-pie.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/covalent-echarts-regression.mjs +15 -12
- package/fesm2022/covalent-echarts-regression.mjs.map +1 -0
- package/{fesm2015 → fesm2022}/covalent-echarts-sankey.mjs +34 -12
- package/fesm2022/covalent-echarts-sankey.mjs.map +1 -0
- package/{fesm2015 → fesm2022}/covalent-echarts-scatter.mjs +43 -12
- package/fesm2022/covalent-echarts-scatter.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/covalent-echarts-toolbox.mjs +37 -23
- package/{fesm2020 → fesm2022}/covalent-echarts-toolbox.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-tooltip.mjs +69 -47
- package/{fesm2015 → fesm2022}/covalent-echarts-tooltip.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-tree.mjs +34 -12
- package/{fesm2015 → fesm2022}/covalent-echarts-tree.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-echarts-treemap.mjs +46 -13
- package/fesm2022/covalent-echarts-treemap.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/covalent-echarts-wordcloud.mjs +26 -12
- package/fesm2022/covalent-echarts-wordcloud.mjs.map +1 -0
- package/graph/graph.component.d.ts +1 -1
- package/histogram/histogram.component.d.ts +1 -1
- package/line/line.component.d.ts +1 -1
- package/map/map.component.d.ts +1 -1
- package/package.json +57 -96
- package/pie/pie.component.d.ts +1 -1
- package/regression/regression.component.d.ts +1 -1
- package/sankey/sankey.component.d.ts +1 -1
- package/scatter/scatter.component.d.ts +1 -1
- package/toolbox/toolbox.component.d.ts +1 -1
- package/tooltip/series-tooltip.component.d.ts +1 -1
- package/tooltip/tooltip.component.d.ts +1 -1
- package/tree/tree.component.d.ts +1 -1
- package/treemap/treemap.component.d.ts +2 -2
- package/wordcloud/wordcloud.component.d.ts +1 -1
- package/base/src/axis/README.md +0 -58
- package/base/src/dataset/README.md +0 -80
- package/esm2020/bar/bar.component.mjs +0 -135
- package/esm2020/base/axis/axis.component.mjs +0 -127
- package/esm2020/base/axis/x-axis.component.mjs +0 -55
- package/esm2020/base/axis/y-axis.component.mjs +0 -55
- package/esm2020/base/chart-options.service.mjs +0 -65
- package/esm2020/base/chart.component.mjs +0 -195
- package/esm2020/base/dataset/dataset.component.mjs +0 -52
- package/esm2020/base/series/series.component.mjs +0 -91
- package/esm2020/clustering/clustering.component.mjs +0 -233
- package/esm2020/graph/graph.component.mjs +0 -185
- package/esm2020/histogram/histogram.component.mjs +0 -125
- package/esm2020/line/line.component.mjs +0 -159
- package/esm2020/map/map.component.mjs +0 -132
- package/esm2020/pie/pie.component.mjs +0 -127
- package/esm2020/regression/regression.component.mjs +0 -137
- package/esm2020/sankey/sankey.component.mjs +0 -117
- package/esm2020/scatter/scatter.component.mjs +0 -144
- package/esm2020/toolbox/toolbox.component.mjs +0 -135
- package/esm2020/tooltip/series-tooltip.component.mjs +0 -102
- package/esm2020/tooltip/tooltip.component.mjs +0 -156
- package/esm2020/tree/tree.component.mjs +0 -117
- package/esm2020/treemap/treemap.component.mjs +0 -149
- package/esm2020/wordcloud/wordcloud.component.mjs +0 -92
- package/fesm2015/covalent-echarts-bar.mjs.map +0 -1
- package/fesm2015/covalent-echarts-base.mjs +0 -4931
- package/fesm2015/covalent-echarts-clustering.mjs.map +0 -1
- package/fesm2015/covalent-echarts-graph.mjs +0 -210
- package/fesm2015/covalent-echarts-histogram.mjs +0 -151
- package/fesm2015/covalent-echarts-histogram.mjs.map +0 -1
- package/fesm2015/covalent-echarts-line.mjs +0 -182
- package/fesm2015/covalent-echarts-line.mjs.map +0 -1
- package/fesm2015/covalent-echarts-map.mjs.map +0 -1
- package/fesm2015/covalent-echarts-pie.mjs +0 -150
- package/fesm2015/covalent-echarts-pie.mjs.map +0 -1
- package/fesm2015/covalent-echarts-regression.mjs +0 -163
- package/fesm2015/covalent-echarts-regression.mjs.map +0 -1
- package/fesm2015/covalent-echarts-sankey.mjs.map +0 -1
- package/fesm2015/covalent-echarts-scatter.mjs.map +0 -1
- package/fesm2015/covalent-echarts-toolbox.mjs +0 -158
- package/fesm2015/covalent-echarts-toolbox.mjs.map +0 -1
- package/fesm2015/covalent-echarts-tooltip.mjs +0 -283
- package/fesm2015/covalent-echarts-tree.mjs +0 -140
- package/fesm2015/covalent-echarts-treemap.mjs +0 -174
- package/fesm2015/covalent-echarts-treemap.mjs.map +0 -1
- package/fesm2015/covalent-echarts-wordcloud.mjs +0 -117
- package/fesm2015/covalent-echarts-wordcloud.mjs.map +0 -1
- package/fesm2020/covalent-echarts-bar.mjs +0 -158
- package/fesm2020/covalent-echarts-bar.mjs.map +0 -1
- package/fesm2020/covalent-echarts-base.mjs.map +0 -1
- package/fesm2020/covalent-echarts-clustering.mjs +0 -258
- package/fesm2020/covalent-echarts-graph.mjs.map +0 -1
- package/fesm2020/covalent-echarts-line.mjs.map +0 -1
- package/fesm2020/covalent-echarts-map.mjs +0 -155
- package/fesm2020/covalent-echarts-pie.mjs.map +0 -1
- package/fesm2020/covalent-echarts-regression.mjs.map +0 -1
- package/fesm2020/covalent-echarts-sankey.mjs +0 -142
- package/fesm2020/covalent-echarts-sankey.mjs.map +0 -1
- package/fesm2020/covalent-echarts-scatter.mjs +0 -169
- package/fesm2020/covalent-echarts-scatter.mjs.map +0 -1
- package/fesm2020/covalent-echarts-tooltip.mjs.map +0 -1
- package/fesm2020/covalent-echarts-tree.mjs.map +0 -1
- package/fesm2020/covalent-echarts-treemap.mjs.map +0 -1
- package/fesm2020/covalent-echarts-wordcloud.mjs.map +0 -1
- package/fesm2020/covalent-echarts.mjs +0 -4
- package/fesm2020/covalent-echarts.mjs.map +0 -1
- /package/{esm2020 → esm2022}/bar/covalent-echarts-bar.mjs +0 -0
- /package/{esm2020 → esm2022}/bar/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/base/axis/axis.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/base/base.types.mjs +0 -0
- /package/{esm2020 → esm2022}/base/covalent-echarts-base.mjs +0 -0
- /package/{esm2020 → esm2022}/base/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/base/series/series.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/aqua-splash.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/california-coast.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/hawaiian-sunrise.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/passion-flower.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/razzleberry-pie.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/teradata-classic.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/teradata-default.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/urban-sunrise.mjs +0 -0
- /package/{esm2020 → esm2022}/base/themes/volcanic-eruption.mjs +0 -0
- /package/{esm2020 → esm2022}/base/utils/assign-defined.mjs +0 -0
- /package/{esm2020 → esm2022}/base/utils/echarts.mjs +0 -0
- /package/{esm2020 → esm2022}/base/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/clustering/covalent-echarts-clustering.mjs +0 -0
- /package/{esm2020 → esm2022}/clustering/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/covalent-echarts.mjs +0 -0
- /package/{esm2020 → esm2022}/graph/covalent-echarts-graph.mjs +0 -0
- /package/{esm2020 → esm2022}/graph/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/histogram/covalent-echarts-histogram.mjs +0 -0
- /package/{esm2020 → esm2022}/histogram/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/line/covalent-echarts-line.mjs +0 -0
- /package/{esm2020 → esm2022}/line/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/map/covalent-echarts-map.mjs +0 -0
- /package/{esm2020 → esm2022}/map/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/pie/covalent-echarts-pie.mjs +0 -0
- /package/{esm2020 → esm2022}/pie/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/regression/covalent-echarts-regression.mjs +0 -0
- /package/{esm2020 → esm2022}/regression/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/sankey/covalent-echarts-sankey.mjs +0 -0
- /package/{esm2020 → esm2022}/sankey/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/scatter/covalent-echarts-scatter.mjs +0 -0
- /package/{esm2020 → esm2022}/scatter/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/toolbox/covalent-echarts-toolbox.mjs +0 -0
- /package/{esm2020 → esm2022}/toolbox/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/covalent-echarts-tooltip.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/covalent-echarts-tree.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/treemap/covalent-echarts-treemap.mjs +0 -0
- /package/{esm2020 → esm2022}/treemap/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/wordcloud/covalent-echarts-wordcloud.mjs +0 -0
- /package/{esm2020 → esm2022}/wordcloud/public_api.mjs +0 -0
- /package/{fesm2015 → fesm2022}/covalent-echarts.mjs +0 -0
- /package/{fesm2015 → fesm2022}/covalent-echarts.mjs.map +0 -0
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
import * as i1 from '@covalent/echarts/base';
|
|
5
|
-
import { TdSeriesDirective } from '@covalent/echarts/base';
|
|
6
|
-
|
|
7
|
-
class TdChartSeriesWordcloudComponent extends TdSeriesDirective {
|
|
8
|
-
constructor(_optionsService) {
|
|
9
|
-
super('wordCloud', _optionsService);
|
|
10
|
-
}
|
|
11
|
-
getConfig() {
|
|
12
|
-
return {
|
|
13
|
-
shape: this.shape,
|
|
14
|
-
left: this.left,
|
|
15
|
-
top: this.top,
|
|
16
|
-
width: this.width,
|
|
17
|
-
height: this.height,
|
|
18
|
-
right: this.right,
|
|
19
|
-
bottom: this.bottom,
|
|
20
|
-
sizeRange: this.sizeRange,
|
|
21
|
-
rotationRange: this.rotationRange,
|
|
22
|
-
rotationStep: this.rotationStep,
|
|
23
|
-
gridSize: this.gridSize,
|
|
24
|
-
drawOutOfBound: this.drawOutOfBound,
|
|
25
|
-
textStyle: this.textStyle,
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
TdChartSeriesWordcloudComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesWordcloudComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
30
|
-
TdChartSeriesWordcloudComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.5", type: TdChartSeriesWordcloudComponent, selector: "td-chart-series[td-wordCloud]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", shape: "shape", left: "left", top: "top", width: "width", height: "height", right: "right", bottom: "bottom", sizeRange: "sizeRange", rotationRange: "rotationRange", rotationStep: "rotationStep", gridSize: "gridSize", drawOutOfBound: "drawOutOfBound", textStyle: "textStyle" }, providers: [
|
|
31
|
-
{
|
|
32
|
-
provide: TdSeriesDirective,
|
|
33
|
-
useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
|
|
34
|
-
},
|
|
35
|
-
], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesWordcloudComponent, decorators: [{
|
|
37
|
-
type: Component,
|
|
38
|
-
args: [{
|
|
39
|
-
selector: 'td-chart-series[td-wordCloud]',
|
|
40
|
-
template: '',
|
|
41
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
42
|
-
inputs: [
|
|
43
|
-
'config',
|
|
44
|
-
'id',
|
|
45
|
-
'name',
|
|
46
|
-
'color',
|
|
47
|
-
'data',
|
|
48
|
-
'animation',
|
|
49
|
-
'animationThreshold',
|
|
50
|
-
'animationDuration',
|
|
51
|
-
'animationEasing',
|
|
52
|
-
'animationDelay',
|
|
53
|
-
'animationDurationUpdate',
|
|
54
|
-
'animationEasingUpdate',
|
|
55
|
-
'animationDelayUpdate',
|
|
56
|
-
'tooltip',
|
|
57
|
-
],
|
|
58
|
-
providers: [
|
|
59
|
-
{
|
|
60
|
-
provide: TdSeriesDirective,
|
|
61
|
-
useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
|
|
62
|
-
},
|
|
63
|
-
],
|
|
64
|
-
}]
|
|
65
|
-
}], ctorParameters: function () { return [{ type: i1.TdChartOptionsService }]; }, propDecorators: { data: [{
|
|
66
|
-
type: Input
|
|
67
|
-
}], shape: [{
|
|
68
|
-
type: Input
|
|
69
|
-
}], left: [{
|
|
70
|
-
type: Input
|
|
71
|
-
}], top: [{
|
|
72
|
-
type: Input
|
|
73
|
-
}], width: [{
|
|
74
|
-
type: Input
|
|
75
|
-
}], height: [{
|
|
76
|
-
type: Input
|
|
77
|
-
}], right: [{
|
|
78
|
-
type: Input
|
|
79
|
-
}], bottom: [{
|
|
80
|
-
type: Input
|
|
81
|
-
}], sizeRange: [{
|
|
82
|
-
type: Input
|
|
83
|
-
}], rotationRange: [{
|
|
84
|
-
type: Input
|
|
85
|
-
}], rotationStep: [{
|
|
86
|
-
type: Input
|
|
87
|
-
}], gridSize: [{
|
|
88
|
-
type: Input
|
|
89
|
-
}], drawOutOfBound: [{
|
|
90
|
-
type: Input
|
|
91
|
-
}], textStyle: [{
|
|
92
|
-
type: Input
|
|
93
|
-
}] } });
|
|
94
|
-
|
|
95
|
-
const WORDCLOUD_MODULE_COMPONENTS = [
|
|
96
|
-
TdChartSeriesWordcloudComponent,
|
|
97
|
-
];
|
|
98
|
-
class CovalentWordcloudEchartsModule {
|
|
99
|
-
}
|
|
100
|
-
CovalentWordcloudEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
101
|
-
CovalentWordcloudEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, declarations: [TdChartSeriesWordcloudComponent], imports: [CommonModule], exports: [TdChartSeriesWordcloudComponent] });
|
|
102
|
-
CovalentWordcloudEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, imports: [CommonModule] });
|
|
103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentWordcloudEchartsModule, decorators: [{
|
|
104
|
-
type: NgModule,
|
|
105
|
-
args: [{
|
|
106
|
-
imports: [CommonModule],
|
|
107
|
-
declarations: [WORDCLOUD_MODULE_COMPONENTS],
|
|
108
|
-
exports: [WORDCLOUD_MODULE_COMPONENTS],
|
|
109
|
-
}]
|
|
110
|
-
}] });
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* Generated bundle index. Do not edit.
|
|
114
|
-
*/
|
|
115
|
-
|
|
116
|
-
export { CovalentWordcloudEchartsModule, TdChartSeriesWordcloudComponent, WORDCLOUD_MODULE_COMPONENTS };
|
|
117
|
-
//# sourceMappingURL=covalent-echarts-wordcloud.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-echarts-wordcloud.mjs","sources":["../../../../libs/angular-echarts/wordcloud/src/wordcloud.component.ts","../../../../libs/angular-echarts/wordcloud/src/wordcloud.module.ts","../../../../libs/angular-echarts/wordcloud/src/covalent-echarts-wordcloud.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdSeries,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport type TdWordcloudShape =\n | 'circle'\n | 'cardioid'\n | 'diamond'\n | 'triangle-forward'\n | 'triangle'\n | 'pentagon'\n | 'star';\n\nexport interface ITdWordcloudTextStyle {\n normal?: {\n fontFamily?: string;\n fontWeight?: string;\n color?: string | ((x: any) => string);\n };\n emphasis?: {\n shadowBlur?: number;\n shadowColor?: string;\n };\n}\n\nexport interface ITdWordCloudData {\n name: string;\n value: number;\n textStyle?: ITdWordcloudTextStyle;\n}\n\nexport interface ITdWordcloudSeries extends ITdSeries {\n data?: ITdWordCloudData[];\n shape?: TdWordcloudShape;\n left?: string | number;\n top?: string | number;\n width?: string | number;\n height?: string | number;\n right?: string | number;\n bottom?: string | number;\n sizeRange?: number[];\n rotationRange?: number[];\n rotationStep?: number;\n gridSize?: number;\n drawOutOfBound?: boolean;\n textStyle?: ITdWordcloudTextStyle;\n}\n\n@Component({\n selector: 'td-chart-series[td-wordCloud]',\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n inputs: [\n 'config',\n 'id',\n 'name',\n 'color',\n 'data',\n\n 'animation',\n 'animationThreshold',\n 'animationDuration',\n 'animationEasing',\n 'animationDelay',\n 'animationDurationUpdate',\n 'animationEasingUpdate',\n 'animationDelayUpdate',\n 'tooltip',\n ],\n providers: [\n {\n provide: TdSeriesDirective,\n useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),\n },\n ],\n})\nexport class TdChartSeriesWordcloudComponent\n extends TdSeriesDirective\n implements ITdWordcloudSeries\n{\n @Input() override data?: ITdWordCloudData[];\n @Input() shape?: TdWordcloudShape;\n @Input() left?: string | number;\n @Input() top?: string | number;\n @Input() width?: string | number;\n @Input() height?: string | number;\n @Input() right?: string | number;\n @Input() bottom?: string | number;\n @Input() sizeRange?: number[];\n @Input() rotationRange?: number[];\n @Input() rotationStep?: number;\n @Input() gridSize?: number;\n @Input() drawOutOfBound?: boolean;\n @Input() textStyle?: ITdWordcloudTextStyle;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('wordCloud', _optionsService);\n }\n\n getConfig(): any {\n return {\n shape: this.shape,\n left: this.left,\n top: this.top,\n width: this.width,\n height: this.height,\n right: this.right,\n bottom: this.bottom,\n sizeRange: this.sizeRange,\n rotationRange: this.rotationRange,\n rotationStep: this.rotationStep,\n gridSize: this.gridSize,\n drawOutOfBound: this.drawOutOfBound,\n textStyle: this.textStyle,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesWordcloudComponent } from './wordcloud.component';\n\nexport const WORDCLOUD_MODULE_COMPONENTS: Type<any>[] = [\n TdChartSeriesWordcloudComponent,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [WORDCLOUD_MODULE_COMPONENTS],\n exports: [WORDCLOUD_MODULE_COMPONENTS],\n})\nexport class CovalentWordcloudEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;;;AAqFM,MAAO,+BACX,SAAQ,iBAAiB,CAAA;AAkBzB,IAAA,WAAA,CAAY,eAAsC,EAAA;AAChD,QAAA,KAAK,CAAC,WAAW,EAAE,eAAe,CAAC,CAAC;KACrC;IAED,SAAS,GAAA;QACP,OAAO;YACL,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,aAAa,EAAE,IAAI,CAAC,aAAa;YACjC,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,SAAS,EAAE,IAAI,CAAC,SAAS;SAC1B,CAAC;KACH;;4HAvCU,+BAA+B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,qBAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA/B,+BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,+BAA+B,EAP/B,QAAA,EAAA,+BAAA,EAAA,MAAA,EAAA,EAAA,MAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,KAAA,EAAA,OAAA,EAAA,IAAA,EAAA,MAAA,EAAA,SAAA,EAAA,WAAA,EAAA,kBAAA,EAAA,oBAAA,EAAA,iBAAA,EAAA,mBAAA,EAAA,eAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,uBAAA,EAAA,yBAAA,EAAA,qBAAA,EAAA,uBAAA,EAAA,oBAAA,EAAA,sBAAA,EAAA,OAAA,EAAA,SAAA,EAAA,KAAA,EAAA,OAAA,EAAA,IAAA,EAAA,MAAA,EAAA,GAAA,EAAA,KAAA,EAAA,KAAA,EAAA,OAAA,EAAA,MAAA,EAAA,QAAA,EAAA,KAAA,EAAA,OAAA,EAAA,MAAA,EAAA,QAAA,EAAA,SAAA,EAAA,WAAA,EAAA,aAAA,EAAA,eAAA,EAAA,YAAA,EAAA,cAAA,EAAA,QAAA,EAAA,UAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,SAAA,EAAA,WAAA,EAAA,EAAA,SAAA,EAAA;AACT,QAAA;AACE,YAAA,OAAO,EAAE,iBAAiB;AAC1B,YAAA,WAAW,EAAE,UAAU,CAAC,MAAM,+BAA+B,CAAC;AAC/D,SAAA;KACF,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAxBS,EAAE,EAAA,QAAA,EAAA,IAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;2FA0BD,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBA5B3C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,+BAA+B;AACzC,oBAAA,QAAQ,EAAE,EAAE;oBACZ,eAAe,EAAE,uBAAuB,CAAC,MAAM;AAC/C,oBAAA,MAAM,EAAE;wBACN,QAAQ;wBACR,IAAI;wBACJ,MAAM;wBACN,OAAO;wBACP,MAAM;wBAEN,WAAW;wBACX,oBAAoB;wBACpB,mBAAmB;wBACnB,iBAAiB;wBACjB,gBAAgB;wBAChB,yBAAyB;wBACzB,uBAAuB;wBACvB,sBAAsB;wBACtB,SAAS;AACV,qBAAA;AACD,oBAAA,SAAS,EAAE;AACT,wBAAA;AACE,4BAAA,OAAO,EAAE,iBAAiB;AAC1B,4BAAA,WAAW,EAAE,UAAU,CAAC,qCAAqC,CAAC;AAC/D,yBAAA;AACF,qBAAA;iBACF,CAAA;4GAKmB,IAAI,EAAA,CAAA;sBAArB,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,GAAG,EAAA,CAAA;sBAAX,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACG,MAAM,EAAA,CAAA;sBAAd,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBACG,aAAa,EAAA,CAAA;sBAArB,KAAK;gBACG,YAAY,EAAA,CAAA;sBAApB,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,cAAc,EAAA,CAAA;sBAAtB,KAAK;gBACG,SAAS,EAAA,CAAA;sBAAjB,KAAK;;;ACjGK,MAAA,2BAA2B,GAAgB;IACtD,+BAA+B;EAC/B;MAOW,8BAA8B,CAAA;;2HAA9B,8BAA8B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAA9B,8BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,8BAA8B,EARzC,YAAA,EAAA,CAAA,+BAA+B,CAIrB,EAAA,OAAA,EAAA,CAAA,YAAY,aAJtB,+BAA+B,CAAA,EAAA,CAAA,CAAA;AAQpB,8BAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,8BAA8B,YAJ/B,YAAY,CAAA,EAAA,CAAA,CAAA;2FAIX,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAL1C,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,YAAY,EAAE,CAAC,2BAA2B,CAAC;oBAC3C,OAAO,EAAE,CAAC,2BAA2B,CAAC;iBACvC,CAAA;;;ACbD;;AAEG;;;;"}
|
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
import * as i1 from '@covalent/echarts/base';
|
|
5
|
-
import { TdSeriesDirective } from '@covalent/echarts/base';
|
|
6
|
-
|
|
7
|
-
class TdChartSeriesBarComponent extends TdSeriesDirective {
|
|
8
|
-
constructor(_optionsService) {
|
|
9
|
-
super('bar', _optionsService);
|
|
10
|
-
}
|
|
11
|
-
getConfig() {
|
|
12
|
-
return {
|
|
13
|
-
coordinateSystem: this.coordinateSystem,
|
|
14
|
-
xAxisIndex: this.xAxisIndex,
|
|
15
|
-
yAxisIndex: this.yAxisIndex,
|
|
16
|
-
legendHoverLink: this.legendHoverLink,
|
|
17
|
-
stack: this.stack,
|
|
18
|
-
cursor: this.cursor,
|
|
19
|
-
label: this.label,
|
|
20
|
-
itemStyle: this.itemStyle,
|
|
21
|
-
emphasis: this.emphasis,
|
|
22
|
-
barWidth: this.barWidth,
|
|
23
|
-
barMaxWidth: this.barMaxWidth,
|
|
24
|
-
barMinHeight: this.barMinHeight,
|
|
25
|
-
barGap: this.barGap,
|
|
26
|
-
barCategoryGap: this.barCategoryGap,
|
|
27
|
-
large: this.large,
|
|
28
|
-
largeThreshold: this.largeThreshold,
|
|
29
|
-
progressive: this.progressive,
|
|
30
|
-
progressiveThreshold: this.progressiveThreshold,
|
|
31
|
-
progressiveChunkMode: this.progressiveChunkMode,
|
|
32
|
-
dimensions: this.dimensions,
|
|
33
|
-
encode: this.encode,
|
|
34
|
-
seriesLayoutBy: this.seriesLayoutBy,
|
|
35
|
-
datasetIndex: this.datasetIndex,
|
|
36
|
-
markPoint: this.markPoint,
|
|
37
|
-
markLine: this.markLine,
|
|
38
|
-
markArea: this.markArea,
|
|
39
|
-
zlevel: this.zlevel,
|
|
40
|
-
z: this.z,
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
TdChartSeriesBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesBarComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
45
|
-
TdChartSeriesBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.5", type: TdChartSeriesBarComponent, selector: "td-chart-series[td-bar]", inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip", coordinateSystem: "coordinateSystem", xAxisIndex: "xAxisIndex", yAxisIndex: "yAxisIndex", legendHoverLink: "legendHoverLink", stack: "stack", cursor: "cursor", label: "label", itemStyle: "itemStyle", emphasis: "emphasis", barWidth: "barWidth", barMaxWidth: "barMaxWidth", barMinHeight: "barMinHeight", barGap: "barGap", barCategoryGap: "barCategoryGap", large: "large", largeThreshold: "largeThreshold", progressive: "progressive", progressiveThreshold: "progressiveThreshold", progressiveChunkMode: "progressiveChunkMode", dimensions: "dimensions", encode: "encode", seriesLayoutBy: "seriesLayoutBy", datasetIndex: "datasetIndex", markPoint: "markPoint", markLine: "markLine", markArea: "markArea", zlevel: "zlevel", z: "z" }, providers: [
|
|
46
|
-
{
|
|
47
|
-
provide: TdSeriesDirective,
|
|
48
|
-
useExisting: forwardRef(() => TdChartSeriesBarComponent),
|
|
49
|
-
},
|
|
50
|
-
], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
51
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdChartSeriesBarComponent, decorators: [{
|
|
52
|
-
type: Component,
|
|
53
|
-
args: [{
|
|
54
|
-
selector: 'td-chart-series[td-bar]',
|
|
55
|
-
template: '',
|
|
56
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
57
|
-
inputs: [
|
|
58
|
-
'config',
|
|
59
|
-
'id',
|
|
60
|
-
'name',
|
|
61
|
-
'color',
|
|
62
|
-
'data',
|
|
63
|
-
'animation',
|
|
64
|
-
'animationThreshold',
|
|
65
|
-
'animationDuration',
|
|
66
|
-
'animationEasing',
|
|
67
|
-
'animationDelay',
|
|
68
|
-
'animationDurationUpdate',
|
|
69
|
-
'animationEasingUpdate',
|
|
70
|
-
'animationDelayUpdate',
|
|
71
|
-
'tooltip',
|
|
72
|
-
],
|
|
73
|
-
providers: [
|
|
74
|
-
{
|
|
75
|
-
provide: TdSeriesDirective,
|
|
76
|
-
useExisting: forwardRef(() => TdChartSeriesBarComponent),
|
|
77
|
-
},
|
|
78
|
-
],
|
|
79
|
-
}]
|
|
80
|
-
}], ctorParameters: function () { return [{ type: i1.TdChartOptionsService }]; }, propDecorators: { coordinateSystem: [{
|
|
81
|
-
type: Input
|
|
82
|
-
}], xAxisIndex: [{
|
|
83
|
-
type: Input
|
|
84
|
-
}], yAxisIndex: [{
|
|
85
|
-
type: Input
|
|
86
|
-
}], legendHoverLink: [{
|
|
87
|
-
type: Input
|
|
88
|
-
}], stack: [{
|
|
89
|
-
type: Input
|
|
90
|
-
}], cursor: [{
|
|
91
|
-
type: Input
|
|
92
|
-
}], label: [{
|
|
93
|
-
type: Input
|
|
94
|
-
}], itemStyle: [{
|
|
95
|
-
type: Input
|
|
96
|
-
}], emphasis: [{
|
|
97
|
-
type: Input
|
|
98
|
-
}], barWidth: [{
|
|
99
|
-
type: Input
|
|
100
|
-
}], barMaxWidth: [{
|
|
101
|
-
type: Input
|
|
102
|
-
}], barMinHeight: [{
|
|
103
|
-
type: Input
|
|
104
|
-
}], barGap: [{
|
|
105
|
-
type: Input
|
|
106
|
-
}], barCategoryGap: [{
|
|
107
|
-
type: Input
|
|
108
|
-
}], large: [{
|
|
109
|
-
type: Input
|
|
110
|
-
}], largeThreshold: [{
|
|
111
|
-
type: Input
|
|
112
|
-
}], progressive: [{
|
|
113
|
-
type: Input
|
|
114
|
-
}], progressiveThreshold: [{
|
|
115
|
-
type: Input
|
|
116
|
-
}], progressiveChunkMode: [{
|
|
117
|
-
type: Input
|
|
118
|
-
}], dimensions: [{
|
|
119
|
-
type: Input
|
|
120
|
-
}], encode: [{
|
|
121
|
-
type: Input
|
|
122
|
-
}], seriesLayoutBy: [{
|
|
123
|
-
type: Input
|
|
124
|
-
}], datasetIndex: [{
|
|
125
|
-
type: Input
|
|
126
|
-
}], markPoint: [{
|
|
127
|
-
type: Input
|
|
128
|
-
}], markLine: [{
|
|
129
|
-
type: Input
|
|
130
|
-
}], markArea: [{
|
|
131
|
-
type: Input
|
|
132
|
-
}], zlevel: [{
|
|
133
|
-
type: Input
|
|
134
|
-
}], z: [{
|
|
135
|
-
type: Input
|
|
136
|
-
}] } });
|
|
137
|
-
|
|
138
|
-
const BAR_MODULE_COMPONENTS = [TdChartSeriesBarComponent];
|
|
139
|
-
class CovalentBarEchartsModule {
|
|
140
|
-
}
|
|
141
|
-
CovalentBarEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentBarEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
142
|
-
CovalentBarEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: CovalentBarEchartsModule, declarations: [TdChartSeriesBarComponent], imports: [CommonModule], exports: [TdChartSeriesBarComponent] });
|
|
143
|
-
CovalentBarEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentBarEchartsModule, imports: [CommonModule] });
|
|
144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentBarEchartsModule, decorators: [{
|
|
145
|
-
type: NgModule,
|
|
146
|
-
args: [{
|
|
147
|
-
imports: [CommonModule],
|
|
148
|
-
declarations: [BAR_MODULE_COMPONENTS],
|
|
149
|
-
exports: [BAR_MODULE_COMPONENTS],
|
|
150
|
-
}]
|
|
151
|
-
}] });
|
|
152
|
-
|
|
153
|
-
/**
|
|
154
|
-
* Generated bundle index. Do not edit.
|
|
155
|
-
*/
|
|
156
|
-
|
|
157
|
-
export { BAR_MODULE_COMPONENTS, CovalentBarEchartsModule, TdChartSeriesBarComponent };
|
|
158
|
-
//# sourceMappingURL=covalent-echarts-bar.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-echarts-bar.mjs","sources":["../../../../libs/angular-echarts/bar/src/bar.component.ts","../../../../libs/angular-echarts/bar/src/bar.module.ts","../../../../libs/angular-echarts/bar/src/covalent-echarts-bar.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\nimport {\n TdChartOptionsService,\n TdCoordinateSystem,\n ITdItemStyle,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n TdProgressiveChunkMode,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport interface ITdBarSeries extends ITdSeries {\n legendHoverLink?: boolean;\n coordinateSystem?: TdCoordinateSystem;\n xAxisIndex?: number;\n yAxisIndex?: number;\n Label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n emphasis?: ITdEmphasis;\n stack?: string;\n cursor?: string;\n barWidth?: number | string;\n barMaxWidth?: number | string;\n barMinHeight?: number;\n barGap?: string;\n barCategoryGap?: string;\n large?: boolean;\n largeThreshold?: number;\n progressive?: number;\n progressiveThreshold?: number;\n progressiveChunkMode?: TdProgressiveChunkMode;\n dimensions?: any[];\n encode?: any;\n seriesLayoutBy?: TdSeriesLayoutBy;\n datasetIndex?: number;\n data?: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n Zlevel?: 0;\n z?: number;\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-bar]',\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n inputs: [\n 'config',\n 'id',\n 'name',\n 'color',\n 'data',\n\n 'animation',\n 'animationThreshold',\n 'animationDuration',\n 'animationEasing',\n 'animationDelay',\n 'animationDurationUpdate',\n 'animationEasingUpdate',\n 'animationDelayUpdate',\n 'tooltip',\n ],\n providers: [\n {\n provide: TdSeriesDirective,\n useExisting: forwardRef(() => TdChartSeriesBarComponent),\n },\n ],\n})\nexport class TdChartSeriesBarComponent\n extends TdSeriesDirective\n implements ITdBarSeries\n{\n @Input() coordinateSystem?: TdCoordinateSystem;\n @Input() xAxisIndex?: number;\n @Input() yAxisIndex?: number;\n @Input() legendHoverLink?: boolean;\n @Input() stack?: string;\n @Input() cursor?: string;\n @Input() label?: any;\n @Input() itemStyle?: ITdItemStyle;\n @Input() emphasis?: ITdEmphasis;\n @Input() barWidth?: number;\n @Input() barMaxWidth?: number;\n @Input() barMinHeight?: number;\n @Input() barGap?: string;\n @Input() barCategoryGap?: string;\n @Input() large?: boolean;\n @Input() largeThreshold?: number;\n @Input() progressive?: number;\n @Input() progressiveThreshold?: number;\n @Input() progressiveChunkMode?: TdProgressiveChunkMode;\n @Input() dimensions?: any[];\n @Input() encode: any;\n @Input() seriesLayoutBy?: TdSeriesLayoutBy;\n @Input() datasetIndex?: number;\n @Input() markPoint?: ITdMarkPoint;\n @Input() markLine?: ITdMarkLine;\n @Input() markArea?: ITdMarkArea;\n @Input() zlevel?: number;\n @Input() z?: number;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('bar', _optionsService);\n }\n\n getConfig(): any {\n return {\n coordinateSystem: this.coordinateSystem,\n xAxisIndex: this.xAxisIndex,\n yAxisIndex: this.yAxisIndex,\n legendHoverLink: this.legendHoverLink,\n stack: this.stack,\n cursor: this.cursor,\n label: this.label,\n itemStyle: this.itemStyle,\n emphasis: this.emphasis,\n barWidth: this.barWidth,\n barMaxWidth: this.barMaxWidth,\n barMinHeight: this.barMinHeight,\n barGap: this.barGap,\n barCategoryGap: this.barCategoryGap,\n large: this.large,\n largeThreshold: this.largeThreshold,\n progressive: this.progressive,\n progressiveThreshold: this.progressiveThreshold,\n progressiveChunkMode: this.progressiveChunkMode,\n dimensions: this.dimensions,\n encode: this.encode,\n seriesLayoutBy: this.seriesLayoutBy,\n datasetIndex: this.datasetIndex,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesBarComponent } from './bar.component';\n\nexport const BAR_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesBarComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [BAR_MODULE_COMPONENTS],\n exports: [BAR_MODULE_COMPONENTS],\n})\nexport class CovalentBarEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
|