@carbon/charts-angular 0.42.1 → 0.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/README.md +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.45.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.44.1...v0.45.0) (2021-08-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-angular
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.44.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.44.0...v0.44.1) (2021-08-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @carbon/charts-angular
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [0.44.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.43.0...v0.44.0) (2021-08-18)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @carbon/charts-angular
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [0.43.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.42.1...v0.43.0) (2021-08-17)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @carbon/charts-angular
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [0.42.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.42.0...v0.42.1) (2021-08-13)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @carbon/charts-angular
|
package/README.md
CHANGED
|
@@ -11,27 +11,27 @@
|
|
|
11
11
|
Run the following command using [npm](https://www.npmjs.com/):
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install -S @carbon/charts @carbon/charts-angular d3
|
|
14
|
+
npm install -S @carbon/charts @carbon/charts-angular d3
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command
|
|
18
18
|
instead:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
yarn add @carbon/charts @carbon/charts-angular d3
|
|
21
|
+
yarn add @carbon/charts @carbon/charts-angular d3
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
**Note:** you'd also need to install `carbon-components` if you're not using a bundled version of the library.
|
|
25
25
|
|
|
26
26
|
## Step-by-step instructions
|
|
27
|
-
Read [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/
|
|
27
|
+
Read [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/docs-getting-started--angular)
|
|
28
28
|
|
|
29
29
|
## Charting data & options
|
|
30
30
|
Although we will definitely introduce new models in the future as we start shipping new components such as maps, Data and options follow the same model in all charts, with minor exceptions and differences in specific components.
|
|
31
31
|
|
|
32
32
|
For instance in the case of a donut chart you're able to pass in an additional field called `center` in your options configuring the donut center.
|
|
33
33
|
|
|
34
|
-
For instructions on using the **tabular data format**, see [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/tutorials--tabular-data-format)
|
|
34
|
+
For instructions on using the **tabular data format**, see [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/docs-tutorials--tabular-data-format)
|
|
35
35
|
|
|
36
36
|
There are also additional options available depending on the chart type being used, [see our demo examples here](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/core/demo/data).
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.45.0",
|
|
4
4
|
"description": "Carbon charting components for Angular",
|
|
5
5
|
"main": "bundles/carbon-charts-angular.umd.js",
|
|
6
6
|
"repository": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"scss"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@carbon/charts": "^0.
|
|
37
|
+
"@carbon/charts": "^0.45.0",
|
|
38
38
|
"@carbon/telemetry": "0.0.0-alpha.6",
|
|
39
39
|
"tslib": "^1.9.0"
|
|
40
40
|
},
|