@covalent/echarts 4.0.0 → 4.1.1-beta.3
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/README.md +4 -90
- package/bar/README.md +23 -21
- package/bar/bar.component.d.ts +30 -27
- package/bar/bar.module.d.ts +6 -1
- package/bar/covalent-echarts-bar.d.ts +2 -1
- package/bar/package.json +6 -7
- package/bar/{public-api.d.ts → public_api.d.ts} +0 -0
- package/base/README.md +26 -26
- package/base/axis/axis.component.d.ts +32 -29
- 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 +6 -3
- package/base/covalent-echarts-base.d.ts +2 -2
- package/base/dataset/dataset.component.d.ts +8 -5
- package/base/package.json +6 -7
- package/base/{public-api.d.ts → public_api.d.ts} +0 -0
- package/base/series/series.component.d.ts +18 -15
- package/base/{axis → src/axis}/README.md +19 -19
- package/base/{dataset → src/dataset}/README.md +19 -16
- package/covalent-echarts.d.ts +2 -1
- package/esm2020/bar/bar.component.mjs +135 -0
- package/esm2020/bar/bar.module.mjs +19 -0
- package/esm2020/bar/covalent-echarts-bar.mjs +5 -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 +35 -0
- package/esm2020/base/base.types.mjs +2 -0
- package/esm2020/base/chart-options.service.mjs +65 -0
- package/esm2020/base/chart.component.mjs +195 -0
- package/esm2020/base/covalent-echarts-base.mjs +5 -0
- package/esm2020/base/dataset/dataset.component.mjs +52 -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/esm2020/base/themes/aqua-splash.mjs +487 -0
- package/esm2020/base/themes/california-coast.mjs +460 -0
- package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
- package/esm2020/base/themes/passion-flower.mjs +460 -0
- package/esm2020/base/themes/razzleberry-pie.mjs +487 -0
- package/esm2020/base/themes/teradata-classic.mjs +487 -0
- package/{esm2015/base/themes/razzleberry-pie.js → esm2020/base/themes/teradata-default.mjs} +30 -35
- 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 +185 -0
- package/esm2020/graph/graph.module.mjs +21 -0
- package/esm2020/graph/public_api.mjs +3 -0
- package/esm2020/line/covalent-echarts-line.mjs +5 -0
- package/esm2020/line/line.component.mjs +159 -0
- package/esm2020/line/line.module.mjs +19 -0
- package/esm2020/line/public_api.mjs +3 -0
- package/esm2020/map/covalent-echarts-map.mjs +5 -0
- package/esm2020/map/map.component.mjs +132 -0
- package/esm2020/map/map.module.mjs +19 -0
- package/esm2020/map/public_api.mjs +3 -0
- package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
- package/esm2020/pie/pie.component.mjs +127 -0
- package/esm2020/pie/pie.module.mjs +19 -0
- package/esm2020/pie/public_api.mjs +3 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
- package/esm2020/sankey/public_api.mjs +3 -0
- package/esm2020/sankey/sankey.component.mjs +117 -0
- package/esm2020/sankey/sankey.module.mjs +21 -0
- package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
- package/esm2020/scatter/public_api.mjs +3 -0
- package/esm2020/scatter/scatter.component.mjs +144 -0
- package/esm2020/scatter/scatter.module.mjs +21 -0
- package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
- package/esm2020/toolbox/public_api.mjs +3 -0
- package/esm2020/toolbox/toolbox.component.mjs +135 -0
- package/esm2020/toolbox/toolbox.module.mjs +24 -0
- package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
- package/esm2020/tooltip/public_api.mjs +4 -0
- package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
- package/esm2020/tooltip/tooltip.component.mjs +156 -0
- package/esm2020/tooltip/tooltip.module.mjs +28 -0
- package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
- package/esm2020/tree/public_api.mjs +3 -0
- package/esm2020/tree/tree.component.mjs +117 -0
- package/esm2020/tree/tree.module.mjs +19 -0
- package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
- package/esm2020/treemap/public_api.mjs +3 -0
- package/esm2020/treemap/treemap.component.mjs +149 -0
- package/esm2020/treemap/treemap.module.mjs +21 -0
- package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
- package/esm2020/wordcloud/public_api.mjs +3 -0
- package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
- package/esm2020/wordcloud/wordcloud.module.mjs +21 -0
- package/fesm2015/covalent-echarts-bar.mjs +158 -0
- package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
- package/fesm2015/{covalent-echarts-base.js → covalent-echarts-base.mjs} +390 -856
- package/fesm2015/covalent-echarts-base.mjs.map +1 -0
- package/fesm2015/covalent-echarts-graph.mjs +210 -0
- package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
- package/fesm2015/covalent-echarts-line.mjs +182 -0
- package/fesm2015/covalent-echarts-line.mjs.map +1 -0
- package/fesm2015/covalent-echarts-map.mjs +155 -0
- package/fesm2015/covalent-echarts-map.mjs.map +1 -0
- package/fesm2015/covalent-echarts-pie.mjs +150 -0
- package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
- package/fesm2015/covalent-echarts-sankey.mjs +142 -0
- package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
- package/fesm2015/covalent-echarts-scatter.mjs +169 -0
- package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
- package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
- package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
- package/fesm2015/covalent-echarts-tooltip.mjs +283 -0
- package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2015/covalent-echarts-tree.mjs +140 -0
- package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
- package/fesm2015/covalent-echarts-treemap.mjs +174 -0
- package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
- package/fesm2015/covalent-echarts-wordcloud.mjs +117 -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 +158 -0
- package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
- package/fesm2020/covalent-echarts-base.mjs +4930 -0
- 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 +182 -0
- package/fesm2020/covalent-echarts-line.mjs.map +1 -0
- package/fesm2020/covalent-echarts-map.mjs +155 -0
- package/fesm2020/covalent-echarts-map.mjs.map +1 -0
- package/fesm2020/covalent-echarts-pie.mjs +150 -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 +163 -0
- package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
- package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
- package/fesm2020/covalent-echarts-tree.mjs +140 -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/README.md +21 -19
- package/graph/covalent-echarts-graph.d.ts +2 -1
- package/graph/graph.component.d.ts +63 -60
- package/graph/graph.module.d.ts +6 -1
- package/graph/package.json +6 -7
- package/graph/{public-api.d.ts → public_api.d.ts} +0 -0
- package/line/README.md +19 -21
- package/line/covalent-echarts-line.d.ts +2 -1
- package/line/line.component.d.ts +38 -35
- package/line/line.module.d.ts +6 -1
- package/line/package.json +6 -7
- package/line/{public-api.d.ts → public_api.d.ts} +0 -0
- package/map/README.md +19 -17
- package/map/covalent-echarts-map.d.ts +2 -1
- package/map/map.component.d.ts +30 -27
- package/map/map.module.d.ts +6 -1
- package/map/package.json +6 -7
- package/map/{public-api.d.ts → public_api.d.ts} +0 -0
- package/package.json +130 -31
- package/pie/README.md +17 -15
- package/pie/covalent-echarts-pie.d.ts +2 -1
- package/pie/package.json +6 -7
- package/pie/pie.component.d.ts +29 -26
- package/pie/pie.module.d.ts +6 -1
- package/pie/{public-api.d.ts → public_api.d.ts} +0 -0
- package/{index.d.ts → public_api.d.ts} +0 -0
- package/sankey/README.md +22 -20
- package/sankey/covalent-echarts-sankey.d.ts +2 -1
- package/sankey/package.json +6 -7
- package/sankey/{public-api.d.ts → public_api.d.ts} +0 -0
- package/sankey/sankey.component.d.ts +25 -22
- package/sankey/sankey.module.d.ts +6 -1
- package/scatter/README.md +19 -21
- package/scatter/covalent-echarts-scatter.d.ts +2 -1
- package/scatter/package.json +6 -7
- package/scatter/{public-api.d.ts → public_api.d.ts} +0 -0
- package/scatter/scatter.component.d.ts +34 -31
- package/scatter/scatter.module.d.ts +6 -1
- package/toolbox/README.md +12 -11
- package/toolbox/covalent-echarts-toolbox.d.ts +2 -1
- package/toolbox/package.json +6 -7
- package/toolbox/{public-api.d.ts → public_api.d.ts} +0 -0
- package/toolbox/toolbox.component.d.ts +15 -10
- package/toolbox/toolbox.module.d.ts +6 -1
- package/tooltip/README.md +30 -26
- package/tooltip/covalent-echarts-tooltip.d.ts +2 -1
- package/tooltip/package.json +6 -7
- package/tooltip/{public-api.d.ts → public_api.d.ts} +0 -0
- package/tooltip/series-tooltip.component.d.ts +14 -9
- package/tooltip/tooltip.component.d.ts +21 -16
- package/tooltip/tooltip.module.d.ts +7 -1
- package/tree/README.md +20 -18
- package/tree/covalent-echarts-tree.d.ts +2 -1
- package/tree/package.json +6 -7
- package/tree/{public-api.d.ts → public_api.d.ts} +0 -0
- package/tree/tree.component.d.ts +27 -24
- package/tree/tree.module.d.ts +6 -1
- package/treemap/README.md +23 -21
- package/treemap/covalent-echarts-treemap.d.ts +2 -1
- package/treemap/package.json +6 -7
- package/treemap/{public-api.d.ts → public_api.d.ts} +0 -0
- package/treemap/treemap.component.d.ts +40 -37
- package/treemap/treemap.module.d.ts +6 -1
- package/wordcloud/README.md +25 -23
- package/wordcloud/covalent-echarts-wordcloud.d.ts +2 -1
- package/wordcloud/package.json +6 -7
- package/wordcloud/{public-api.d.ts → public_api.d.ts} +0 -0
- package/wordcloud/wordcloud.component.d.ts +17 -14
- package/wordcloud/wordcloud.module.d.ts +6 -1
- package/bar/covalent-echarts-bar.metadata.json +0 -1
- package/bar/index.d.ts +0 -1
- package/base/chart.component.scss +0 -4
- package/base/covalent-echarts-base.metadata.json +0 -1
- package/base/index.d.ts +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/hawaiian-sunrise.js +0 -465
- package/esm2015/base/themes/passion-flower.js +0 -465
- package/esm2015/base/themes/teradata-classic.js +0 -465
- package/esm2015/base/themes/teradata-default.js +0 -465
- package/esm2015/base/themes/urban-sunrise.js +0 -465
- package/esm2015/base/themes/volcanic-eruption.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-bar.js.map +0 -1
- 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-map.js.map +0 -1
- package/fesm2015/covalent-echarts-pie.js +0 -267
- package/fesm2015/covalent-echarts-pie.js.map +0 -1
- 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/graph/index.d.ts +0 -1
- package/line/covalent-echarts-line.metadata.json +0 -1
- package/line/index.d.ts +0 -1
- package/map/covalent-echarts-map.metadata.json +0 -1
- package/map/index.d.ts +0 -1
- package/pie/covalent-echarts-pie.metadata.json +0 -1
- package/pie/index.d.ts +0 -1
- package/sankey/covalent-echarts-sankey.metadata.json +0 -1
- package/sankey/index.d.ts +0 -1
- package/scatter/covalent-echarts-scatter.metadata.json +0 -1
- package/scatter/index.d.ts +0 -1
- package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
- package/toolbox/index.d.ts +0 -1
- package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
- package/tooltip/index.d.ts +0 -1
- package/tree/covalent-echarts-tree.metadata.json +0 -1
- package/tree/index.d.ts +0 -1
- package/treemap/covalent-echarts-treemap.metadata.json +0 -1
- package/treemap/index.d.ts +0 -1
- package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
- package/wordcloud/index.d.ts +0 -1
|
@@ -1,438 +0,0 @@
|
|
|
1
|
-
import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import 'echarts/lib/chart/graph';
|
|
4
|
-
import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* @fileoverview added by tsickle
|
|
8
|
-
* Generated from: graph.component.ts
|
|
9
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* @record
|
|
13
|
-
*/
|
|
14
|
-
function ITdCategories() { }
|
|
15
|
-
if (false) {
|
|
16
|
-
/** @type {?|undefined} */
|
|
17
|
-
ITdCategories.prototype.name;
|
|
18
|
-
/** @type {?|undefined} */
|
|
19
|
-
ITdCategories.prototype.symbol;
|
|
20
|
-
/** @type {?|undefined} */
|
|
21
|
-
ITdCategories.prototype.symbolSize;
|
|
22
|
-
/** @type {?|undefined} */
|
|
23
|
-
ITdCategories.prototype.symbolRotate;
|
|
24
|
-
/** @type {?|undefined} */
|
|
25
|
-
ITdCategories.prototype.symbolKeepAspect;
|
|
26
|
-
/** @type {?} */
|
|
27
|
-
ITdCategories.prototype.symbolOffset;
|
|
28
|
-
/** @type {?} */
|
|
29
|
-
ITdCategories.prototype.itemStyle;
|
|
30
|
-
/** @type {?} */
|
|
31
|
-
ITdCategories.prototype.label;
|
|
32
|
-
/** @type {?} */
|
|
33
|
-
ITdCategories.prototype.emphasis;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* @record
|
|
37
|
-
*/
|
|
38
|
-
function ITdGraphForce() { }
|
|
39
|
-
if (false) {
|
|
40
|
-
/** @type {?|undefined} */
|
|
41
|
-
ITdGraphForce.prototype.initLayout;
|
|
42
|
-
/** @type {?|undefined} */
|
|
43
|
-
ITdGraphForce.prototype.repulsion;
|
|
44
|
-
/** @type {?|undefined} */
|
|
45
|
-
ITdGraphForce.prototype.gravity;
|
|
46
|
-
/** @type {?|undefined} */
|
|
47
|
-
ITdGraphForce.prototype.edgeLength;
|
|
48
|
-
/** @type {?|undefined} */
|
|
49
|
-
ITdGraphForce.prototype.layoutAnimation;
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* @record
|
|
53
|
-
*/
|
|
54
|
-
function ITdGraphSeries() { }
|
|
55
|
-
if (false) {
|
|
56
|
-
/** @type {?|undefined} */
|
|
57
|
-
ITdGraphSeries.prototype.legendHoverLink;
|
|
58
|
-
/** @type {?|undefined} */
|
|
59
|
-
ITdGraphSeries.prototype.coordinateSystem;
|
|
60
|
-
/** @type {?|undefined} */
|
|
61
|
-
ITdGraphSeries.prototype.xAxisIndex;
|
|
62
|
-
/** @type {?|undefined} */
|
|
63
|
-
ITdGraphSeries.prototype.yAxisIndex;
|
|
64
|
-
/** @type {?|undefined} */
|
|
65
|
-
ITdGraphSeries.prototype.polarIndex;
|
|
66
|
-
/** @type {?|undefined} */
|
|
67
|
-
ITdGraphSeries.prototype.calendarIndex;
|
|
68
|
-
/** @type {?|undefined} */
|
|
69
|
-
ITdGraphSeries.prototype.geoIndex;
|
|
70
|
-
/** @type {?|undefined} */
|
|
71
|
-
ITdGraphSeries.prototype.hoverAnimation;
|
|
72
|
-
/** @type {?|undefined} */
|
|
73
|
-
ITdGraphSeries.prototype.circular;
|
|
74
|
-
/** @type {?|undefined} */
|
|
75
|
-
ITdGraphSeries.prototype.force;
|
|
76
|
-
/** @type {?|undefined} */
|
|
77
|
-
ITdGraphSeries.prototype.layout;
|
|
78
|
-
/** @type {?|undefined} */
|
|
79
|
-
ITdGraphSeries.prototype.nodeScaleRatio;
|
|
80
|
-
/** @type {?|undefined} */
|
|
81
|
-
ITdGraphSeries.prototype.draggable;
|
|
82
|
-
/** @type {?|undefined} */
|
|
83
|
-
ITdGraphSeries.prototype.symbol;
|
|
84
|
-
/** @type {?|undefined} */
|
|
85
|
-
ITdGraphSeries.prototype.symbolSize;
|
|
86
|
-
/** @type {?|undefined} */
|
|
87
|
-
ITdGraphSeries.prototype.symbolRotate;
|
|
88
|
-
/** @type {?|undefined} */
|
|
89
|
-
ITdGraphSeries.prototype.symbolKeepAspect;
|
|
90
|
-
/** @type {?|undefined} */
|
|
91
|
-
ITdGraphSeries.prototype.symbolOffset;
|
|
92
|
-
/** @type {?} */
|
|
93
|
-
ITdGraphSeries.prototype.focusNodeAdjacency;
|
|
94
|
-
/** @type {?} */
|
|
95
|
-
ITdGraphSeries.prototype.edgeSymbol;
|
|
96
|
-
/** @type {?} */
|
|
97
|
-
ITdGraphSeries.prototype.edgeSymbolSize;
|
|
98
|
-
/** @type {?} */
|
|
99
|
-
ITdGraphSeries.prototype.cursor;
|
|
100
|
-
/** @type {?|undefined} */
|
|
101
|
-
ITdGraphSeries.prototype.roam;
|
|
102
|
-
/** @type {?|undefined} */
|
|
103
|
-
ITdGraphSeries.prototype.expandAndCollapse;
|
|
104
|
-
/** @type {?|undefined} */
|
|
105
|
-
ITdGraphSeries.prototype.initialTreeDepth;
|
|
106
|
-
/** @type {?|undefined} */
|
|
107
|
-
ITdGraphSeries.prototype.itemStyle;
|
|
108
|
-
/** @type {?|undefined} */
|
|
109
|
-
ITdGraphSeries.prototype.lineStyle;
|
|
110
|
-
/** @type {?|undefined} */
|
|
111
|
-
ITdGraphSeries.prototype.label;
|
|
112
|
-
/** @type {?|undefined} */
|
|
113
|
-
ITdGraphSeries.prototype.edgeLabel;
|
|
114
|
-
/** @type {?|undefined} */
|
|
115
|
-
ITdGraphSeries.prototype.emphasis;
|
|
116
|
-
/** @type {?} */
|
|
117
|
-
ITdGraphSeries.prototype.categories;
|
|
118
|
-
/** @type {?|undefined} */
|
|
119
|
-
ITdGraphSeries.prototype.data;
|
|
120
|
-
/** @type {?} */
|
|
121
|
-
ITdGraphSeries.prototype.nodes;
|
|
122
|
-
/** @type {?} */
|
|
123
|
-
ITdGraphSeries.prototype.links;
|
|
124
|
-
/** @type {?} */
|
|
125
|
-
ITdGraphSeries.prototype.edges;
|
|
126
|
-
/** @type {?|undefined} */
|
|
127
|
-
ITdGraphSeries.prototype.markPoint;
|
|
128
|
-
/** @type {?|undefined} */
|
|
129
|
-
ITdGraphSeries.prototype.markLine;
|
|
130
|
-
/** @type {?|undefined} */
|
|
131
|
-
ITdGraphSeries.prototype.markArea;
|
|
132
|
-
/** @type {?} */
|
|
133
|
-
ITdGraphSeries.prototype.zlevel;
|
|
134
|
-
/** @type {?|undefined} */
|
|
135
|
-
ITdGraphSeries.prototype.z;
|
|
136
|
-
/** @type {?|undefined} */
|
|
137
|
-
ITdGraphSeries.prototype.silent;
|
|
138
|
-
/** @type {?} */
|
|
139
|
-
ITdGraphSeries.prototype.left;
|
|
140
|
-
/** @type {?} */
|
|
141
|
-
ITdGraphSeries.prototype.top;
|
|
142
|
-
/** @type {?} */
|
|
143
|
-
ITdGraphSeries.prototype.right;
|
|
144
|
-
/** @type {?} */
|
|
145
|
-
ITdGraphSeries.prototype.bottom;
|
|
146
|
-
/** @type {?} */
|
|
147
|
-
ITdGraphSeries.prototype.width;
|
|
148
|
-
/** @type {?} */
|
|
149
|
-
ITdGraphSeries.prototype.height;
|
|
150
|
-
/** @type {?|undefined} */
|
|
151
|
-
ITdGraphSeries.prototype.animation;
|
|
152
|
-
/** @type {?|undefined} */
|
|
153
|
-
ITdGraphSeries.prototype.animationThreshold;
|
|
154
|
-
/** @type {?|undefined} */
|
|
155
|
-
ITdGraphSeries.prototype.animationDuration;
|
|
156
|
-
/** @type {?|undefined} */
|
|
157
|
-
ITdGraphSeries.prototype.animationEasing;
|
|
158
|
-
/** @type {?|undefined} */
|
|
159
|
-
ITdGraphSeries.prototype.animationDelay;
|
|
160
|
-
/** @type {?|undefined} */
|
|
161
|
-
ITdGraphSeries.prototype.animationDurationUpdate;
|
|
162
|
-
/** @type {?|undefined} */
|
|
163
|
-
ITdGraphSeries.prototype.animationEasingUpdate;
|
|
164
|
-
/** @type {?|undefined} */
|
|
165
|
-
ITdGraphSeries.prototype.animationDelayUpdate;
|
|
166
|
-
}
|
|
167
|
-
class TdChartSeriesGraphComponent extends TdSeriesDirective {
|
|
168
|
-
/**
|
|
169
|
-
* @param {?} _optionsService
|
|
170
|
-
*/
|
|
171
|
-
constructor(_optionsService) {
|
|
172
|
-
super('graph', _optionsService);
|
|
173
|
-
}
|
|
174
|
-
/**
|
|
175
|
-
* @return {?}
|
|
176
|
-
*/
|
|
177
|
-
getConfig() {
|
|
178
|
-
return {
|
|
179
|
-
legendHoverLink: this.legendHoverLink,
|
|
180
|
-
coordinateSystem: this.coordinateSystem,
|
|
181
|
-
xAxisIndex: this.xAxisIndex,
|
|
182
|
-
yAxisIndex: this.yAxisIndex,
|
|
183
|
-
polarIndex: this.polarIndex,
|
|
184
|
-
calendarIndex: this.calendarIndex,
|
|
185
|
-
geoIndex: this.geoIndex,
|
|
186
|
-
hoverAnimation: this.hoverAnimation,
|
|
187
|
-
circular: this.circular,
|
|
188
|
-
force: this.force,
|
|
189
|
-
layout: this.layout,
|
|
190
|
-
nodeScaleRatio: this.nodeScaleRatio,
|
|
191
|
-
draggable: this.draggable,
|
|
192
|
-
symbol: this.symbol,
|
|
193
|
-
symbolSize: this.symbolSize,
|
|
194
|
-
symbolRotate: this.symbolRotate,
|
|
195
|
-
symbolKeepAspect: this.symbolKeepAspect,
|
|
196
|
-
symbolOffset: this.symbolOffset,
|
|
197
|
-
focusNodeAdjacency: this.focusNodeAdjacency,
|
|
198
|
-
edgeSymbol: this.edgeSymbol,
|
|
199
|
-
edgeSymbolSize: this.edgeSymbolSize,
|
|
200
|
-
cursor: this.cursor,
|
|
201
|
-
roam: this.roam,
|
|
202
|
-
itemStyle: this.itemStyle,
|
|
203
|
-
lineStyle: this.lineStyle,
|
|
204
|
-
label: this.label,
|
|
205
|
-
edgeLabel: this.edgeLabel,
|
|
206
|
-
emphasis: this.emphasis,
|
|
207
|
-
categories: this.categories,
|
|
208
|
-
nodes: this.nodes,
|
|
209
|
-
links: this.links,
|
|
210
|
-
edges: this.edges,
|
|
211
|
-
markPoint: this.markPoint,
|
|
212
|
-
markLine: this.markLine,
|
|
213
|
-
markArea: this.markArea,
|
|
214
|
-
zlevel: this.zlevel,
|
|
215
|
-
z: this.z,
|
|
216
|
-
silent: this.silent,
|
|
217
|
-
left: this.left,
|
|
218
|
-
top: this.top,
|
|
219
|
-
right: this.right,
|
|
220
|
-
bottom: this.bottom,
|
|
221
|
-
width: this.width,
|
|
222
|
-
height: this.height,
|
|
223
|
-
};
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
TdChartSeriesGraphComponent.decorators = [
|
|
227
|
-
{ type: Component, args: [{
|
|
228
|
-
selector: 'td-chart-series[td-graph]',
|
|
229
|
-
template: '',
|
|
230
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
231
|
-
inputs: [
|
|
232
|
-
'config',
|
|
233
|
-
'id',
|
|
234
|
-
'name',
|
|
235
|
-
'color',
|
|
236
|
-
'data',
|
|
237
|
-
'animation',
|
|
238
|
-
'animationThreshold',
|
|
239
|
-
'animationDuration',
|
|
240
|
-
'animationEasing',
|
|
241
|
-
'animationDelay',
|
|
242
|
-
'animationDurationUpdate',
|
|
243
|
-
'animationEasingUpdate',
|
|
244
|
-
'animationDelayUpdate',
|
|
245
|
-
'tooltip',
|
|
246
|
-
],
|
|
247
|
-
providers: [
|
|
248
|
-
{
|
|
249
|
-
provide: TdSeriesDirective,
|
|
250
|
-
useExisting: forwardRef((/**
|
|
251
|
-
* @return {?}
|
|
252
|
-
*/
|
|
253
|
-
() => TdChartSeriesGraphComponent)),
|
|
254
|
-
},
|
|
255
|
-
]
|
|
256
|
-
}] }
|
|
257
|
-
];
|
|
258
|
-
/** @nocollapse */
|
|
259
|
-
TdChartSeriesGraphComponent.ctorParameters = () => [
|
|
260
|
-
{ type: TdChartOptionsService }
|
|
261
|
-
];
|
|
262
|
-
TdChartSeriesGraphComponent.propDecorators = {
|
|
263
|
-
legendHoverLink: [{ type: Input }],
|
|
264
|
-
coordinateSystem: [{ type: Input }],
|
|
265
|
-
xAxisIndex: [{ type: Input }],
|
|
266
|
-
yAxisIndex: [{ type: Input }],
|
|
267
|
-
polarIndex: [{ type: Input }],
|
|
268
|
-
calendarIndex: [{ type: Input }],
|
|
269
|
-
geoIndex: [{ type: Input }],
|
|
270
|
-
hoverAnimation: [{ type: Input }],
|
|
271
|
-
circular: [{ type: Input }],
|
|
272
|
-
force: [{ type: Input }],
|
|
273
|
-
layout: [{ type: Input }],
|
|
274
|
-
nodeScaleRatio: [{ type: Input }],
|
|
275
|
-
draggable: [{ type: Input }],
|
|
276
|
-
symbol: [{ type: Input }],
|
|
277
|
-
symbolSize: [{ type: Input }],
|
|
278
|
-
symbolRotate: [{ type: Input }],
|
|
279
|
-
symbolKeepAspect: [{ type: Input }],
|
|
280
|
-
symbolOffset: [{ type: Input }],
|
|
281
|
-
focusNodeAdjacency: [{ type: Input }],
|
|
282
|
-
edgeSymbol: [{ type: Input }],
|
|
283
|
-
edgeSymbolSize: [{ type: Input }],
|
|
284
|
-
cursor: [{ type: Input }],
|
|
285
|
-
roam: [{ type: Input }],
|
|
286
|
-
initialTreeDepth: [{ type: Input }],
|
|
287
|
-
itemStyle: [{ type: Input }],
|
|
288
|
-
lineStyle: [{ type: Input }],
|
|
289
|
-
label: [{ type: Input }],
|
|
290
|
-
edgeLabel: [{ type: Input }],
|
|
291
|
-
emphasis: [{ type: Input }],
|
|
292
|
-
categories: [{ type: Input }],
|
|
293
|
-
nodes: [{ type: Input }],
|
|
294
|
-
links: [{ type: Input }],
|
|
295
|
-
edges: [{ type: Input }],
|
|
296
|
-
markPoint: [{ type: Input }],
|
|
297
|
-
markLine: [{ type: Input }],
|
|
298
|
-
markArea: [{ type: Input }],
|
|
299
|
-
zlevel: [{ type: Input }],
|
|
300
|
-
z: [{ type: Input }],
|
|
301
|
-
silent: [{ type: Input }],
|
|
302
|
-
left: [{ type: Input }],
|
|
303
|
-
top: [{ type: Input }],
|
|
304
|
-
right: [{ type: Input }],
|
|
305
|
-
bottom: [{ type: Input }],
|
|
306
|
-
width: [{ type: Input }],
|
|
307
|
-
height: [{ type: Input }]
|
|
308
|
-
};
|
|
309
|
-
if (false) {
|
|
310
|
-
/** @type {?} */
|
|
311
|
-
TdChartSeriesGraphComponent.prototype.legendHoverLink;
|
|
312
|
-
/** @type {?} */
|
|
313
|
-
TdChartSeriesGraphComponent.prototype.coordinateSystem;
|
|
314
|
-
/** @type {?} */
|
|
315
|
-
TdChartSeriesGraphComponent.prototype.xAxisIndex;
|
|
316
|
-
/** @type {?} */
|
|
317
|
-
TdChartSeriesGraphComponent.prototype.yAxisIndex;
|
|
318
|
-
/** @type {?} */
|
|
319
|
-
TdChartSeriesGraphComponent.prototype.polarIndex;
|
|
320
|
-
/** @type {?} */
|
|
321
|
-
TdChartSeriesGraphComponent.prototype.calendarIndex;
|
|
322
|
-
/** @type {?} */
|
|
323
|
-
TdChartSeriesGraphComponent.prototype.geoIndex;
|
|
324
|
-
/** @type {?} */
|
|
325
|
-
TdChartSeriesGraphComponent.prototype.hoverAnimation;
|
|
326
|
-
/** @type {?} */
|
|
327
|
-
TdChartSeriesGraphComponent.prototype.circular;
|
|
328
|
-
/** @type {?} */
|
|
329
|
-
TdChartSeriesGraphComponent.prototype.force;
|
|
330
|
-
/** @type {?} */
|
|
331
|
-
TdChartSeriesGraphComponent.prototype.layout;
|
|
332
|
-
/** @type {?} */
|
|
333
|
-
TdChartSeriesGraphComponent.prototype.nodeScaleRatio;
|
|
334
|
-
/** @type {?} */
|
|
335
|
-
TdChartSeriesGraphComponent.prototype.draggable;
|
|
336
|
-
/** @type {?} */
|
|
337
|
-
TdChartSeriesGraphComponent.prototype.symbol;
|
|
338
|
-
/** @type {?} */
|
|
339
|
-
TdChartSeriesGraphComponent.prototype.symbolSize;
|
|
340
|
-
/** @type {?} */
|
|
341
|
-
TdChartSeriesGraphComponent.prototype.symbolRotate;
|
|
342
|
-
/** @type {?} */
|
|
343
|
-
TdChartSeriesGraphComponent.prototype.symbolKeepAspect;
|
|
344
|
-
/** @type {?} */
|
|
345
|
-
TdChartSeriesGraphComponent.prototype.symbolOffset;
|
|
346
|
-
/** @type {?} */
|
|
347
|
-
TdChartSeriesGraphComponent.prototype.focusNodeAdjacency;
|
|
348
|
-
/** @type {?} */
|
|
349
|
-
TdChartSeriesGraphComponent.prototype.edgeSymbol;
|
|
350
|
-
/** @type {?} */
|
|
351
|
-
TdChartSeriesGraphComponent.prototype.edgeSymbolSize;
|
|
352
|
-
/** @type {?} */
|
|
353
|
-
TdChartSeriesGraphComponent.prototype.cursor;
|
|
354
|
-
/** @type {?} */
|
|
355
|
-
TdChartSeriesGraphComponent.prototype.roam;
|
|
356
|
-
/** @type {?} */
|
|
357
|
-
TdChartSeriesGraphComponent.prototype.initialTreeDepth;
|
|
358
|
-
/** @type {?} */
|
|
359
|
-
TdChartSeriesGraphComponent.prototype.itemStyle;
|
|
360
|
-
/** @type {?} */
|
|
361
|
-
TdChartSeriesGraphComponent.prototype.lineStyle;
|
|
362
|
-
/** @type {?} */
|
|
363
|
-
TdChartSeriesGraphComponent.prototype.label;
|
|
364
|
-
/** @type {?} */
|
|
365
|
-
TdChartSeriesGraphComponent.prototype.edgeLabel;
|
|
366
|
-
/** @type {?} */
|
|
367
|
-
TdChartSeriesGraphComponent.prototype.emphasis;
|
|
368
|
-
/** @type {?} */
|
|
369
|
-
TdChartSeriesGraphComponent.prototype.categories;
|
|
370
|
-
/** @type {?} */
|
|
371
|
-
TdChartSeriesGraphComponent.prototype.nodes;
|
|
372
|
-
/** @type {?} */
|
|
373
|
-
TdChartSeriesGraphComponent.prototype.links;
|
|
374
|
-
/** @type {?} */
|
|
375
|
-
TdChartSeriesGraphComponent.prototype.edges;
|
|
376
|
-
/** @type {?} */
|
|
377
|
-
TdChartSeriesGraphComponent.prototype.markPoint;
|
|
378
|
-
/** @type {?} */
|
|
379
|
-
TdChartSeriesGraphComponent.prototype.markLine;
|
|
380
|
-
/** @type {?} */
|
|
381
|
-
TdChartSeriesGraphComponent.prototype.markArea;
|
|
382
|
-
/** @type {?} */
|
|
383
|
-
TdChartSeriesGraphComponent.prototype.zlevel;
|
|
384
|
-
/** @type {?} */
|
|
385
|
-
TdChartSeriesGraphComponent.prototype.z;
|
|
386
|
-
/** @type {?} */
|
|
387
|
-
TdChartSeriesGraphComponent.prototype.silent;
|
|
388
|
-
/** @type {?} */
|
|
389
|
-
TdChartSeriesGraphComponent.prototype.left;
|
|
390
|
-
/** @type {?} */
|
|
391
|
-
TdChartSeriesGraphComponent.prototype.top;
|
|
392
|
-
/** @type {?} */
|
|
393
|
-
TdChartSeriesGraphComponent.prototype.right;
|
|
394
|
-
/** @type {?} */
|
|
395
|
-
TdChartSeriesGraphComponent.prototype.bottom;
|
|
396
|
-
/** @type {?} */
|
|
397
|
-
TdChartSeriesGraphComponent.prototype.width;
|
|
398
|
-
/** @type {?} */
|
|
399
|
-
TdChartSeriesGraphComponent.prototype.height;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
/**
|
|
403
|
-
* @fileoverview added by tsickle
|
|
404
|
-
* Generated from: graph.module.ts
|
|
405
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
406
|
-
*/
|
|
407
|
-
/** @type {?} */
|
|
408
|
-
const GRAPH_MODULE_COMPONENTS = [TdChartSeriesGraphComponent];
|
|
409
|
-
class CovalentGraphEchartsModule {
|
|
410
|
-
}
|
|
411
|
-
CovalentGraphEchartsModule.decorators = [
|
|
412
|
-
{ type: NgModule, args: [{
|
|
413
|
-
imports: [CommonModule],
|
|
414
|
-
declarations: [GRAPH_MODULE_COMPONENTS],
|
|
415
|
-
exports: [GRAPH_MODULE_COMPONENTS],
|
|
416
|
-
},] }
|
|
417
|
-
];
|
|
418
|
-
|
|
419
|
-
/**
|
|
420
|
-
* @fileoverview added by tsickle
|
|
421
|
-
* Generated from: public-api.ts
|
|
422
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
423
|
-
*/
|
|
424
|
-
|
|
425
|
-
/**
|
|
426
|
-
* @fileoverview added by tsickle
|
|
427
|
-
* Generated from: index.ts
|
|
428
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
429
|
-
*/
|
|
430
|
-
|
|
431
|
-
/**
|
|
432
|
-
* @fileoverview added by tsickle
|
|
433
|
-
* Generated from: covalent-echarts-graph.ts
|
|
434
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
435
|
-
*/
|
|
436
|
-
|
|
437
|
-
export { CovalentGraphEchartsModule, GRAPH_MODULE_COMPONENTS, TdChartSeriesGraphComponent };
|
|
438
|
-
//# sourceMappingURL=covalent-echarts-graph.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"covalent-echarts-graph.js","sources":["../../../../src/platform/echarts/graph/graph.component.ts","../../../../src/platform/echarts/graph/graph.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n TdCoordinateSystem,\n ITdItemStyle,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n TdSeriesDirective,\n TdMarkPointSymbol,\n ITdLineStyle,\n ITdEdgeLabel,\n} from '@covalent/echarts/base';\n\nexport interface ITdCategories {\n name?: string;\n symbol?: TdMarkPointSymbol | string;\n symbolSize?: number | any[];\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset: any[];\n itemStyle: ITdItemStyle;\n label: ITdLabel;\n emphasis: ITdEmphasis;\n}\n\nexport interface ITdGraphForce {\n initLayout?: string;\n repulsion?: any | number;\n gravity?: number;\n edgeLength?: any | number;\n layoutAnimation?: boolean;\n}\n\nexport type TdGraphLayout = 'none' | 'circular' | 'force';\n\nexport interface ITdGraphSeries extends ITdSeries {\n legendHoverLink?: boolean;\n coordinateSystem?: TdCoordinateSystem;\n xAxisIndex?: number;\n yAxisIndex?: number;\n polarIndex?: number;\n calendarIndex?: number;\n geoIndex?: number;\n hoverAnimation?: boolean;\n circular?: object;\n force?: ITdGraphForce;\n layout?: TdGraphLayout;\n nodeScaleRatio?: boolean;\n draggable?: boolean;\n symbol?: TdMarkPointSymbol | string;\n symbolSize?: number | any[] | Function;\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset?: any[];\n focusNodeAdjacency: boolean;\n edgeSymbol: any[] | string;\n edgeSymbolSize: number;\n cursor: string;\n roam?: boolean;\n expandAndCollapse?: boolean;\n initialTreeDepth?: number;\n itemStyle?: ITdItemStyle;\n lineStyle?: ITdLineStyle;\n label?: ITdLabel;\n edgeLabel?: ITdEdgeLabel;\n emphasis?: ITdEmphasis;\n categories: ITdCategories;\n data?: any[];\n nodes: any[];\n links: any[];\n edges: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n zlevel: number;\n z?: number;\n silent?: boolean;\n left: string | number;\n top: string | number;\n right: string | number;\n bottom: string | number;\n width: string | number;\n height: string | number;\n animation?: boolean;\n animationThreshold?: number;\n animationDuration?: number | Function;\n animationEasing?: string;\n animationDelay?: number | Function;\n animationDurationUpdate?: number | Function;\n animationEasingUpdate?: string;\n animationDelayUpdate?: number | Function;\n}\n\n@Component({\n selector: 'td-chart-series[td-graph]',\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(() => TdChartSeriesGraphComponent),\n },\n ],\n})\nexport class TdChartSeriesGraphComponent extends TdSeriesDirective implements ITdGraphSeries {\n @Input() legendHoverLink: boolean;\n @Input() coordinateSystem: TdCoordinateSystem;\n @Input() xAxisIndex: number;\n @Input() yAxisIndex: number;\n @Input() polarIndex: number;\n @Input() calendarIndex: number;\n @Input() geoIndex: number;\n @Input() hoverAnimation: boolean;\n @Input() circular: object;\n @Input() force: ITdGraphForce;\n @Input() layout: TdGraphLayout;\n @Input() nodeScaleRatio: boolean;\n @Input() draggable: boolean;\n @Input() symbol: TdMarkPointSymbol | string;\n @Input() symbolSize: number | any[] | Function;\n @Input() symbolRotate: number;\n @Input() symbolKeepAspect: boolean;\n @Input() symbolOffset: any[];\n @Input() focusNodeAdjacency: boolean;\n @Input() edgeSymbol: any[] | string;\n @Input() edgeSymbolSize: number;\n @Input() cursor: string;\n @Input() roam: boolean;\n @Input() initialTreeDepth: number;\n @Input() itemStyle: ITdItemStyle;\n @Input() lineStyle: ITdLineStyle;\n @Input() label: ITdLabel;\n @Input() edgeLabel: ITdEdgeLabel;\n @Input() emphasis: ITdEmphasis;\n @Input() categories: ITdCategories;\n @Input() nodes: any[];\n @Input() links: any[];\n @Input() edges: any[];\n @Input() markPoint: ITdMarkPoint;\n @Input() markLine: ITdMarkLine;\n @Input() markArea: ITdMarkArea;\n @Input() zlevel: number;\n @Input() z: number;\n @Input() silent: boolean;\n @Input() left: string | number;\n @Input() top: string | number;\n @Input() right: string | number;\n @Input() bottom: string | number;\n @Input() width: string | number;\n @Input() height: string | number;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('graph', _optionsService);\n }\n\n getConfig(): any {\n return {\n legendHoverLink: this.legendHoverLink,\n coordinateSystem: this.coordinateSystem,\n xAxisIndex: this.xAxisIndex,\n yAxisIndex: this.yAxisIndex,\n polarIndex: this.polarIndex,\n calendarIndex: this.calendarIndex,\n geoIndex: this.geoIndex,\n hoverAnimation: this.hoverAnimation,\n circular: this.circular,\n force: this.force,\n layout: this.layout,\n nodeScaleRatio: this.nodeScaleRatio,\n draggable: this.draggable,\n symbol: this.symbol,\n symbolSize: this.symbolSize,\n symbolRotate: this.symbolRotate,\n symbolKeepAspect: this.symbolKeepAspect,\n symbolOffset: this.symbolOffset,\n focusNodeAdjacency: this.focusNodeAdjacency,\n edgeSymbol: this.edgeSymbol,\n edgeSymbolSize: this.edgeSymbolSize,\n cursor: this.cursor,\n roam: this.roam,\n itemStyle: this.itemStyle,\n lineStyle: this.lineStyle,\n label: this.label,\n edgeLabel: this.edgeLabel,\n emphasis: this.emphasis,\n categories: this.categories,\n nodes: this.nodes,\n links: this.links,\n edges: this.edges,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n silent: this.silent,\n left: this.left,\n top: this.top,\n right: this.right,\n bottom: this.bottom,\n width: this.width,\n height: this.height,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/graph';\n\nimport { TdChartSeriesGraphComponent } from './graph.component';\n\nexport const GRAPH_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesGraphComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [GRAPH_MODULE_COMPONENTS],\n exports: [GRAPH_MODULE_COMPONENTS],\n})\nexport class CovalentGraphEchartsModule {}\n"],"names":[],"mappings":"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"}
|