@covalent/echarts 4.0.0-alpha.0 → 4.0.0-beta.4
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 +3 -0
- package/bar/bar.module.d.ts +6 -1
- package/bar/covalent-echarts-bar.d.ts +1 -0
- package/bar/package.json +6 -7
- package/base/axis/axis.component.d.ts +3 -0
- package/base/axis/x-axis.component.d.ts +3 -0
- package/base/axis/y-axis.component.d.ts +3 -0
- package/base/base.module.d.ts +9 -1
- package/base/chart-options.service.d.ts +3 -0
- package/base/chart.component.d.ts +3 -0
- package/base/covalent-echarts-base.d.ts +1 -1
- package/base/dataset/dataset.component.d.ts +3 -0
- package/base/package.json +6 -7
- package/base/series/series.component.d.ts +3 -0
- package/covalent-echarts.d.ts +1 -0
- package/esm2020/bar/bar.component.mjs +136 -0
- package/esm2020/bar/bar.module.mjs +20 -0
- package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
- package/esm2020/bar/index.mjs +2 -0
- package/esm2020/bar/public-api.mjs +3 -0
- package/esm2020/base/axis/axis.component.mjs +127 -0
- package/esm2020/base/axis/axis.interface.mjs +2 -0
- package/esm2020/base/axis/x-axis.component.mjs +55 -0
- package/esm2020/base/axis/y-axis.component.mjs +55 -0
- package/esm2020/base/base.module.mjs +36 -0
- package/esm2020/base/base.types.mjs +2 -0
- package/esm2020/base/chart-options.service.mjs +65 -0
- package/esm2020/base/chart.component.mjs +191 -0
- package/esm2020/base/covalent-echarts-base.mjs +5 -0
- package/esm2020/base/dataset/dataset.component.mjs +52 -0
- package/esm2020/base/index.mjs +2 -0
- package/esm2020/base/public-api.mjs +10 -0
- package/esm2020/base/series/series.component.mjs +91 -0
- package/esm2020/base/series/series.interface.mjs +2 -0
- package/{esm2015/base/themes/teradata-classic.js → esm2020/base/themes/aqua-splash.mjs} +10 -15
- package/esm2020/base/themes/california-coast.mjs +460 -0
- package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
- package/{esm2015/base/themes/volcanic-eruption.js → esm2020/base/themes/passion-flower.mjs} +18 -23
- package/esm2020/base/themes/razzleberry-pie.mjs +460 -0
- package/esm2020/base/themes/teradata-classic.mjs +460 -0
- package/{esm2015/base/themes/hawaiian-sunrise.js → esm2020/base/themes/teradata-default.mjs} +18 -23
- package/esm2020/base/themes/urban-sunrise.mjs +460 -0
- package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
- package/esm2020/base/utils/assign-defined.mjs +25 -0
- package/esm2020/base/utils/echarts.mjs +49 -0
- package/esm2020/base/utils/index.mjs +3 -0
- package/esm2020/covalent-echarts.mjs +5 -0
- package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
- package/esm2020/graph/graph.component.mjs +186 -0
- package/esm2020/graph/graph.module.mjs +20 -0
- package/esm2020/graph/index.mjs +2 -0
- package/esm2020/graph/public-api.mjs +3 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/line/covalent-echarts-line.mjs +5 -0
- package/esm2020/line/index.mjs +2 -0
- package/esm2020/line/line.component.mjs +160 -0
- package/esm2020/line/line.module.mjs +20 -0
- package/esm2020/line/public-api.mjs +3 -0
- package/esm2020/map/covalent-echarts-map.mjs +5 -0
- package/esm2020/map/index.mjs +2 -0
- package/esm2020/map/map.component.mjs +133 -0
- package/esm2020/map/map.module.mjs +20 -0
- package/esm2020/map/public-api.mjs +3 -0
- package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
- package/esm2020/pie/index.mjs +2 -0
- package/esm2020/pie/pie.component.mjs +128 -0
- package/esm2020/pie/pie.module.mjs +20 -0
- package/esm2020/pie/public-api.mjs +3 -0
- package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
- package/esm2020/sankey/index.mjs +2 -0
- package/esm2020/sankey/public-api.mjs +3 -0
- package/esm2020/sankey/sankey.component.mjs +118 -0
- package/esm2020/sankey/sankey.module.mjs +20 -0
- package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
- package/esm2020/scatter/index.mjs +2 -0
- package/esm2020/scatter/public-api.mjs +3 -0
- package/esm2020/scatter/scatter.component.mjs +145 -0
- package/esm2020/scatter/scatter.module.mjs +20 -0
- package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
- package/esm2020/toolbox/index.mjs +2 -0
- package/esm2020/toolbox/public-api.mjs +3 -0
- package/esm2020/toolbox/toolbox.component.mjs +151 -0
- package/esm2020/toolbox/toolbox.module.mjs +20 -0
- package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
- package/esm2020/tooltip/index.mjs +2 -0
- package/esm2020/tooltip/public-api.mjs +4 -0
- package/esm2020/tooltip/series-tooltip.component.mjs +111 -0
- package/esm2020/tooltip/tooltip.component.mjs +165 -0
- package/esm2020/tooltip/tooltip.module.mjs +29 -0
- package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
- package/esm2020/tree/index.mjs +2 -0
- package/esm2020/tree/public-api.mjs +3 -0
- package/esm2020/tree/tree.component.mjs +118 -0
- package/esm2020/tree/tree.module.mjs +20 -0
- package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
- package/esm2020/treemap/index.mjs +2 -0
- package/esm2020/treemap/public-api.mjs +3 -0
- package/esm2020/treemap/treemap.component.mjs +150 -0
- package/esm2020/treemap/treemap.module.mjs +20 -0
- package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
- package/esm2020/wordcloud/index.mjs +2 -0
- package/esm2020/wordcloud/public-api.mjs +3 -0
- package/esm2020/wordcloud/wordcloud.component.mjs +93 -0
- package/esm2020/wordcloud/wordcloud.module.mjs +20 -0
- package/fesm2015/covalent-echarts-bar.mjs +164 -0
- package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
- package/fesm2015/covalent-echarts-base.mjs +4864 -0
- package/fesm2015/covalent-echarts-base.mjs.map +1 -0
- package/fesm2015/covalent-echarts-graph.mjs +214 -0
- package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
- package/fesm2015/covalent-echarts-line.mjs +188 -0
- package/fesm2015/covalent-echarts-line.mjs.map +1 -0
- package/fesm2015/covalent-echarts-map.mjs +161 -0
- package/fesm2015/{covalent-echarts-map.js.map → covalent-echarts-map.mjs.map} +1 -1
- package/fesm2015/covalent-echarts-pie.mjs +156 -0
- package/fesm2015/{covalent-echarts-pie.js.map → covalent-echarts-pie.mjs.map} +1 -1
- package/fesm2015/covalent-echarts-sankey.mjs +146 -0
- package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
- package/fesm2015/covalent-echarts-scatter.mjs +173 -0
- package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
- package/fesm2015/covalent-echarts-toolbox.mjs +184 -0
- package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
- package/fesm2015/covalent-echarts-tooltip.mjs +330 -0
- package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2015/covalent-echarts-tree.mjs +146 -0
- package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
- package/fesm2015/covalent-echarts-treemap.mjs +178 -0
- package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
- package/fesm2015/covalent-echarts-wordcloud.mjs +121 -0
- package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
- package/fesm2015/covalent-echarts.mjs +4 -0
- package/fesm2015/covalent-echarts.mjs.map +1 -0
- package/fesm2020/covalent-echarts-bar.mjs +160 -0
- package/{fesm2015/covalent-echarts-bar.js.map → fesm2020/covalent-echarts-bar.mjs.map} +1 -1
- package/{fesm2015/covalent-echarts-base.js → fesm2020/covalent-echarts-base.mjs} +218 -769
- package/fesm2020/covalent-echarts-base.mjs.map +1 -0
- package/fesm2020/covalent-echarts-graph.mjs +210 -0
- package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
- package/fesm2020/covalent-echarts-line.mjs +184 -0
- package/fesm2020/covalent-echarts-line.mjs.map +1 -0
- package/fesm2020/covalent-echarts-map.mjs +157 -0
- package/fesm2020/covalent-echarts-map.mjs.map +1 -0
- package/fesm2020/covalent-echarts-pie.mjs +152 -0
- package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
- package/fesm2020/covalent-echarts-sankey.mjs +142 -0
- package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
- package/fesm2020/covalent-echarts-scatter.mjs +169 -0
- package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
- package/fesm2020/covalent-echarts-toolbox.mjs +175 -0
- package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tooltip.mjs +302 -0
- package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tree.mjs +142 -0
- package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
- package/fesm2020/covalent-echarts-treemap.mjs +174 -0
- package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
- package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
- package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
- package/fesm2020/covalent-echarts.mjs +4 -0
- package/fesm2020/covalent-echarts.mjs.map +1 -0
- package/graph/covalent-echarts-graph.d.ts +1 -0
- package/graph/graph.component.d.ts +3 -0
- package/graph/graph.module.d.ts +6 -1
- package/graph/package.json +6 -7
- package/line/covalent-echarts-line.d.ts +1 -0
- package/line/line.component.d.ts +3 -0
- package/line/line.module.d.ts +6 -1
- package/line/package.json +6 -7
- package/map/covalent-echarts-map.d.ts +1 -0
- package/map/map.component.d.ts +3 -0
- package/map/map.module.d.ts +6 -1
- package/map/package.json +6 -7
- package/package.json +134 -15
- package/pie/covalent-echarts-pie.d.ts +1 -0
- package/pie/package.json +6 -7
- package/pie/pie.component.d.ts +3 -0
- package/pie/pie.module.d.ts +6 -1
- package/sankey/covalent-echarts-sankey.d.ts +1 -0
- package/sankey/package.json +6 -7
- package/sankey/sankey.component.d.ts +3 -0
- package/sankey/sankey.module.d.ts +6 -1
- package/scatter/covalent-echarts-scatter.d.ts +1 -0
- package/scatter/package.json +6 -7
- package/scatter/scatter.component.d.ts +3 -0
- package/scatter/scatter.module.d.ts +6 -1
- package/toolbox/covalent-echarts-toolbox.d.ts +1 -0
- package/toolbox/package.json +6 -7
- package/toolbox/toolbox.component.d.ts +5 -0
- package/toolbox/toolbox.module.d.ts +6 -1
- package/tooltip/covalent-echarts-tooltip.d.ts +1 -0
- package/tooltip/package.json +6 -7
- package/tooltip/series-tooltip.component.d.ts +3 -0
- package/tooltip/tooltip.component.d.ts +5 -0
- package/tooltip/tooltip.module.d.ts +7 -1
- package/tree/covalent-echarts-tree.d.ts +1 -0
- package/tree/package.json +6 -7
- package/tree/tree.component.d.ts +3 -0
- package/tree/tree.module.d.ts +6 -1
- package/treemap/covalent-echarts-treemap.d.ts +1 -0
- package/treemap/package.json +6 -7
- package/treemap/treemap.component.d.ts +3 -0
- package/treemap/treemap.module.d.ts +6 -1
- package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -0
- package/wordcloud/package.json +6 -7
- package/wordcloud/wordcloud.component.d.ts +3 -0
- package/wordcloud/wordcloud.module.d.ts +6 -1
- package/bar/covalent-echarts-bar.metadata.json +0 -1
- package/base/covalent-echarts-base.metadata.json +0 -1
- package/bundles/covalent-echarts-bar.umd.js +0 -588
- package/bundles/covalent-echarts-bar.umd.js.map +0 -1
- package/bundles/covalent-echarts-bar.umd.min.js +0 -16
- package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-base.umd.js +0 -5750
- package/bundles/covalent-echarts-base.umd.js.map +0 -1
- package/bundles/covalent-echarts-base.umd.min.js +0 -16
- package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-graph.umd.js +0 -745
- package/bundles/covalent-echarts-graph.umd.js.map +0 -1
- package/bundles/covalent-echarts-graph.umd.min.js +0 -16
- package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-line.umd.js +0 -638
- package/bundles/covalent-echarts-line.umd.js.map +0 -1
- package/bundles/covalent-echarts-line.umd.min.js +0 -16
- package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-map.umd.js +0 -600
- package/bundles/covalent-echarts-map.umd.js.map +0 -1
- package/bundles/covalent-echarts-map.umd.min.js +0 -16
- package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-pie.umd.js +0 -574
- package/bundles/covalent-echarts-pie.umd.js.map +0 -1
- package/bundles/covalent-echarts-pie.umd.min.js +0 -16
- package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-sankey.umd.js +0 -570
- package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
- package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
- package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-scatter.umd.js +0 -610
- package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
- package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
- package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-toolbox.umd.js +0 -460
- package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
- package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
- package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-tooltip.umd.js +0 -476
- package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
- package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
- package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-tree.umd.js +0 -584
- package/bundles/covalent-echarts-tree.umd.js.map +0 -1
- package/bundles/covalent-echarts-tree.umd.min.js +0 -16
- package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-treemap.umd.js +0 -728
- package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
- package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
- package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
- package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
- package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
- package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
- package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
- package/bundles/covalent-echarts.umd.js +0 -9
- package/bundles/covalent-echarts.umd.js.map +0 -1
- package/bundles/covalent-echarts.umd.min.js +0 -2
- package/bundles/covalent-echarts.umd.min.js.map +0 -1
- package/covalent-echarts.metadata.json +0 -1
- package/esm2015/bar/bar.component.js +0 -241
- package/esm2015/bar/bar.module.js +0 -21
- package/esm2015/bar/covalent-echarts-bar.js +0 -10
- package/esm2015/bar/index.js +0 -7
- package/esm2015/bar/public-api.js +0 -8
- package/esm2015/base/axis/axis.component.js +0 -209
- package/esm2015/base/axis/axis.interface.js +0 -324
- package/esm2015/base/axis/x-axis.component.js +0 -67
- package/esm2015/base/axis/y-axis.component.js +0 -67
- package/esm2015/base/base.module.js +0 -31
- package/esm2015/base/base.types.js +0 -278
- package/esm2015/base/chart-options.service.js +0 -115
- package/esm2015/base/chart.component.js +0 -354
- package/esm2015/base/covalent-echarts-base.js +0 -11
- package/esm2015/base/dataset/dataset.component.js +0 -93
- package/esm2015/base/index.js +0 -7
- package/esm2015/base/public-api.js +0 -15
- package/esm2015/base/series/series.component.js +0 -187
- package/esm2015/base/series/series.interface.js +0 -178
- package/esm2015/base/themes/aqua-splash.js +0 -465
- package/esm2015/base/themes/california-coast.js +0 -465
- package/esm2015/base/themes/passion-flower.js +0 -465
- package/esm2015/base/themes/razzleberry-pie.js +0 -465
- package/esm2015/base/themes/teradata-default.js +0 -465
- package/esm2015/base/themes/urban-sunrise.js +0 -465
- package/esm2015/base/utils/assign-defined.js +0 -37
- package/esm2015/base/utils/echarts.js +0 -60
- package/esm2015/base/utils/index.js +0 -8
- package/esm2015/covalent-echarts.js +0 -10
- package/esm2015/graph/covalent-echarts-graph.js +0 -10
- package/esm2015/graph/graph.component.js +0 -398
- package/esm2015/graph/graph.module.js +0 -21
- package/esm2015/graph/index.js +0 -7
- package/esm2015/graph/public-api.js +0 -8
- package/esm2015/index.js +0 -7
- package/esm2015/line/covalent-echarts-line.js +0 -10
- package/esm2015/line/index.js +0 -7
- package/esm2015/line/line.component.js +0 -291
- package/esm2015/line/line.module.js +0 -21
- package/esm2015/line/public-api.js +0 -8
- package/esm2015/map/covalent-echarts-map.js +0 -10
- package/esm2015/map/index.js +0 -7
- package/esm2015/map/map.component.js +0 -253
- package/esm2015/map/map.module.js +0 -21
- package/esm2015/map/public-api.js +0 -8
- package/esm2015/pie/covalent-echarts-pie.js +0 -10
- package/esm2015/pie/index.js +0 -7
- package/esm2015/pie/pie.component.js +0 -227
- package/esm2015/pie/pie.module.js +0 -21
- package/esm2015/pie/public-api.js +0 -8
- package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
- package/esm2015/sankey/index.js +0 -7
- package/esm2015/sankey/public-api.js +0 -8
- package/esm2015/sankey/sankey.component.js +0 -223
- package/esm2015/sankey/sankey.module.js +0 -21
- package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
- package/esm2015/scatter/index.js +0 -7
- package/esm2015/scatter/public-api.js +0 -8
- package/esm2015/scatter/scatter.component.js +0 -263
- package/esm2015/scatter/scatter.module.js +0 -21
- package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
- package/esm2015/toolbox/index.js +0 -7
- package/esm2015/toolbox/public-api.js +0 -8
- package/esm2015/toolbox/toolbox.component.js +0 -405
- package/esm2015/toolbox/toolbox.module.js +0 -21
- package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
- package/esm2015/tooltip/index.js +0 -7
- package/esm2015/tooltip/public-api.js +0 -9
- package/esm2015/tooltip/series-tooltip.component.js +0 -170
- package/esm2015/tooltip/tooltip.component.js +0 -246
- package/esm2015/tooltip/tooltip.module.js +0 -26
- package/esm2015/tree/covalent-echarts-tree.js +0 -10
- package/esm2015/tree/index.js +0 -7
- package/esm2015/tree/public-api.js +0 -8
- package/esm2015/tree/tree.component.js +0 -237
- package/esm2015/tree/tree.module.js +0 -21
- package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
- package/esm2015/treemap/index.js +0 -7
- package/esm2015/treemap/public-api.js +0 -8
- package/esm2015/treemap/treemap.component.js +0 -380
- package/esm2015/treemap/treemap.module.js +0 -21
- package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
- package/esm2015/wordcloud/index.js +0 -7
- package/esm2015/wordcloud/public-api.js +0 -8
- package/esm2015/wordcloud/wordcloud.component.js +0 -174
- package/esm2015/wordcloud/wordcloud.module.js +0 -21
- package/fesm2015/covalent-echarts-bar.js +0 -281
- package/fesm2015/covalent-echarts-base.js.map +0 -1
- package/fesm2015/covalent-echarts-graph.js +0 -438
- package/fesm2015/covalent-echarts-graph.js.map +0 -1
- package/fesm2015/covalent-echarts-line.js +0 -331
- package/fesm2015/covalent-echarts-line.js.map +0 -1
- package/fesm2015/covalent-echarts-map.js +0 -293
- package/fesm2015/covalent-echarts-pie.js +0 -267
- package/fesm2015/covalent-echarts-sankey.js +0 -263
- package/fesm2015/covalent-echarts-sankey.js.map +0 -1
- package/fesm2015/covalent-echarts-scatter.js +0 -303
- package/fesm2015/covalent-echarts-scatter.js.map +0 -1
- package/fesm2015/covalent-echarts-toolbox.js +0 -445
- package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
- package/fesm2015/covalent-echarts-tooltip.js +0 -457
- package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
- package/fesm2015/covalent-echarts-tree.js +0 -277
- package/fesm2015/covalent-echarts-tree.js.map +0 -1
- package/fesm2015/covalent-echarts-treemap.js +0 -420
- package/fesm2015/covalent-echarts-treemap.js.map +0 -1
- package/fesm2015/covalent-echarts-wordcloud.js +0 -214
- package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
- package/fesm2015/covalent-echarts.js +0 -12
- package/fesm2015/covalent-echarts.js.map +0 -1
- package/graph/covalent-echarts-graph.metadata.json +0 -1
- package/line/covalent-echarts-line.metadata.json +0 -1
- package/map/covalent-echarts-map.metadata.json +0 -1
- package/pie/covalent-echarts-pie.metadata.json +0 -1
- package/sankey/covalent-echarts-sankey.metadata.json +0 -1
- package/scatter/covalent-echarts-scatter.metadata.json +0 -1
- package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
- package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
- package/tree/covalent-echarts-tree.metadata.json +0 -1
- package/treemap/covalent-echarts-treemap.metadata.json +0 -1
- package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
|
@@ -1,745 +0,0 @@
|
|
|
1
|
-
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('echarts/lib/chart/graph'), require('@covalent/echarts/base')) :
|
|
3
|
-
typeof define === 'function' && define.amd ? define('@covalent/echarts/graph', ['exports', '@angular/core', '@angular/common', 'echarts/lib/chart/graph', '@covalent/echarts/base'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.covalent = global.covalent || {}, global.covalent.echarts = global.covalent.echarts || {}, global.covalent.echarts.graph = {}), global.ng.core, global.ng.common, null, global.covalent.echarts.base));
|
|
5
|
-
}(this, (function (exports, core, common, graph, base) { 'use strict';
|
|
6
|
-
|
|
7
|
-
/*! *****************************************************************************
|
|
8
|
-
Copyright (c) Microsoft Corporation.
|
|
9
|
-
|
|
10
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
11
|
-
purpose with or without fee is hereby granted.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
14
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
15
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
16
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
17
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
18
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
19
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
20
|
-
***************************************************************************** */
|
|
21
|
-
/* global Reflect, Promise */
|
|
22
|
-
var extendStatics = function (d, b) {
|
|
23
|
-
extendStatics = Object.setPrototypeOf ||
|
|
24
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
25
|
-
function (d, b) { for (var p in b)
|
|
26
|
-
if (Object.prototype.hasOwnProperty.call(b, p))
|
|
27
|
-
d[p] = b[p]; };
|
|
28
|
-
return extendStatics(d, b);
|
|
29
|
-
};
|
|
30
|
-
function __extends(d, b) {
|
|
31
|
-
extendStatics(d, b);
|
|
32
|
-
function __() { this.constructor = d; }
|
|
33
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34
|
-
}
|
|
35
|
-
var __assign = function () {
|
|
36
|
-
__assign = Object.assign || function __assign(t) {
|
|
37
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
38
|
-
s = arguments[i];
|
|
39
|
-
for (var p in s)
|
|
40
|
-
if (Object.prototype.hasOwnProperty.call(s, p))
|
|
41
|
-
t[p] = s[p];
|
|
42
|
-
}
|
|
43
|
-
return t;
|
|
44
|
-
};
|
|
45
|
-
return __assign.apply(this, arguments);
|
|
46
|
-
};
|
|
47
|
-
function __rest(s, e) {
|
|
48
|
-
var t = {};
|
|
49
|
-
for (var p in s)
|
|
50
|
-
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
51
|
-
t[p] = s[p];
|
|
52
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
53
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
54
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
55
|
-
t[p[i]] = s[p[i]];
|
|
56
|
-
}
|
|
57
|
-
return t;
|
|
58
|
-
}
|
|
59
|
-
function __decorate(decorators, target, key, desc) {
|
|
60
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
61
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
62
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
63
|
-
else
|
|
64
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
65
|
-
if (d = decorators[i])
|
|
66
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
67
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
68
|
-
}
|
|
69
|
-
function __param(paramIndex, decorator) {
|
|
70
|
-
return function (target, key) { decorator(target, key, paramIndex); };
|
|
71
|
-
}
|
|
72
|
-
function __metadata(metadataKey, metadataValue) {
|
|
73
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
74
|
-
return Reflect.metadata(metadataKey, metadataValue);
|
|
75
|
-
}
|
|
76
|
-
function __awaiter(thisArg, _arguments, P, generator) {
|
|
77
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
78
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
79
|
-
function fulfilled(value) { try {
|
|
80
|
-
step(generator.next(value));
|
|
81
|
-
}
|
|
82
|
-
catch (e) {
|
|
83
|
-
reject(e);
|
|
84
|
-
} }
|
|
85
|
-
function rejected(value) { try {
|
|
86
|
-
step(generator["throw"](value));
|
|
87
|
-
}
|
|
88
|
-
catch (e) {
|
|
89
|
-
reject(e);
|
|
90
|
-
} }
|
|
91
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
92
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
93
|
-
});
|
|
94
|
-
}
|
|
95
|
-
function __generator(thisArg, body) {
|
|
96
|
-
var _ = { label: 0, sent: function () { if (t[0] & 1)
|
|
97
|
-
throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
98
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
|
|
99
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
100
|
-
function step(op) {
|
|
101
|
-
if (f)
|
|
102
|
-
throw new TypeError("Generator is already executing.");
|
|
103
|
-
while (_)
|
|
104
|
-
try {
|
|
105
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
|
|
106
|
-
return t;
|
|
107
|
-
if (y = 0, t)
|
|
108
|
-
op = [op[0] & 2, t.value];
|
|
109
|
-
switch (op[0]) {
|
|
110
|
-
case 0:
|
|
111
|
-
case 1:
|
|
112
|
-
t = op;
|
|
113
|
-
break;
|
|
114
|
-
case 4:
|
|
115
|
-
_.label++;
|
|
116
|
-
return { value: op[1], done: false };
|
|
117
|
-
case 5:
|
|
118
|
-
_.label++;
|
|
119
|
-
y = op[1];
|
|
120
|
-
op = [0];
|
|
121
|
-
continue;
|
|
122
|
-
case 7:
|
|
123
|
-
op = _.ops.pop();
|
|
124
|
-
_.trys.pop();
|
|
125
|
-
continue;
|
|
126
|
-
default:
|
|
127
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
128
|
-
_ = 0;
|
|
129
|
-
continue;
|
|
130
|
-
}
|
|
131
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
|
|
132
|
-
_.label = op[1];
|
|
133
|
-
break;
|
|
134
|
-
}
|
|
135
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
136
|
-
_.label = t[1];
|
|
137
|
-
t = op;
|
|
138
|
-
break;
|
|
139
|
-
}
|
|
140
|
-
if (t && _.label < t[2]) {
|
|
141
|
-
_.label = t[2];
|
|
142
|
-
_.ops.push(op);
|
|
143
|
-
break;
|
|
144
|
-
}
|
|
145
|
-
if (t[2])
|
|
146
|
-
_.ops.pop();
|
|
147
|
-
_.trys.pop();
|
|
148
|
-
continue;
|
|
149
|
-
}
|
|
150
|
-
op = body.call(thisArg, _);
|
|
151
|
-
}
|
|
152
|
-
catch (e) {
|
|
153
|
-
op = [6, e];
|
|
154
|
-
y = 0;
|
|
155
|
-
}
|
|
156
|
-
finally {
|
|
157
|
-
f = t = 0;
|
|
158
|
-
}
|
|
159
|
-
if (op[0] & 5)
|
|
160
|
-
throw op[1];
|
|
161
|
-
return { value: op[0] ? op[1] : void 0, done: true };
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
var __createBinding = Object.create ? (function (o, m, k, k2) {
|
|
165
|
-
if (k2 === undefined)
|
|
166
|
-
k2 = k;
|
|
167
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
|
|
168
|
-
}) : (function (o, m, k, k2) {
|
|
169
|
-
if (k2 === undefined)
|
|
170
|
-
k2 = k;
|
|
171
|
-
o[k2] = m[k];
|
|
172
|
-
});
|
|
173
|
-
function __exportStar(m, o) {
|
|
174
|
-
for (var p in m)
|
|
175
|
-
if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
|
|
176
|
-
__createBinding(o, m, p);
|
|
177
|
-
}
|
|
178
|
-
function __values(o) {
|
|
179
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
180
|
-
if (m)
|
|
181
|
-
return m.call(o);
|
|
182
|
-
if (o && typeof o.length === "number")
|
|
183
|
-
return {
|
|
184
|
-
next: function () {
|
|
185
|
-
if (o && i >= o.length)
|
|
186
|
-
o = void 0;
|
|
187
|
-
return { value: o && o[i++], done: !o };
|
|
188
|
-
}
|
|
189
|
-
};
|
|
190
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
191
|
-
}
|
|
192
|
-
function __read(o, n) {
|
|
193
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
194
|
-
if (!m)
|
|
195
|
-
return o;
|
|
196
|
-
var i = m.call(o), r, ar = [], e;
|
|
197
|
-
try {
|
|
198
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
|
|
199
|
-
ar.push(r.value);
|
|
200
|
-
}
|
|
201
|
-
catch (error) {
|
|
202
|
-
e = { error: error };
|
|
203
|
-
}
|
|
204
|
-
finally {
|
|
205
|
-
try {
|
|
206
|
-
if (r && !r.done && (m = i["return"]))
|
|
207
|
-
m.call(i);
|
|
208
|
-
}
|
|
209
|
-
finally {
|
|
210
|
-
if (e)
|
|
211
|
-
throw e.error;
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
return ar;
|
|
215
|
-
}
|
|
216
|
-
function __spread() {
|
|
217
|
-
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
218
|
-
ar = ar.concat(__read(arguments[i]));
|
|
219
|
-
return ar;
|
|
220
|
-
}
|
|
221
|
-
function __spreadArrays() {
|
|
222
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++)
|
|
223
|
-
s += arguments[i].length;
|
|
224
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
225
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
226
|
-
r[k] = a[j];
|
|
227
|
-
return r;
|
|
228
|
-
}
|
|
229
|
-
;
|
|
230
|
-
function __await(v) {
|
|
231
|
-
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
232
|
-
}
|
|
233
|
-
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
234
|
-
if (!Symbol.asyncIterator)
|
|
235
|
-
throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
236
|
-
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
237
|
-
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
238
|
-
function verb(n) { if (g[n])
|
|
239
|
-
i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
240
|
-
function resume(n, v) { try {
|
|
241
|
-
step(g[n](v));
|
|
242
|
-
}
|
|
243
|
-
catch (e) {
|
|
244
|
-
settle(q[0][3], e);
|
|
245
|
-
} }
|
|
246
|
-
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
247
|
-
function fulfill(value) { resume("next", value); }
|
|
248
|
-
function reject(value) { resume("throw", value); }
|
|
249
|
-
function settle(f, v) { if (f(v), q.shift(), q.length)
|
|
250
|
-
resume(q[0][0], q[0][1]); }
|
|
251
|
-
}
|
|
252
|
-
function __asyncDelegator(o) {
|
|
253
|
-
var i, p;
|
|
254
|
-
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
255
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
256
|
-
}
|
|
257
|
-
function __asyncValues(o) {
|
|
258
|
-
if (!Symbol.asyncIterator)
|
|
259
|
-
throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
260
|
-
var m = o[Symbol.asyncIterator], i;
|
|
261
|
-
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
262
|
-
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
263
|
-
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
|
|
264
|
-
}
|
|
265
|
-
function __makeTemplateObject(cooked, raw) {
|
|
266
|
-
if (Object.defineProperty) {
|
|
267
|
-
Object.defineProperty(cooked, "raw", { value: raw });
|
|
268
|
-
}
|
|
269
|
-
else {
|
|
270
|
-
cooked.raw = raw;
|
|
271
|
-
}
|
|
272
|
-
return cooked;
|
|
273
|
-
}
|
|
274
|
-
;
|
|
275
|
-
var __setModuleDefault = Object.create ? (function (o, v) {
|
|
276
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
277
|
-
}) : function (o, v) {
|
|
278
|
-
o["default"] = v;
|
|
279
|
-
};
|
|
280
|
-
function __importStar(mod) {
|
|
281
|
-
if (mod && mod.__esModule)
|
|
282
|
-
return mod;
|
|
283
|
-
var result = {};
|
|
284
|
-
if (mod != null)
|
|
285
|
-
for (var k in mod)
|
|
286
|
-
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
287
|
-
__createBinding(result, mod, k);
|
|
288
|
-
__setModuleDefault(result, mod);
|
|
289
|
-
return result;
|
|
290
|
-
}
|
|
291
|
-
function __importDefault(mod) {
|
|
292
|
-
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
293
|
-
}
|
|
294
|
-
function __classPrivateFieldGet(receiver, privateMap) {
|
|
295
|
-
if (!privateMap.has(receiver)) {
|
|
296
|
-
throw new TypeError("attempted to get private field on non-instance");
|
|
297
|
-
}
|
|
298
|
-
return privateMap.get(receiver);
|
|
299
|
-
}
|
|
300
|
-
function __classPrivateFieldSet(receiver, privateMap, value) {
|
|
301
|
-
if (!privateMap.has(receiver)) {
|
|
302
|
-
throw new TypeError("attempted to set private field on non-instance");
|
|
303
|
-
}
|
|
304
|
-
privateMap.set(receiver, value);
|
|
305
|
-
return value;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
/**
|
|
309
|
-
* @record
|
|
310
|
-
*/
|
|
311
|
-
function ITdCategories() { }
|
|
312
|
-
if (false) {
|
|
313
|
-
/** @type {?|undefined} */
|
|
314
|
-
ITdCategories.prototype.name;
|
|
315
|
-
/** @type {?|undefined} */
|
|
316
|
-
ITdCategories.prototype.symbol;
|
|
317
|
-
/** @type {?|undefined} */
|
|
318
|
-
ITdCategories.prototype.symbolSize;
|
|
319
|
-
/** @type {?|undefined} */
|
|
320
|
-
ITdCategories.prototype.symbolRotate;
|
|
321
|
-
/** @type {?|undefined} */
|
|
322
|
-
ITdCategories.prototype.symbolKeepAspect;
|
|
323
|
-
/** @type {?} */
|
|
324
|
-
ITdCategories.prototype.symbolOffset;
|
|
325
|
-
/** @type {?} */
|
|
326
|
-
ITdCategories.prototype.itemStyle;
|
|
327
|
-
/** @type {?} */
|
|
328
|
-
ITdCategories.prototype.label;
|
|
329
|
-
/** @type {?} */
|
|
330
|
-
ITdCategories.prototype.emphasis;
|
|
331
|
-
}
|
|
332
|
-
/**
|
|
333
|
-
* @record
|
|
334
|
-
*/
|
|
335
|
-
function ITdGraphForce() { }
|
|
336
|
-
if (false) {
|
|
337
|
-
/** @type {?|undefined} */
|
|
338
|
-
ITdGraphForce.prototype.initLayout;
|
|
339
|
-
/** @type {?|undefined} */
|
|
340
|
-
ITdGraphForce.prototype.repulsion;
|
|
341
|
-
/** @type {?|undefined} */
|
|
342
|
-
ITdGraphForce.prototype.gravity;
|
|
343
|
-
/** @type {?|undefined} */
|
|
344
|
-
ITdGraphForce.prototype.edgeLength;
|
|
345
|
-
/** @type {?|undefined} */
|
|
346
|
-
ITdGraphForce.prototype.layoutAnimation;
|
|
347
|
-
}
|
|
348
|
-
/**
|
|
349
|
-
* @record
|
|
350
|
-
*/
|
|
351
|
-
function ITdGraphSeries() { }
|
|
352
|
-
if (false) {
|
|
353
|
-
/** @type {?|undefined} */
|
|
354
|
-
ITdGraphSeries.prototype.legendHoverLink;
|
|
355
|
-
/** @type {?|undefined} */
|
|
356
|
-
ITdGraphSeries.prototype.coordinateSystem;
|
|
357
|
-
/** @type {?|undefined} */
|
|
358
|
-
ITdGraphSeries.prototype.xAxisIndex;
|
|
359
|
-
/** @type {?|undefined} */
|
|
360
|
-
ITdGraphSeries.prototype.yAxisIndex;
|
|
361
|
-
/** @type {?|undefined} */
|
|
362
|
-
ITdGraphSeries.prototype.polarIndex;
|
|
363
|
-
/** @type {?|undefined} */
|
|
364
|
-
ITdGraphSeries.prototype.calendarIndex;
|
|
365
|
-
/** @type {?|undefined} */
|
|
366
|
-
ITdGraphSeries.prototype.geoIndex;
|
|
367
|
-
/** @type {?|undefined} */
|
|
368
|
-
ITdGraphSeries.prototype.hoverAnimation;
|
|
369
|
-
/** @type {?|undefined} */
|
|
370
|
-
ITdGraphSeries.prototype.circular;
|
|
371
|
-
/** @type {?|undefined} */
|
|
372
|
-
ITdGraphSeries.prototype.force;
|
|
373
|
-
/** @type {?|undefined} */
|
|
374
|
-
ITdGraphSeries.prototype.layout;
|
|
375
|
-
/** @type {?|undefined} */
|
|
376
|
-
ITdGraphSeries.prototype.nodeScaleRatio;
|
|
377
|
-
/** @type {?|undefined} */
|
|
378
|
-
ITdGraphSeries.prototype.draggable;
|
|
379
|
-
/** @type {?|undefined} */
|
|
380
|
-
ITdGraphSeries.prototype.symbol;
|
|
381
|
-
/** @type {?|undefined} */
|
|
382
|
-
ITdGraphSeries.prototype.symbolSize;
|
|
383
|
-
/** @type {?|undefined} */
|
|
384
|
-
ITdGraphSeries.prototype.symbolRotate;
|
|
385
|
-
/** @type {?|undefined} */
|
|
386
|
-
ITdGraphSeries.prototype.symbolKeepAspect;
|
|
387
|
-
/** @type {?|undefined} */
|
|
388
|
-
ITdGraphSeries.prototype.symbolOffset;
|
|
389
|
-
/** @type {?} */
|
|
390
|
-
ITdGraphSeries.prototype.focusNodeAdjacency;
|
|
391
|
-
/** @type {?} */
|
|
392
|
-
ITdGraphSeries.prototype.edgeSymbol;
|
|
393
|
-
/** @type {?} */
|
|
394
|
-
ITdGraphSeries.prototype.edgeSymbolSize;
|
|
395
|
-
/** @type {?} */
|
|
396
|
-
ITdGraphSeries.prototype.cursor;
|
|
397
|
-
/** @type {?|undefined} */
|
|
398
|
-
ITdGraphSeries.prototype.roam;
|
|
399
|
-
/** @type {?|undefined} */
|
|
400
|
-
ITdGraphSeries.prototype.expandAndCollapse;
|
|
401
|
-
/** @type {?|undefined} */
|
|
402
|
-
ITdGraphSeries.prototype.initialTreeDepth;
|
|
403
|
-
/** @type {?|undefined} */
|
|
404
|
-
ITdGraphSeries.prototype.itemStyle;
|
|
405
|
-
/** @type {?|undefined} */
|
|
406
|
-
ITdGraphSeries.prototype.lineStyle;
|
|
407
|
-
/** @type {?|undefined} */
|
|
408
|
-
ITdGraphSeries.prototype.label;
|
|
409
|
-
/** @type {?|undefined} */
|
|
410
|
-
ITdGraphSeries.prototype.edgeLabel;
|
|
411
|
-
/** @type {?|undefined} */
|
|
412
|
-
ITdGraphSeries.prototype.emphasis;
|
|
413
|
-
/** @type {?} */
|
|
414
|
-
ITdGraphSeries.prototype.categories;
|
|
415
|
-
/** @type {?|undefined} */
|
|
416
|
-
ITdGraphSeries.prototype.data;
|
|
417
|
-
/** @type {?} */
|
|
418
|
-
ITdGraphSeries.prototype.nodes;
|
|
419
|
-
/** @type {?} */
|
|
420
|
-
ITdGraphSeries.prototype.links;
|
|
421
|
-
/** @type {?} */
|
|
422
|
-
ITdGraphSeries.prototype.edges;
|
|
423
|
-
/** @type {?|undefined} */
|
|
424
|
-
ITdGraphSeries.prototype.markPoint;
|
|
425
|
-
/** @type {?|undefined} */
|
|
426
|
-
ITdGraphSeries.prototype.markLine;
|
|
427
|
-
/** @type {?|undefined} */
|
|
428
|
-
ITdGraphSeries.prototype.markArea;
|
|
429
|
-
/** @type {?} */
|
|
430
|
-
ITdGraphSeries.prototype.zlevel;
|
|
431
|
-
/** @type {?|undefined} */
|
|
432
|
-
ITdGraphSeries.prototype.z;
|
|
433
|
-
/** @type {?|undefined} */
|
|
434
|
-
ITdGraphSeries.prototype.silent;
|
|
435
|
-
/** @type {?} */
|
|
436
|
-
ITdGraphSeries.prototype.left;
|
|
437
|
-
/** @type {?} */
|
|
438
|
-
ITdGraphSeries.prototype.top;
|
|
439
|
-
/** @type {?} */
|
|
440
|
-
ITdGraphSeries.prototype.right;
|
|
441
|
-
/** @type {?} */
|
|
442
|
-
ITdGraphSeries.prototype.bottom;
|
|
443
|
-
/** @type {?} */
|
|
444
|
-
ITdGraphSeries.prototype.width;
|
|
445
|
-
/** @type {?} */
|
|
446
|
-
ITdGraphSeries.prototype.height;
|
|
447
|
-
/** @type {?|undefined} */
|
|
448
|
-
ITdGraphSeries.prototype.animation;
|
|
449
|
-
/** @type {?|undefined} */
|
|
450
|
-
ITdGraphSeries.prototype.animationThreshold;
|
|
451
|
-
/** @type {?|undefined} */
|
|
452
|
-
ITdGraphSeries.prototype.animationDuration;
|
|
453
|
-
/** @type {?|undefined} */
|
|
454
|
-
ITdGraphSeries.prototype.animationEasing;
|
|
455
|
-
/** @type {?|undefined} */
|
|
456
|
-
ITdGraphSeries.prototype.animationDelay;
|
|
457
|
-
/** @type {?|undefined} */
|
|
458
|
-
ITdGraphSeries.prototype.animationDurationUpdate;
|
|
459
|
-
/** @type {?|undefined} */
|
|
460
|
-
ITdGraphSeries.prototype.animationEasingUpdate;
|
|
461
|
-
/** @type {?|undefined} */
|
|
462
|
-
ITdGraphSeries.prototype.animationDelayUpdate;
|
|
463
|
-
}
|
|
464
|
-
var TdChartSeriesGraphComponent = /** @class */ (function (_super) {
|
|
465
|
-
__extends(TdChartSeriesGraphComponent, _super);
|
|
466
|
-
/**
|
|
467
|
-
* @param {?} _optionsService
|
|
468
|
-
*/
|
|
469
|
-
function TdChartSeriesGraphComponent(_optionsService) {
|
|
470
|
-
return _super.call(this, 'graph', _optionsService) || this;
|
|
471
|
-
}
|
|
472
|
-
/**
|
|
473
|
-
* @return {?}
|
|
474
|
-
*/
|
|
475
|
-
TdChartSeriesGraphComponent.prototype.getConfig = function () {
|
|
476
|
-
return {
|
|
477
|
-
legendHoverLink: this.legendHoverLink,
|
|
478
|
-
coordinateSystem: this.coordinateSystem,
|
|
479
|
-
xAxisIndex: this.xAxisIndex,
|
|
480
|
-
yAxisIndex: this.yAxisIndex,
|
|
481
|
-
polarIndex: this.polarIndex,
|
|
482
|
-
calendarIndex: this.calendarIndex,
|
|
483
|
-
geoIndex: this.geoIndex,
|
|
484
|
-
hoverAnimation: this.hoverAnimation,
|
|
485
|
-
circular: this.circular,
|
|
486
|
-
force: this.force,
|
|
487
|
-
layout: this.layout,
|
|
488
|
-
nodeScaleRatio: this.nodeScaleRatio,
|
|
489
|
-
draggable: this.draggable,
|
|
490
|
-
symbol: this.symbol,
|
|
491
|
-
symbolSize: this.symbolSize,
|
|
492
|
-
symbolRotate: this.symbolRotate,
|
|
493
|
-
symbolKeepAspect: this.symbolKeepAspect,
|
|
494
|
-
symbolOffset: this.symbolOffset,
|
|
495
|
-
focusNodeAdjacency: this.focusNodeAdjacency,
|
|
496
|
-
edgeSymbol: this.edgeSymbol,
|
|
497
|
-
edgeSymbolSize: this.edgeSymbolSize,
|
|
498
|
-
cursor: this.cursor,
|
|
499
|
-
roam: this.roam,
|
|
500
|
-
itemStyle: this.itemStyle,
|
|
501
|
-
lineStyle: this.lineStyle,
|
|
502
|
-
label: this.label,
|
|
503
|
-
edgeLabel: this.edgeLabel,
|
|
504
|
-
emphasis: this.emphasis,
|
|
505
|
-
categories: this.categories,
|
|
506
|
-
nodes: this.nodes,
|
|
507
|
-
links: this.links,
|
|
508
|
-
edges: this.edges,
|
|
509
|
-
markPoint: this.markPoint,
|
|
510
|
-
markLine: this.markLine,
|
|
511
|
-
markArea: this.markArea,
|
|
512
|
-
zlevel: this.zlevel,
|
|
513
|
-
z: this.z,
|
|
514
|
-
silent: this.silent,
|
|
515
|
-
left: this.left,
|
|
516
|
-
top: this.top,
|
|
517
|
-
right: this.right,
|
|
518
|
-
bottom: this.bottom,
|
|
519
|
-
width: this.width,
|
|
520
|
-
height: this.height,
|
|
521
|
-
};
|
|
522
|
-
};
|
|
523
|
-
return TdChartSeriesGraphComponent;
|
|
524
|
-
}(base.TdSeriesDirective));
|
|
525
|
-
TdChartSeriesGraphComponent.decorators = [
|
|
526
|
-
{ type: core.Component, args: [{
|
|
527
|
-
selector: 'td-chart-series[td-graph]',
|
|
528
|
-
template: '',
|
|
529
|
-
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
530
|
-
inputs: [
|
|
531
|
-
'config',
|
|
532
|
-
'id',
|
|
533
|
-
'name',
|
|
534
|
-
'color',
|
|
535
|
-
'data',
|
|
536
|
-
'animation',
|
|
537
|
-
'animationThreshold',
|
|
538
|
-
'animationDuration',
|
|
539
|
-
'animationEasing',
|
|
540
|
-
'animationDelay',
|
|
541
|
-
'animationDurationUpdate',
|
|
542
|
-
'animationEasingUpdate',
|
|
543
|
-
'animationDelayUpdate',
|
|
544
|
-
'tooltip',
|
|
545
|
-
],
|
|
546
|
-
providers: [
|
|
547
|
-
{
|
|
548
|
-
provide: base.TdSeriesDirective,
|
|
549
|
-
useExisting: core.forwardRef(( /**
|
|
550
|
-
* @return {?}
|
|
551
|
-
*/function () { return TdChartSeriesGraphComponent; })),
|
|
552
|
-
},
|
|
553
|
-
]
|
|
554
|
-
}] }
|
|
555
|
-
];
|
|
556
|
-
/** @nocollapse */
|
|
557
|
-
TdChartSeriesGraphComponent.ctorParameters = function () { return [
|
|
558
|
-
{ type: base.TdChartOptionsService }
|
|
559
|
-
]; };
|
|
560
|
-
TdChartSeriesGraphComponent.propDecorators = {
|
|
561
|
-
legendHoverLink: [{ type: core.Input }],
|
|
562
|
-
coordinateSystem: [{ type: core.Input }],
|
|
563
|
-
xAxisIndex: [{ type: core.Input }],
|
|
564
|
-
yAxisIndex: [{ type: core.Input }],
|
|
565
|
-
polarIndex: [{ type: core.Input }],
|
|
566
|
-
calendarIndex: [{ type: core.Input }],
|
|
567
|
-
geoIndex: [{ type: core.Input }],
|
|
568
|
-
hoverAnimation: [{ type: core.Input }],
|
|
569
|
-
circular: [{ type: core.Input }],
|
|
570
|
-
force: [{ type: core.Input }],
|
|
571
|
-
layout: [{ type: core.Input }],
|
|
572
|
-
nodeScaleRatio: [{ type: core.Input }],
|
|
573
|
-
draggable: [{ type: core.Input }],
|
|
574
|
-
symbol: [{ type: core.Input }],
|
|
575
|
-
symbolSize: [{ type: core.Input }],
|
|
576
|
-
symbolRotate: [{ type: core.Input }],
|
|
577
|
-
symbolKeepAspect: [{ type: core.Input }],
|
|
578
|
-
symbolOffset: [{ type: core.Input }],
|
|
579
|
-
focusNodeAdjacency: [{ type: core.Input }],
|
|
580
|
-
edgeSymbol: [{ type: core.Input }],
|
|
581
|
-
edgeSymbolSize: [{ type: core.Input }],
|
|
582
|
-
cursor: [{ type: core.Input }],
|
|
583
|
-
roam: [{ type: core.Input }],
|
|
584
|
-
initialTreeDepth: [{ type: core.Input }],
|
|
585
|
-
itemStyle: [{ type: core.Input }],
|
|
586
|
-
lineStyle: [{ type: core.Input }],
|
|
587
|
-
label: [{ type: core.Input }],
|
|
588
|
-
edgeLabel: [{ type: core.Input }],
|
|
589
|
-
emphasis: [{ type: core.Input }],
|
|
590
|
-
categories: [{ type: core.Input }],
|
|
591
|
-
nodes: [{ type: core.Input }],
|
|
592
|
-
links: [{ type: core.Input }],
|
|
593
|
-
edges: [{ type: core.Input }],
|
|
594
|
-
markPoint: [{ type: core.Input }],
|
|
595
|
-
markLine: [{ type: core.Input }],
|
|
596
|
-
markArea: [{ type: core.Input }],
|
|
597
|
-
zlevel: [{ type: core.Input }],
|
|
598
|
-
z: [{ type: core.Input }],
|
|
599
|
-
silent: [{ type: core.Input }],
|
|
600
|
-
left: [{ type: core.Input }],
|
|
601
|
-
top: [{ type: core.Input }],
|
|
602
|
-
right: [{ type: core.Input }],
|
|
603
|
-
bottom: [{ type: core.Input }],
|
|
604
|
-
width: [{ type: core.Input }],
|
|
605
|
-
height: [{ type: core.Input }]
|
|
606
|
-
};
|
|
607
|
-
if (false) {
|
|
608
|
-
/** @type {?} */
|
|
609
|
-
TdChartSeriesGraphComponent.prototype.legendHoverLink;
|
|
610
|
-
/** @type {?} */
|
|
611
|
-
TdChartSeriesGraphComponent.prototype.coordinateSystem;
|
|
612
|
-
/** @type {?} */
|
|
613
|
-
TdChartSeriesGraphComponent.prototype.xAxisIndex;
|
|
614
|
-
/** @type {?} */
|
|
615
|
-
TdChartSeriesGraphComponent.prototype.yAxisIndex;
|
|
616
|
-
/** @type {?} */
|
|
617
|
-
TdChartSeriesGraphComponent.prototype.polarIndex;
|
|
618
|
-
/** @type {?} */
|
|
619
|
-
TdChartSeriesGraphComponent.prototype.calendarIndex;
|
|
620
|
-
/** @type {?} */
|
|
621
|
-
TdChartSeriesGraphComponent.prototype.geoIndex;
|
|
622
|
-
/** @type {?} */
|
|
623
|
-
TdChartSeriesGraphComponent.prototype.hoverAnimation;
|
|
624
|
-
/** @type {?} */
|
|
625
|
-
TdChartSeriesGraphComponent.prototype.circular;
|
|
626
|
-
/** @type {?} */
|
|
627
|
-
TdChartSeriesGraphComponent.prototype.force;
|
|
628
|
-
/** @type {?} */
|
|
629
|
-
TdChartSeriesGraphComponent.prototype.layout;
|
|
630
|
-
/** @type {?} */
|
|
631
|
-
TdChartSeriesGraphComponent.prototype.nodeScaleRatio;
|
|
632
|
-
/** @type {?} */
|
|
633
|
-
TdChartSeriesGraphComponent.prototype.draggable;
|
|
634
|
-
/** @type {?} */
|
|
635
|
-
TdChartSeriesGraphComponent.prototype.symbol;
|
|
636
|
-
/** @type {?} */
|
|
637
|
-
TdChartSeriesGraphComponent.prototype.symbolSize;
|
|
638
|
-
/** @type {?} */
|
|
639
|
-
TdChartSeriesGraphComponent.prototype.symbolRotate;
|
|
640
|
-
/** @type {?} */
|
|
641
|
-
TdChartSeriesGraphComponent.prototype.symbolKeepAspect;
|
|
642
|
-
/** @type {?} */
|
|
643
|
-
TdChartSeriesGraphComponent.prototype.symbolOffset;
|
|
644
|
-
/** @type {?} */
|
|
645
|
-
TdChartSeriesGraphComponent.prototype.focusNodeAdjacency;
|
|
646
|
-
/** @type {?} */
|
|
647
|
-
TdChartSeriesGraphComponent.prototype.edgeSymbol;
|
|
648
|
-
/** @type {?} */
|
|
649
|
-
TdChartSeriesGraphComponent.prototype.edgeSymbolSize;
|
|
650
|
-
/** @type {?} */
|
|
651
|
-
TdChartSeriesGraphComponent.prototype.cursor;
|
|
652
|
-
/** @type {?} */
|
|
653
|
-
TdChartSeriesGraphComponent.prototype.roam;
|
|
654
|
-
/** @type {?} */
|
|
655
|
-
TdChartSeriesGraphComponent.prototype.initialTreeDepth;
|
|
656
|
-
/** @type {?} */
|
|
657
|
-
TdChartSeriesGraphComponent.prototype.itemStyle;
|
|
658
|
-
/** @type {?} */
|
|
659
|
-
TdChartSeriesGraphComponent.prototype.lineStyle;
|
|
660
|
-
/** @type {?} */
|
|
661
|
-
TdChartSeriesGraphComponent.prototype.label;
|
|
662
|
-
/** @type {?} */
|
|
663
|
-
TdChartSeriesGraphComponent.prototype.edgeLabel;
|
|
664
|
-
/** @type {?} */
|
|
665
|
-
TdChartSeriesGraphComponent.prototype.emphasis;
|
|
666
|
-
/** @type {?} */
|
|
667
|
-
TdChartSeriesGraphComponent.prototype.categories;
|
|
668
|
-
/** @type {?} */
|
|
669
|
-
TdChartSeriesGraphComponent.prototype.nodes;
|
|
670
|
-
/** @type {?} */
|
|
671
|
-
TdChartSeriesGraphComponent.prototype.links;
|
|
672
|
-
/** @type {?} */
|
|
673
|
-
TdChartSeriesGraphComponent.prototype.edges;
|
|
674
|
-
/** @type {?} */
|
|
675
|
-
TdChartSeriesGraphComponent.prototype.markPoint;
|
|
676
|
-
/** @type {?} */
|
|
677
|
-
TdChartSeriesGraphComponent.prototype.markLine;
|
|
678
|
-
/** @type {?} */
|
|
679
|
-
TdChartSeriesGraphComponent.prototype.markArea;
|
|
680
|
-
/** @type {?} */
|
|
681
|
-
TdChartSeriesGraphComponent.prototype.zlevel;
|
|
682
|
-
/** @type {?} */
|
|
683
|
-
TdChartSeriesGraphComponent.prototype.z;
|
|
684
|
-
/** @type {?} */
|
|
685
|
-
TdChartSeriesGraphComponent.prototype.silent;
|
|
686
|
-
/** @type {?} */
|
|
687
|
-
TdChartSeriesGraphComponent.prototype.left;
|
|
688
|
-
/** @type {?} */
|
|
689
|
-
TdChartSeriesGraphComponent.prototype.top;
|
|
690
|
-
/** @type {?} */
|
|
691
|
-
TdChartSeriesGraphComponent.prototype.right;
|
|
692
|
-
/** @type {?} */
|
|
693
|
-
TdChartSeriesGraphComponent.prototype.bottom;
|
|
694
|
-
/** @type {?} */
|
|
695
|
-
TdChartSeriesGraphComponent.prototype.width;
|
|
696
|
-
/** @type {?} */
|
|
697
|
-
TdChartSeriesGraphComponent.prototype.height;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
/**
|
|
701
|
-
* @fileoverview added by tsickle
|
|
702
|
-
* Generated from: graph.module.ts
|
|
703
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
704
|
-
*/
|
|
705
|
-
/** @type {?} */
|
|
706
|
-
var GRAPH_MODULE_COMPONENTS = [TdChartSeriesGraphComponent];
|
|
707
|
-
var CovalentGraphEchartsModule = /** @class */ (function () {
|
|
708
|
-
function CovalentGraphEchartsModule() {
|
|
709
|
-
}
|
|
710
|
-
return CovalentGraphEchartsModule;
|
|
711
|
-
}());
|
|
712
|
-
CovalentGraphEchartsModule.decorators = [
|
|
713
|
-
{ type: core.NgModule, args: [{
|
|
714
|
-
imports: [common.CommonModule],
|
|
715
|
-
declarations: [GRAPH_MODULE_COMPONENTS],
|
|
716
|
-
exports: [GRAPH_MODULE_COMPONENTS],
|
|
717
|
-
},] }
|
|
718
|
-
];
|
|
719
|
-
|
|
720
|
-
/**
|
|
721
|
-
* @fileoverview added by tsickle
|
|
722
|
-
* Generated from: public-api.ts
|
|
723
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
724
|
-
*/
|
|
725
|
-
|
|
726
|
-
/**
|
|
727
|
-
* @fileoverview added by tsickle
|
|
728
|
-
* Generated from: index.ts
|
|
729
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
730
|
-
*/
|
|
731
|
-
|
|
732
|
-
/**
|
|
733
|
-
* @fileoverview added by tsickle
|
|
734
|
-
* Generated from: covalent-echarts-graph.ts
|
|
735
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
736
|
-
*/
|
|
737
|
-
|
|
738
|
-
exports.CovalentGraphEchartsModule = CovalentGraphEchartsModule;
|
|
739
|
-
exports.GRAPH_MODULE_COMPONENTS = GRAPH_MODULE_COMPONENTS;
|
|
740
|
-
exports.TdChartSeriesGraphComponent = TdChartSeriesGraphComponent;
|
|
741
|
-
|
|
742
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
743
|
-
|
|
744
|
-
})));
|
|
745
|
-
//# sourceMappingURL=covalent-echarts-graph.umd.js.map
|