@covalent/echarts 4.0.0 → 4.1.0-develop.10
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 -22
- 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
package/pie/pie.component.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, ITdItemStyle, ITdEmphasis, TdSeriesLayoutBy, ITdMarkPoint, ITdMarkLine, ITdMarkArea, ITdSeries, ITdLabel, ITdLabelLine, TdSeriesDirective } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface ITdPieSeries extends ITdSeries {
|
|
3
4
|
legendHoverLink?: boolean;
|
|
4
5
|
hoverAnimation?: boolean;
|
|
@@ -30,32 +31,34 @@ export interface ITdPieSeries extends ITdSeries {
|
|
|
30
31
|
silent?: boolean;
|
|
31
32
|
}
|
|
32
33
|
export declare class TdChartSeriesPieComponent extends TdSeriesDirective implements ITdPieSeries {
|
|
33
|
-
legendHoverLink
|
|
34
|
-
hoverAnimation
|
|
35
|
-
hoverOffset
|
|
36
|
-
selectedMode
|
|
37
|
-
selectedOffset
|
|
38
|
-
clockwise
|
|
39
|
-
startAngle
|
|
40
|
-
minAngle
|
|
41
|
-
minShowLabelAngle
|
|
42
|
-
roseType
|
|
43
|
-
avoidLabelOverlap
|
|
44
|
-
stillShowZeroSum
|
|
45
|
-
cursor
|
|
46
|
-
labelLine
|
|
47
|
-
label
|
|
48
|
-
itemStyle
|
|
49
|
-
emphasis
|
|
50
|
-
seriesLayoutBy
|
|
51
|
-
datasetIndex
|
|
52
|
-
markPoint
|
|
53
|
-
markLine
|
|
54
|
-
markArea
|
|
55
|
-
zlevel
|
|
56
|
-
z
|
|
57
|
-
center
|
|
58
|
-
radius
|
|
34
|
+
legendHoverLink?: boolean;
|
|
35
|
+
hoverAnimation?: boolean;
|
|
36
|
+
hoverOffset?: number;
|
|
37
|
+
selectedMode?: boolean | string;
|
|
38
|
+
selectedOffset?: number;
|
|
39
|
+
clockwise?: boolean;
|
|
40
|
+
startAngle?: number;
|
|
41
|
+
minAngle?: number;
|
|
42
|
+
minShowLabelAngle?: number;
|
|
43
|
+
roseType?: boolean | string;
|
|
44
|
+
avoidLabelOverlap?: boolean;
|
|
45
|
+
stillShowZeroSum?: boolean;
|
|
46
|
+
cursor?: string;
|
|
47
|
+
labelLine?: object;
|
|
48
|
+
label?: any;
|
|
49
|
+
itemStyle?: ITdItemStyle;
|
|
50
|
+
emphasis?: ITdEmphasis;
|
|
51
|
+
seriesLayoutBy?: TdSeriesLayoutBy;
|
|
52
|
+
datasetIndex?: number;
|
|
53
|
+
markPoint?: ITdMarkPoint;
|
|
54
|
+
markLine?: ITdMarkLine;
|
|
55
|
+
markArea?: ITdMarkArea;
|
|
56
|
+
zlevel?: number;
|
|
57
|
+
z?: number;
|
|
58
|
+
center?: object;
|
|
59
|
+
radius?: number | string | any[];
|
|
59
60
|
constructor(_optionsService: TdChartOptionsService);
|
|
60
61
|
getConfig(): any;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesPieComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesPieComponent, "td-chart-series[td-pie]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "legendHoverLink": "legendHoverLink"; "hoverAnimation": "hoverAnimation"; "hoverOffset": "hoverOffset"; "selectedMode": "selectedMode"; "selectedOffset": "selectedOffset"; "clockwise": "clockwise"; "startAngle": "startAngle"; "minAngle": "minAngle"; "minShowLabelAngle": "minShowLabelAngle"; "roseType": "roseType"; "avoidLabelOverlap": "avoidLabelOverlap"; "stillShowZeroSum": "stillShowZeroSum"; "cursor": "cursor"; "labelLine": "labelLine"; "label": "label"; "itemStyle": "itemStyle"; "emphasis": "emphasis"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "center": "center"; "radius": "radius"; }, {}, never, never>;
|
|
61
64
|
}
|
package/pie/pie.module.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./pie.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const PIE_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentPieEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentPieEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentPieEchartsModule, [typeof i1.TdChartSeriesPieComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesPieComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentPieEchartsModule>;
|
|
5
10
|
}
|
|
File without changes
|
|
File without changes
|
package/sankey/README.md
CHANGED
|
@@ -6,22 +6,22 @@
|
|
|
6
6
|
|
|
7
7
|
#### Inputs
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
- config?: any
|
|
10
|
+
- Sets the JS config object if you choose to not use the property inputs.
|
|
11
|
+
- Note: [config] input properties will override input values
|
|
12
12
|
|
|
13
13
|
There are also lots of property inputs like:
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
- id?: string
|
|
16
|
+
- It can be used to refer the component in option or API.
|
|
17
|
+
- name?: string
|
|
18
|
+
- Series name used for displaying in tooltip and filtering with legend.
|
|
19
|
+
- color?: any
|
|
20
|
+
- Global color for the series.
|
|
21
|
+
- nodes?: any[] // or data?: any[]
|
|
22
|
+
- Data array of series.
|
|
23
|
+
- links?: any[] // or edges?: any[]
|
|
24
|
+
- The links between nodes.
|
|
25
25
|
|
|
26
26
|
And so many more.. for more info [click here](https://echarts.apache.org/en/option.html#series-sankey)
|
|
27
27
|
|
|
@@ -49,17 +49,18 @@ Basic Example:
|
|
|
49
49
|
|
|
50
50
|
```html
|
|
51
51
|
<td-chart>
|
|
52
|
-
<td-chart-series
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
52
|
+
<td-chart-series
|
|
53
|
+
td-sankey
|
|
54
|
+
[focusNodeAdjacency]="'allEdges'"
|
|
55
|
+
[right]="40"
|
|
56
|
+
[left]="40"
|
|
57
|
+
[data]="[{name: 'a'},
|
|
57
58
|
{name: 'b'},
|
|
58
59
|
{name: 'a1'},
|
|
59
60
|
{name: 'a2'},
|
|
60
61
|
{name: 'b1'},
|
|
61
62
|
{name: 'c'}]"
|
|
62
|
-
|
|
63
|
+
[links]="[{
|
|
63
64
|
source: 'a',
|
|
64
65
|
target: 'a1',
|
|
65
66
|
value: 5
|
|
@@ -83,7 +84,8 @@ Basic Example:
|
|
|
83
84
|
source: 'b1',
|
|
84
85
|
target: 'c',
|
|
85
86
|
value: 2
|
|
86
|
-
}]"
|
|
87
|
+
}]"
|
|
88
|
+
>
|
|
87
89
|
</td-chart-series>
|
|
88
90
|
</td-chart>
|
|
89
91
|
```
|
package/sankey/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-sankey.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-sankey.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-sankey.mjs",
|
|
4
|
+
"esm2020": "../esm2020/sankey/covalent-echarts-sankey.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-sankey.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-sankey.mjs",
|
|
7
7
|
"typings": "covalent-echarts-sankey.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-sankey.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/sankey"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
File without changes
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, ITdLabel, ITdItemStyle, ITdEmphasis, ITdSeries, TdSeriesDirective, ITdShadow, ITdLineCurveStyle } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare type TdSankeyOrient = 'horizontal' | 'vertical';
|
|
3
4
|
export declare type TdSankeyFocusNodeAdjacency = boolean | 'allEdges' | 'outEdges' | 'inEdges';
|
|
4
5
|
export interface ITdSankeyEmphasisLineStyle extends ITdShadow {
|
|
@@ -35,28 +36,30 @@ export interface ITdSankeySeries extends ITdSeries {
|
|
|
35
36
|
silent?: boolean;
|
|
36
37
|
}
|
|
37
38
|
export declare class TdChartSeriesSankeyComponent extends TdSeriesDirective implements ITdSankeySeries {
|
|
38
|
-
zlevel
|
|
39
|
-
z
|
|
40
|
-
left
|
|
41
|
-
top
|
|
42
|
-
right
|
|
43
|
-
bottom
|
|
44
|
-
width
|
|
45
|
-
height
|
|
46
|
-
nodeWidth
|
|
47
|
-
nodeGap
|
|
48
|
-
layoutIterations
|
|
49
|
-
orient
|
|
50
|
-
draggable
|
|
51
|
-
focusNodeAdjacency
|
|
52
|
-
label
|
|
53
|
-
itemStyle
|
|
54
|
-
lineStyle
|
|
55
|
-
emphasis
|
|
56
|
-
nodes
|
|
57
|
-
links
|
|
58
|
-
edges
|
|
59
|
-
silent
|
|
39
|
+
zlevel?: number;
|
|
40
|
+
z?: number;
|
|
41
|
+
left?: string | number;
|
|
42
|
+
top?: string | number;
|
|
43
|
+
right?: string | number;
|
|
44
|
+
bottom?: string | number;
|
|
45
|
+
width?: string | number;
|
|
46
|
+
height?: string | number;
|
|
47
|
+
nodeWidth?: number;
|
|
48
|
+
nodeGap?: number;
|
|
49
|
+
layoutIterations?: number;
|
|
50
|
+
orient?: TdSankeyOrient;
|
|
51
|
+
draggable?: boolean;
|
|
52
|
+
focusNodeAdjacency?: TdSankeyFocusNodeAdjacency;
|
|
53
|
+
label?: ITdLabel;
|
|
54
|
+
itemStyle?: ITdItemStyle;
|
|
55
|
+
lineStyle?: ITdLineCurveStyle;
|
|
56
|
+
emphasis?: ITdEmphasis;
|
|
57
|
+
nodes?: any[];
|
|
58
|
+
links?: any[];
|
|
59
|
+
edges?: any[];
|
|
60
|
+
silent?: boolean;
|
|
60
61
|
constructor(_optionsService: TdChartOptionsService);
|
|
61
62
|
getConfig(): any;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesSankeyComponent, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesSankeyComponent, "td-chart-series[td-sankey]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "zlevel": "zlevel"; "z": "z"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; "nodeWidth": "nodeWidth"; "nodeGap": "nodeGap"; "layoutIterations": "layoutIterations"; "orient": "orient"; "draggable": "draggable"; "focusNodeAdjacency": "focusNodeAdjacency"; "label": "label"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "emphasis": "emphasis"; "nodes": "nodes"; "links": "links"; "edges": "edges"; "silent": "silent"; }, {}, never, never>;
|
|
62
65
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./sankey.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const SANKEY_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentSankeyEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentSankeyEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentSankeyEchartsModule, [typeof i1.TdChartSeriesSankeyComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesSankeyComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentSankeyEchartsModule>;
|
|
5
10
|
}
|
package/scatter/README.md
CHANGED
|
@@ -6,20 +6,20 @@
|
|
|
6
6
|
|
|
7
7
|
#### Inputs
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
- config?: any
|
|
10
|
+
- Sets the JS config object if you choose to not use the property inputs.
|
|
11
|
+
- Note: [config] input properties will override input values
|
|
12
12
|
|
|
13
13
|
There are also lots of property inputs like:
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
- id?: string
|
|
16
|
+
- It can be used to refer the component in option or API.
|
|
17
|
+
- name?: string
|
|
18
|
+
- Series name used for displaying in tooltip and filtering with legend.
|
|
19
|
+
- color?: any
|
|
20
|
+
- Global color for the series.
|
|
21
|
+
- data?: any[]
|
|
22
|
+
- Data array of series.
|
|
23
23
|
|
|
24
24
|
And so many more.. for more info [click here](https://echarts.apache.org/en/option.html#series-scatter)
|
|
25
25
|
|
|
@@ -47,22 +47,20 @@ Basic Example:
|
|
|
47
47
|
|
|
48
48
|
```html
|
|
49
49
|
<td-chart>
|
|
50
|
-
<td-chart-x-axis [show]="true"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
</td-chart-y-axis>
|
|
56
|
-
<td-chart-series td-scatter
|
|
57
|
-
[data]="[
|
|
50
|
+
<td-chart-x-axis [show]="true" [type]="'value'"> </td-chart-x-axis>
|
|
51
|
+
<td-chart-y-axis [show]="true" [type]="'value'"> </td-chart-y-axis>
|
|
52
|
+
<td-chart-series
|
|
53
|
+
td-scatter
|
|
54
|
+
[data]="[
|
|
58
55
|
[28604, 77, 17096869, 'Australia', 1990],
|
|
59
56
|
[31163, 77.4, 27662440, 'Canada', 1990],
|
|
60
57
|
[1516, 68, 1154605773, 'China', 1990],
|
|
61
58
|
[13670, 74.7, 10582082, 'Cuba', 1990],
|
|
62
59
|
[28599, 75, 4986705, 'Finland', 1990]
|
|
63
60
|
]"
|
|
64
|
-
|
|
65
|
-
|
|
61
|
+
[name]="'1990'"
|
|
62
|
+
[color]="'#F2724B'"
|
|
63
|
+
>
|
|
66
64
|
</td-chart-series>
|
|
67
65
|
</td-chart>
|
|
68
66
|
```
|
package/scatter/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-scatter.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-scatter.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-scatter.mjs",
|
|
4
|
+
"esm2020": "../esm2020/scatter/covalent-echarts-scatter.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-scatter.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-scatter.mjs",
|
|
7
7
|
"typings": "covalent-echarts-scatter.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-scatter.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/scatter"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
File without changes
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TdChartOptionsService, TdCoordinateSystem, TdMarkPointSymbol, ITdMarkPoint, ITdItemStyle, ITdLabel, ITdEmphasis, TdSeriesLayoutBy, ITdMarkLine, ITdMarkArea, TdSeriesDirective, ITdSeries } from '@covalent/echarts/base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface ITdScatterSeries extends ITdSeries {
|
|
3
4
|
coordinateSystem?: TdCoordinateSystem;
|
|
4
5
|
xAxisIndex?: number;
|
|
@@ -37,37 +38,39 @@ export interface ITdScatterSeries extends ITdSeries {
|
|
|
37
38
|
silent?: boolean;
|
|
38
39
|
}
|
|
39
40
|
export declare class TdChartSeriesScatterComponent extends TdSeriesDirective implements ITdScatterSeries {
|
|
40
|
-
coordinateSystem
|
|
41
|
-
xAxisIndex
|
|
42
|
-
yAxisIndex
|
|
43
|
-
polarIndex
|
|
44
|
-
geoIndex
|
|
45
|
-
calendarIndex
|
|
46
|
-
hoverAnimation
|
|
47
|
-
legendHoverLink
|
|
48
|
-
symbol
|
|
49
|
-
symbolSize
|
|
50
|
-
symbolRotate
|
|
51
|
-
symbolKeepAspect
|
|
52
|
-
symbolOffset
|
|
53
|
-
large
|
|
54
|
-
largeThreshold
|
|
55
|
-
cursor
|
|
56
|
-
label
|
|
57
|
-
itemStyle
|
|
58
|
-
emphasis
|
|
59
|
-
progressive
|
|
60
|
-
progressiveThreshold
|
|
61
|
-
dimensions
|
|
62
|
-
encode
|
|
63
|
-
seriesLayoutBy
|
|
64
|
-
datasetIndex
|
|
65
|
-
markPoint
|
|
66
|
-
markLine
|
|
67
|
-
markArea
|
|
68
|
-
zlevel
|
|
69
|
-
z
|
|
70
|
-
silent
|
|
41
|
+
coordinateSystem?: TdCoordinateSystem;
|
|
42
|
+
xAxisIndex?: number;
|
|
43
|
+
yAxisIndex?: number;
|
|
44
|
+
polarIndex?: number;
|
|
45
|
+
geoIndex?: number;
|
|
46
|
+
calendarIndex?: number;
|
|
47
|
+
hoverAnimation?: boolean;
|
|
48
|
+
legendHoverLink?: boolean;
|
|
49
|
+
symbol?: TdMarkPointSymbol | string;
|
|
50
|
+
symbolSize?: number | any[] | Function;
|
|
51
|
+
symbolRotate?: number;
|
|
52
|
+
symbolKeepAspect?: boolean;
|
|
53
|
+
symbolOffset?: any[];
|
|
54
|
+
large?: boolean;
|
|
55
|
+
largeThreshold?: number;
|
|
56
|
+
cursor?: string;
|
|
57
|
+
label?: ITdLabel;
|
|
58
|
+
itemStyle?: ITdItemStyle;
|
|
59
|
+
emphasis?: ITdEmphasis;
|
|
60
|
+
progressive?: number;
|
|
61
|
+
progressiveThreshold?: number;
|
|
62
|
+
dimensions?: any[];
|
|
63
|
+
encode?: any;
|
|
64
|
+
seriesLayoutBy?: TdSeriesLayoutBy;
|
|
65
|
+
datasetIndex?: number;
|
|
66
|
+
markPoint?: ITdMarkPoint;
|
|
67
|
+
markLine?: ITdMarkLine;
|
|
68
|
+
markArea?: ITdMarkArea;
|
|
69
|
+
zlevel?: number;
|
|
70
|
+
z?: number;
|
|
71
|
+
silent?: boolean;
|
|
71
72
|
constructor(_optionsService: TdChartOptionsService);
|
|
72
73
|
getConfig(): any;
|
|
74
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesScatterComponent, never>;
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesScatterComponent, "td-chart-series[td-scatter]", never, { "config": "config"; "id": "id"; "name": "name"; "color": "color"; "data": "data"; "animation": "animation"; "animationThreshold": "animationThreshold"; "animationDuration": "animationDuration"; "animationEasing": "animationEasing"; "animationDelay": "animationDelay"; "animationDurationUpdate": "animationDurationUpdate"; "animationEasingUpdate": "animationEasingUpdate"; "animationDelayUpdate": "animationDelayUpdate"; "tooltip": "tooltip"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "geoIndex": "geoIndex"; "calendarIndex": "calendarIndex"; "hoverAnimation": "hoverAnimation"; "legendHoverLink": "legendHoverLink"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "large": "large"; "largeThreshold": "largeThreshold"; "cursor": "cursor"; "label": "label"; "itemStyle": "itemStyle"; "emphasis": "emphasis"; "progressive": "progressive"; "progressiveThreshold": "progressiveThreshold"; "dimensions": "dimensions"; "encode": "encode"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; }, {}, never, never>;
|
|
73
76
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./scatter.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const SCATTER_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentScatterEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentScatterEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentScatterEchartsModule, [typeof i1.TdChartSeriesScatterComponent], [typeof i2.CommonModule], [typeof i1.TdChartSeriesScatterComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentScatterEchartsModule>;
|
|
5
10
|
}
|
package/toolbox/README.md
CHANGED
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
#### Inputs
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
- config?: any
|
|
10
|
+
- Sets the JS config object if you choose to not use the property inputs.
|
|
11
|
+
- Note: [config] input properties will override input values
|
|
12
12
|
|
|
13
13
|
There are also lots of property inputs like:
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
- feature?: ITdToolboxFeature
|
|
16
|
+
- The configuration item for each tool which includes saveAsImage, dataView, dataZoom, restore, magicTypes and brush.
|
|
17
|
+
- show?: boolean
|
|
18
|
+
- Show or hide the toolbox.
|
|
19
19
|
|
|
20
20
|
And so many more.. for more info [click here](https://echarts.apache.org/en/option.html#toolbox)
|
|
21
21
|
|
|
@@ -44,13 +44,14 @@ Basic Toolbox Example: To change the toolbox default language for `title` and `l
|
|
|
44
44
|
```html
|
|
45
45
|
<td-chart>
|
|
46
46
|
<td-chart-toolbox
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
[show]="true"
|
|
48
|
+
[right]="30"
|
|
49
|
+
[feature]="{dataView: {readOnly: true, title: 'View Data', lang: ['Data View', 'Turn Off', 'Refresh']},
|
|
50
50
|
dataZoom: {title: {zoom: 'Zoom', back: 'Back'}},
|
|
51
51
|
magicType: {type: ['line', 'bar', 'stack', 'tiled'],
|
|
52
52
|
title: {line: 'Line', bar: 'Bar', stack: 'Stack', tiled: 'Tiled'}},
|
|
53
|
-
restore: {title: 'Restore'}}"
|
|
53
|
+
restore: {title: 'Restore'}}"
|
|
54
|
+
>
|
|
54
55
|
</td-chart-toolbox>
|
|
55
56
|
</td-chart>
|
|
56
57
|
```
|
package/toolbox/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/covalent-echarts-toolbox.
|
|
2
|
+
"module": "../fesm2015/covalent-echarts-toolbox.mjs",
|
|
3
|
+
"es2020": "../fesm2020/covalent-echarts-toolbox.mjs",
|
|
4
|
+
"esm2020": "../esm2020/toolbox/covalent-echarts-toolbox.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/covalent-echarts-toolbox.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/covalent-echarts-toolbox.mjs",
|
|
7
7
|
"typings": "covalent-echarts-toolbox.d.ts",
|
|
8
|
-
"metadata": "covalent-echarts-toolbox.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@covalent/echarts/toolbox"
|
|
11
|
-
}
|
|
10
|
+
}
|
|
File without changes
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TemplateRef, ElementRef, ChangeDetectorRef, OnChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { TdChartOptionsService, ITdLabel, ITdShadow, ITdItemStyle, TdTextPosition, TdTextAlign } from '@covalent/echarts/base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare type TdToolboxOrient = 'horizontal' | 'vertical';
|
|
4
5
|
export declare type TdImageType = 'png' | 'jpeg';
|
|
5
6
|
export interface ITdAcceptedBrushTypes {
|
|
@@ -100,6 +101,8 @@ export interface ITdToolboxFeature {
|
|
|
100
101
|
brush?: ITdBrush;
|
|
101
102
|
}
|
|
102
103
|
export declare class TdChartViewDataFormatterDirective {
|
|
104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartViewDataFormatterDirective, never>;
|
|
105
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdChartViewDataFormatterDirective, "ng-template[tdViewDataFormatter]", never, {}, {}, never>;
|
|
103
106
|
}
|
|
104
107
|
export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
|
|
105
108
|
private _changeDetectorRef;
|
|
@@ -108,16 +111,16 @@ export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
|
|
|
108
111
|
private _state;
|
|
109
112
|
config: any;
|
|
110
113
|
show: boolean;
|
|
111
|
-
trigger
|
|
112
|
-
orient
|
|
113
|
-
itemSize
|
|
114
|
-
itemGap
|
|
115
|
-
showTitle
|
|
116
|
-
label
|
|
117
|
-
feature
|
|
118
|
-
iconStyle
|
|
119
|
-
zlevel
|
|
120
|
-
z
|
|
114
|
+
trigger?: string;
|
|
115
|
+
orient?: TdToolboxOrient;
|
|
116
|
+
itemSize?: number;
|
|
117
|
+
itemGap?: number;
|
|
118
|
+
showTitle?: boolean | undefined;
|
|
119
|
+
label?: ITdLabel;
|
|
120
|
+
feature?: ITdToolboxFeature;
|
|
121
|
+
iconStyle?: ITdFeatureIconStyle;
|
|
122
|
+
zlevel?: number;
|
|
123
|
+
z?: number;
|
|
121
124
|
transitionDuration: number;
|
|
122
125
|
left: string | number;
|
|
123
126
|
top: string | number;
|
|
@@ -134,4 +137,6 @@ export declare class TdChartToolboxComponent implements OnChanges, OnDestroy {
|
|
|
134
137
|
private _removeOption;
|
|
135
138
|
private _checkFormatterTemplate;
|
|
136
139
|
private _optionToContentFormatter;
|
|
140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TdChartToolboxComponent, never>;
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TdChartToolboxComponent, "td-chart-toolbox", never, { "config": "config"; "show": "show"; "trigger": "trigger"; "orient": "orient"; "itemSize": "itemSize"; "itemGap": "itemGap"; "showTitle": "showTitle"; "label": "label"; "feature": "feature"; "iconStyle": "iconStyle"; "zlevel": "zlevel"; "z": "z"; "transitionDuration": "transitionDuration"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; }, {}, ["formatterTemplate"], never>;
|
|
137
142
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { Type } from '@angular/core';
|
|
2
|
-
import
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./toolbox.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
3
5
|
export declare const TOOLBOX_MODULE_COMPONENTS: Type<any>[];
|
|
4
6
|
export declare class CovalentToolboxEchartsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentToolboxEchartsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentToolboxEchartsModule, [typeof i1.TdChartToolboxComponent, typeof i1.TdChartViewDataFormatterDirective], [typeof i2.CommonModule], [typeof i1.TdChartToolboxComponent, typeof i1.TdChartViewDataFormatterDirective]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentToolboxEchartsModule>;
|
|
5
10
|
}
|