@carbon/charts-vue 1.15.6 → 1.15.8
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 +22 -0
- package/dist/components/CcvAlluvialChart.d.ts +16 -15
- package/dist/components/CcvAreaChart.d.ts +16 -15
- package/dist/components/CcvBoxplotChart.d.ts +16 -16
- package/dist/components/CcvBubbleChart.d.ts +16 -15
- package/dist/components/CcvBulletChart.d.ts +16 -15
- package/dist/components/CcvChoroplethChart.d.ts +16 -15
- package/dist/components/CcvCirclePackChart.d.ts +16 -15
- package/dist/components/CcvComboChart.d.ts +16 -15
- package/dist/components/CcvDonutChart.d.ts +16 -15
- package/dist/components/CcvGaugeChart.d.ts +16 -15
- package/dist/components/CcvGroupedBarChart.d.ts +16 -15
- package/dist/components/CcvHeatmapChart.d.ts +16 -15
- package/dist/components/CcvHistogramChart.d.ts +16 -15
- package/dist/components/CcvLineChart.d.ts +16 -15
- package/dist/components/CcvLollipopChart.d.ts +16 -16
- package/dist/components/CcvMeterChart.d.ts +16 -15
- package/dist/components/CcvPieChart.d.ts +16 -15
- package/dist/components/CcvRadarChart.d.ts +16 -15
- package/dist/components/CcvScatterChart.d.ts +16 -15
- package/dist/components/CcvSimpleBarChart.d.ts +16 -15
- package/dist/components/CcvStackedAreaChart.d.ts +16 -15
- package/dist/components/CcvStackedBarChart.d.ts +16 -15
- package/dist/components/CcvTreeChart.d.ts +16 -15
- package/dist/components/CcvTreemapChart.d.ts +16 -16
- package/dist/components/CcvWordCloudChart.d.ts +16 -15
- package/dist/components/chartFactory.d.ts +13 -12
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +4624 -4603
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 1.15.8 (2024-05-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **stacked-axis:** number labels breaking the axis
|
|
11
|
+
([#1821](https://github.com/carbon-design-system/carbon-charts/issues/1821))
|
|
12
|
+
([0aec1f1](https://github.com/carbon-design-system/carbon-charts/commit/0aec1f1f9a9b49694867ec2257da5ccff0926191))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
19
|
+
## 1.15.7 (2024-04-18)
|
|
20
|
+
|
|
21
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
22
|
+
|
|
23
|
+
# Change Log
|
|
24
|
+
|
|
25
|
+
All notable changes to this project will be documented in this file. See
|
|
26
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
27
|
+
|
|
6
28
|
## 1.15.6 (2024-04-11)
|
|
7
29
|
|
|
8
30
|
### Bug Fixes
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AlluvialChartOptions } from '@carbon/charts';
|
|
2
|
+
|
|
2
3
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
4
|
data: {
|
|
4
|
-
type: () => import(
|
|
5
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
7
8
|
options: {
|
|
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
12
13
|
chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
|
|
13
14
|
components: {
|
|
14
15
|
type: string;
|
|
15
|
-
renderType: import(
|
|
16
|
+
renderType: import('@carbon/charts').RenderTypes;
|
|
16
17
|
id: string;
|
|
17
18
|
init: () => void;
|
|
18
19
|
render: (animate?: boolean | undefined) => void;
|
|
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
20
21
|
setModel: (newObj: any) => void;
|
|
21
22
|
setServices: (newObj: any) => void;
|
|
22
23
|
setParent: (parent: any) => void;
|
|
23
|
-
getParent: () => import(
|
|
24
|
+
getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
|
|
24
25
|
getComponentContainer: (configs?: {
|
|
25
26
|
withinChartClip: boolean;
|
|
26
|
-
} | undefined) => import(
|
|
27
|
+
} | undefined) => import('d3-selection').Selection<any, any, Element, any>;
|
|
27
28
|
getOptions: () => any;
|
|
28
29
|
}[];
|
|
29
30
|
services: any;
|
|
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
42
43
|
getDataGroupNames: (groups?: any) => any;
|
|
43
44
|
getActiveDataGroupNames: (groups?: any) => any;
|
|
44
45
|
getBinConfigurations: () => {
|
|
45
|
-
bins: import(
|
|
46
|
+
bins: import('d3-array').Bin<number, number>[];
|
|
46
47
|
binsDomain: any[];
|
|
47
48
|
};
|
|
48
|
-
getBinnedStackedData: () => import(
|
|
49
|
+
getBinnedStackedData: () => import('d3').SeriesPoint<{
|
|
49
50
|
[key: string]: number;
|
|
50
51
|
}>[][];
|
|
51
52
|
getGroupedData: (groups?: any) => {
|
|
52
53
|
name: string;
|
|
53
54
|
data: any;
|
|
54
55
|
}[];
|
|
55
|
-
getStackKeys: ({ bins, groups }?: import(
|
|
56
|
-
getDataValuesGroupedByKeys: ({ bins, groups }: import(
|
|
57
|
-
getStackedData: ({ percentage, groups, divergent }: import(
|
|
56
|
+
getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
|
|
57
|
+
getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
|
|
58
|
+
getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
|
|
58
59
|
getOptions: () => any;
|
|
59
60
|
set: (newState: any, configs?: any) => void;
|
|
60
61
|
get: (property?: string | undefined) => any;
|
|
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
66
67
|
getStrokeColor: (group: any, key?: any, data?: any) => any;
|
|
67
68
|
isUserProvidedColorScaleValid: () => any;
|
|
68
69
|
getColorClassName: (configs: {
|
|
69
|
-
classNameTypes?: import(
|
|
70
|
+
classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
|
|
70
71
|
dataGroupName?: string | number | undefined;
|
|
71
72
|
originalClassName?: string | undefined;
|
|
72
73
|
value?: number | undefined;
|
|
73
74
|
}) => string;
|
|
74
75
|
getStatus: () => any;
|
|
75
76
|
getAllDataGroupsNames: () => string[];
|
|
76
|
-
getTabularDataArray: () => import(
|
|
77
|
+
getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
|
|
77
78
|
exportToCSV: () => void;
|
|
78
79
|
};
|
|
79
|
-
init: (holder: HTMLDivElement, chartConfigs: import(
|
|
80
|
-
getComponents: () => import(
|
|
80
|
+
init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
|
|
81
|
+
getComponents: () => import('@carbon/charts').Component[];
|
|
81
82
|
update: (animate?: boolean | undefined) => void;
|
|
82
83
|
destroy: () => void;
|
|
83
84
|
} | null>;
|
|
84
85
|
chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
|
|
85
86
|
}, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
86
87
|
data: {
|
|
87
|
-
type: () => import(
|
|
88
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
88
89
|
required: true;
|
|
89
90
|
};
|
|
90
91
|
options: {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AreaChartOptions } from '@carbon/charts';
|
|
2
|
+
|
|
2
3
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
4
|
data: {
|
|
4
|
-
type: () => import(
|
|
5
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
7
8
|
options: {
|
|
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
12
13
|
chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
|
|
13
14
|
components: {
|
|
14
15
|
type: string;
|
|
15
|
-
renderType: import(
|
|
16
|
+
renderType: import('@carbon/charts').RenderTypes;
|
|
16
17
|
id: string;
|
|
17
18
|
init: () => void;
|
|
18
19
|
render: (animate?: boolean | undefined) => void;
|
|
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
20
21
|
setModel: (newObj: any) => void;
|
|
21
22
|
setServices: (newObj: any) => void;
|
|
22
23
|
setParent: (parent: any) => void;
|
|
23
|
-
getParent: () => import(
|
|
24
|
+
getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
|
|
24
25
|
getComponentContainer: (configs?: {
|
|
25
26
|
withinChartClip: boolean;
|
|
26
|
-
} | undefined) => import(
|
|
27
|
+
} | undefined) => import('d3-selection').Selection<any, any, Element, any>;
|
|
27
28
|
getOptions: () => any;
|
|
28
29
|
}[];
|
|
29
30
|
services: any;
|
|
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
42
43
|
getDataGroupNames: (groups?: any) => any;
|
|
43
44
|
getActiveDataGroupNames: (groups?: any) => any;
|
|
44
45
|
getBinConfigurations: () => {
|
|
45
|
-
bins: import(
|
|
46
|
+
bins: import('d3-array').Bin<number, number>[];
|
|
46
47
|
binsDomain: any[];
|
|
47
48
|
};
|
|
48
|
-
getBinnedStackedData: () => import(
|
|
49
|
+
getBinnedStackedData: () => import('d3').SeriesPoint<{
|
|
49
50
|
[key: string]: number;
|
|
50
51
|
}>[][];
|
|
51
52
|
getGroupedData: (groups?: any) => {
|
|
52
53
|
name: string;
|
|
53
54
|
data: any;
|
|
54
55
|
}[];
|
|
55
|
-
getStackKeys: ({ bins, groups }?: import(
|
|
56
|
-
getDataValuesGroupedByKeys: ({ bins, groups }: import(
|
|
57
|
-
getStackedData: ({ percentage, groups, divergent }: import(
|
|
56
|
+
getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
|
|
57
|
+
getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
|
|
58
|
+
getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
|
|
58
59
|
getOptions: () => any;
|
|
59
60
|
set: (newState: any, configs?: any) => void;
|
|
60
61
|
get: (property?: string | undefined) => any;
|
|
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
66
67
|
getStrokeColor: (group: any, key?: any, data?: any) => any;
|
|
67
68
|
isUserProvidedColorScaleValid: () => any;
|
|
68
69
|
getColorClassName: (configs: {
|
|
69
|
-
classNameTypes?: import(
|
|
70
|
+
classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
|
|
70
71
|
dataGroupName?: string | number | undefined;
|
|
71
72
|
originalClassName?: string | undefined;
|
|
72
73
|
value?: number | undefined;
|
|
73
74
|
}) => string;
|
|
74
75
|
getStatus: () => any;
|
|
75
76
|
getAllDataGroupsNames: () => string[];
|
|
76
|
-
getTabularDataArray: () => import(
|
|
77
|
+
getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
|
|
77
78
|
exportToCSV: () => void;
|
|
78
79
|
};
|
|
79
|
-
init: (holder: HTMLDivElement, chartConfigs: import(
|
|
80
|
-
getComponents: () => import(
|
|
80
|
+
init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
|
|
81
|
+
getComponents: () => import('@carbon/charts').Component[];
|
|
81
82
|
update: (animate?: boolean | undefined) => void;
|
|
82
83
|
destroy: () => void;
|
|
83
84
|
} | null>;
|
|
84
85
|
chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
|
|
85
86
|
}, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
86
87
|
data: {
|
|
87
|
-
type: () => import(
|
|
88
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
88
89
|
required: true;
|
|
89
90
|
};
|
|
90
91
|
options: {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
2
2
|
data: {
|
|
3
|
-
type: () => import(
|
|
3
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
6
|
options: {
|
|
7
|
-
type: () => import(
|
|
7
|
+
type: () => import('@carbon/charts').AxisChartOptions;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
10
|
}, {
|
|
11
11
|
chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
|
|
12
12
|
components: {
|
|
13
13
|
type: string;
|
|
14
|
-
renderType: import(
|
|
14
|
+
renderType: import('@carbon/charts').RenderTypes;
|
|
15
15
|
id: string;
|
|
16
16
|
init: () => void;
|
|
17
17
|
render: (animate?: boolean | undefined) => void;
|
|
@@ -19,10 +19,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
19
19
|
setModel: (newObj: any) => void;
|
|
20
20
|
setServices: (newObj: any) => void;
|
|
21
21
|
setParent: (parent: any) => void;
|
|
22
|
-
getParent: () => import(
|
|
22
|
+
getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
|
|
23
23
|
getComponentContainer: (configs?: {
|
|
24
24
|
withinChartClip: boolean;
|
|
25
|
-
} | undefined) => import(
|
|
25
|
+
} | undefined) => import('d3-selection').Selection<any, any, Element, any>;
|
|
26
26
|
getOptions: () => any;
|
|
27
27
|
}[];
|
|
28
28
|
services: any;
|
|
@@ -41,19 +41,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
41
41
|
getDataGroupNames: (groups?: any) => any;
|
|
42
42
|
getActiveDataGroupNames: (groups?: any) => any;
|
|
43
43
|
getBinConfigurations: () => {
|
|
44
|
-
bins: import(
|
|
44
|
+
bins: import('d3-array').Bin<number, number>[];
|
|
45
45
|
binsDomain: any[];
|
|
46
46
|
};
|
|
47
|
-
getBinnedStackedData: () => import(
|
|
47
|
+
getBinnedStackedData: () => import('d3').SeriesPoint<{
|
|
48
48
|
[key: string]: number;
|
|
49
49
|
}>[][];
|
|
50
50
|
getGroupedData: (groups?: any) => {
|
|
51
51
|
name: string;
|
|
52
52
|
data: any;
|
|
53
53
|
}[];
|
|
54
|
-
getStackKeys: ({ bins, groups }?: import(
|
|
55
|
-
getDataValuesGroupedByKeys: ({ bins, groups }: import(
|
|
56
|
-
getStackedData: ({ percentage, groups, divergent }: import(
|
|
54
|
+
getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
|
|
55
|
+
getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
|
|
56
|
+
getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
|
|
57
57
|
getOptions: () => any;
|
|
58
58
|
set: (newState: any, configs?: any) => void;
|
|
59
59
|
get: (property?: string | undefined) => any;
|
|
@@ -65,29 +65,29 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
65
65
|
getStrokeColor: (group: any, key?: any, data?: any) => any;
|
|
66
66
|
isUserProvidedColorScaleValid: () => any;
|
|
67
67
|
getColorClassName: (configs: {
|
|
68
|
-
classNameTypes?: import(
|
|
68
|
+
classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
|
|
69
69
|
dataGroupName?: string | number | undefined;
|
|
70
70
|
originalClassName?: string | undefined;
|
|
71
71
|
value?: number | undefined;
|
|
72
72
|
}) => string;
|
|
73
73
|
getStatus: () => any;
|
|
74
74
|
getAllDataGroupsNames: () => string[];
|
|
75
|
-
getTabularDataArray: () => import(
|
|
75
|
+
getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
|
|
76
76
|
exportToCSV: () => void;
|
|
77
77
|
};
|
|
78
|
-
init: (holder: HTMLDivElement, chartConfigs: import(
|
|
79
|
-
getComponents: () => import(
|
|
78
|
+
init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
|
|
79
|
+
getComponents: () => import('@carbon/charts').Component[];
|
|
80
80
|
update: (animate?: boolean | undefined) => void;
|
|
81
81
|
destroy: () => void;
|
|
82
82
|
} | null>;
|
|
83
83
|
chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
|
|
84
84
|
}, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
85
85
|
data: {
|
|
86
|
-
type: () => import(
|
|
86
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
87
87
|
required: true;
|
|
88
88
|
};
|
|
89
89
|
options: {
|
|
90
|
-
type: () => import(
|
|
90
|
+
type: () => import('@carbon/charts').AxisChartOptions;
|
|
91
91
|
required: true;
|
|
92
92
|
};
|
|
93
93
|
}>>, {}, {}>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BubbleChartOptions } from '@carbon/charts';
|
|
2
|
+
|
|
2
3
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
4
|
data: {
|
|
4
|
-
type: () => import(
|
|
5
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
7
8
|
options: {
|
|
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
12
13
|
chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
|
|
13
14
|
components: {
|
|
14
15
|
type: string;
|
|
15
|
-
renderType: import(
|
|
16
|
+
renderType: import('@carbon/charts').RenderTypes;
|
|
16
17
|
id: string;
|
|
17
18
|
init: () => void;
|
|
18
19
|
render: (animate?: boolean | undefined) => void;
|
|
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
20
21
|
setModel: (newObj: any) => void;
|
|
21
22
|
setServices: (newObj: any) => void;
|
|
22
23
|
setParent: (parent: any) => void;
|
|
23
|
-
getParent: () => import(
|
|
24
|
+
getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
|
|
24
25
|
getComponentContainer: (configs?: {
|
|
25
26
|
withinChartClip: boolean;
|
|
26
|
-
} | undefined) => import(
|
|
27
|
+
} | undefined) => import('d3-selection').Selection<any, any, Element, any>;
|
|
27
28
|
getOptions: () => any;
|
|
28
29
|
}[];
|
|
29
30
|
services: any;
|
|
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
42
43
|
getDataGroupNames: (groups?: any) => any;
|
|
43
44
|
getActiveDataGroupNames: (groups?: any) => any;
|
|
44
45
|
getBinConfigurations: () => {
|
|
45
|
-
bins: import(
|
|
46
|
+
bins: import('d3-array').Bin<number, number>[];
|
|
46
47
|
binsDomain: any[];
|
|
47
48
|
};
|
|
48
|
-
getBinnedStackedData: () => import(
|
|
49
|
+
getBinnedStackedData: () => import('d3').SeriesPoint<{
|
|
49
50
|
[key: string]: number;
|
|
50
51
|
}>[][];
|
|
51
52
|
getGroupedData: (groups?: any) => {
|
|
52
53
|
name: string;
|
|
53
54
|
data: any;
|
|
54
55
|
}[];
|
|
55
|
-
getStackKeys: ({ bins, groups }?: import(
|
|
56
|
-
getDataValuesGroupedByKeys: ({ bins, groups }: import(
|
|
57
|
-
getStackedData: ({ percentage, groups, divergent }: import(
|
|
56
|
+
getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
|
|
57
|
+
getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
|
|
58
|
+
getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
|
|
58
59
|
getOptions: () => any;
|
|
59
60
|
set: (newState: any, configs?: any) => void;
|
|
60
61
|
get: (property?: string | undefined) => any;
|
|
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
66
67
|
getStrokeColor: (group: any, key?: any, data?: any) => any;
|
|
67
68
|
isUserProvidedColorScaleValid: () => any;
|
|
68
69
|
getColorClassName: (configs: {
|
|
69
|
-
classNameTypes?: import(
|
|
70
|
+
classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
|
|
70
71
|
dataGroupName?: string | number | undefined;
|
|
71
72
|
originalClassName?: string | undefined;
|
|
72
73
|
value?: number | undefined;
|
|
73
74
|
}) => string;
|
|
74
75
|
getStatus: () => any;
|
|
75
76
|
getAllDataGroupsNames: () => string[];
|
|
76
|
-
getTabularDataArray: () => import(
|
|
77
|
+
getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
|
|
77
78
|
exportToCSV: () => void;
|
|
78
79
|
};
|
|
79
|
-
init: (holder: HTMLDivElement, chartConfigs: import(
|
|
80
|
-
getComponents: () => import(
|
|
80
|
+
init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
|
|
81
|
+
getComponents: () => import('@carbon/charts').Component[];
|
|
81
82
|
update: (animate?: boolean | undefined) => void;
|
|
82
83
|
destroy: () => void;
|
|
83
84
|
} | null>;
|
|
84
85
|
chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
|
|
85
86
|
}, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
86
87
|
data: {
|
|
87
|
-
type: () => import(
|
|
88
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
88
89
|
required: true;
|
|
89
90
|
};
|
|
90
91
|
options: {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BulletChartOptions } from '@carbon/charts';
|
|
2
|
+
|
|
2
3
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
4
|
data: {
|
|
4
|
-
type: () => import(
|
|
5
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
7
8
|
options: {
|
|
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
12
13
|
chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
|
|
13
14
|
components: {
|
|
14
15
|
type: string;
|
|
15
|
-
renderType: import(
|
|
16
|
+
renderType: import('@carbon/charts').RenderTypes;
|
|
16
17
|
id: string;
|
|
17
18
|
init: () => void;
|
|
18
19
|
render: (animate?: boolean | undefined) => void;
|
|
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
20
21
|
setModel: (newObj: any) => void;
|
|
21
22
|
setServices: (newObj: any) => void;
|
|
22
23
|
setParent: (parent: any) => void;
|
|
23
|
-
getParent: () => import(
|
|
24
|
+
getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
|
|
24
25
|
getComponentContainer: (configs?: {
|
|
25
26
|
withinChartClip: boolean;
|
|
26
|
-
} | undefined) => import(
|
|
27
|
+
} | undefined) => import('d3-selection').Selection<any, any, Element, any>;
|
|
27
28
|
getOptions: () => any;
|
|
28
29
|
}[];
|
|
29
30
|
services: any;
|
|
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
42
43
|
getDataGroupNames: (groups?: any) => any;
|
|
43
44
|
getActiveDataGroupNames: (groups?: any) => any;
|
|
44
45
|
getBinConfigurations: () => {
|
|
45
|
-
bins: import(
|
|
46
|
+
bins: import('d3-array').Bin<number, number>[];
|
|
46
47
|
binsDomain: any[];
|
|
47
48
|
};
|
|
48
|
-
getBinnedStackedData: () => import(
|
|
49
|
+
getBinnedStackedData: () => import('d3').SeriesPoint<{
|
|
49
50
|
[key: string]: number;
|
|
50
51
|
}>[][];
|
|
51
52
|
getGroupedData: (groups?: any) => {
|
|
52
53
|
name: string;
|
|
53
54
|
data: any;
|
|
54
55
|
}[];
|
|
55
|
-
getStackKeys: ({ bins, groups }?: import(
|
|
56
|
-
getDataValuesGroupedByKeys: ({ bins, groups }: import(
|
|
57
|
-
getStackedData: ({ percentage, groups, divergent }: import(
|
|
56
|
+
getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
|
|
57
|
+
getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
|
|
58
|
+
getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
|
|
58
59
|
getOptions: () => any;
|
|
59
60
|
set: (newState: any, configs?: any) => void;
|
|
60
61
|
get: (property?: string | undefined) => any;
|
|
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
66
67
|
getStrokeColor: (group: any, key?: any, data?: any) => any;
|
|
67
68
|
isUserProvidedColorScaleValid: () => any;
|
|
68
69
|
getColorClassName: (configs: {
|
|
69
|
-
classNameTypes?: import(
|
|
70
|
+
classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
|
|
70
71
|
dataGroupName?: string | number | undefined;
|
|
71
72
|
originalClassName?: string | undefined;
|
|
72
73
|
value?: number | undefined;
|
|
73
74
|
}) => string;
|
|
74
75
|
getStatus: () => any;
|
|
75
76
|
getAllDataGroupsNames: () => string[];
|
|
76
|
-
getTabularDataArray: () => import(
|
|
77
|
+
getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
|
|
77
78
|
exportToCSV: () => void;
|
|
78
79
|
};
|
|
79
|
-
init: (holder: HTMLDivElement, chartConfigs: import(
|
|
80
|
-
getComponents: () => import(
|
|
80
|
+
init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
|
|
81
|
+
getComponents: () => import('@carbon/charts').Component[];
|
|
81
82
|
update: (animate?: boolean | undefined) => void;
|
|
82
83
|
destroy: () => void;
|
|
83
84
|
} | null>;
|
|
84
85
|
chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
|
|
85
86
|
}, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
86
87
|
data: {
|
|
87
|
-
type: () => import(
|
|
88
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
88
89
|
required: true;
|
|
89
90
|
};
|
|
90
91
|
options: {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChoroplethChartOptions } from '@carbon/charts';
|
|
2
|
+
|
|
2
3
|
declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
4
|
data: {
|
|
4
|
-
type: () => import(
|
|
5
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
7
8
|
options: {
|
|
@@ -12,7 +13,7 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
12
13
|
chart: import('../../vue/dist/vue.esm-bundler.js').Ref<{
|
|
13
14
|
components: {
|
|
14
15
|
type: string;
|
|
15
|
-
renderType: import(
|
|
16
|
+
renderType: import('@carbon/charts').RenderTypes;
|
|
16
17
|
id: string;
|
|
17
18
|
init: () => void;
|
|
18
19
|
render: (animate?: boolean | undefined) => void;
|
|
@@ -20,10 +21,10 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
20
21
|
setModel: (newObj: any) => void;
|
|
21
22
|
setServices: (newObj: any) => void;
|
|
22
23
|
setParent: (parent: any) => void;
|
|
23
|
-
getParent: () => import(
|
|
24
|
+
getParent: () => import('d3-selection').Selection<HTMLDivElement | SVGGraphicsElement, any, HTMLElement, any>;
|
|
24
25
|
getComponentContainer: (configs?: {
|
|
25
26
|
withinChartClip: boolean;
|
|
26
|
-
} | undefined) => import(
|
|
27
|
+
} | undefined) => import('d3-selection').Selection<any, any, Element, any>;
|
|
27
28
|
getOptions: () => any;
|
|
28
29
|
}[];
|
|
29
30
|
services: any;
|
|
@@ -42,19 +43,19 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
42
43
|
getDataGroupNames: (groups?: any) => any;
|
|
43
44
|
getActiveDataGroupNames: (groups?: any) => any;
|
|
44
45
|
getBinConfigurations: () => {
|
|
45
|
-
bins: import(
|
|
46
|
+
bins: import('d3-array').Bin<number, number>[];
|
|
46
47
|
binsDomain: any[];
|
|
47
48
|
};
|
|
48
|
-
getBinnedStackedData: () => import(
|
|
49
|
+
getBinnedStackedData: () => import('d3').SeriesPoint<{
|
|
49
50
|
[key: string]: number;
|
|
50
51
|
}>[][];
|
|
51
52
|
getGroupedData: (groups?: any) => {
|
|
52
53
|
name: string;
|
|
53
54
|
data: any;
|
|
54
55
|
}[];
|
|
55
|
-
getStackKeys: ({ bins, groups }?: import(
|
|
56
|
-
getDataValuesGroupedByKeys: ({ bins, groups }: import(
|
|
57
|
-
getStackedData: ({ percentage, groups, divergent }: import(
|
|
56
|
+
getStackKeys: ({ bins, groups }?: import('@carbon/charts').StackKeysParams | undefined) => any;
|
|
57
|
+
getDataValuesGroupedByKeys: ({ bins, groups }: import('@carbon/charts').StackKeysParams) => any;
|
|
58
|
+
getStackedData: ({ percentage, groups, divergent }: import('@carbon/charts').StackKeysParams) => any[][];
|
|
58
59
|
getOptions: () => any;
|
|
59
60
|
set: (newState: any, configs?: any) => void;
|
|
60
61
|
get: (property?: string | undefined) => any;
|
|
@@ -66,25 +67,25 @@ declare const _default: import('../../vue/dist/vue.esm-bundler.js').DefineCompon
|
|
|
66
67
|
getStrokeColor: (group: any, key?: any, data?: any) => any;
|
|
67
68
|
isUserProvidedColorScaleValid: () => any;
|
|
68
69
|
getColorClassName: (configs: {
|
|
69
|
-
classNameTypes?: import(
|
|
70
|
+
classNameTypes?: import('@carbon/charts').ColorClassNameTypes[] | undefined;
|
|
70
71
|
dataGroupName?: string | number | undefined;
|
|
71
72
|
originalClassName?: string | undefined;
|
|
72
73
|
value?: number | undefined;
|
|
73
74
|
}) => string;
|
|
74
75
|
getStatus: () => any;
|
|
75
76
|
getAllDataGroupsNames: () => string[];
|
|
76
|
-
getTabularDataArray: () => import(
|
|
77
|
+
getTabularDataArray: () => import('@carbon/charts').ChartTabularData;
|
|
77
78
|
exportToCSV: () => void;
|
|
78
79
|
};
|
|
79
|
-
init: (holder: HTMLDivElement, chartConfigs: import(
|
|
80
|
-
getComponents: () => import(
|
|
80
|
+
init: (holder: HTMLDivElement, chartConfigs: import('@carbon/charts').ChartConfig<import('@carbon/charts').BaseChartOptions>) => void;
|
|
81
|
+
getComponents: () => import('@carbon/charts').Component[];
|
|
81
82
|
update: (animate?: boolean | undefined) => void;
|
|
82
83
|
destroy: () => void;
|
|
83
84
|
} | null>;
|
|
84
85
|
chartDiv: import('../../vue/dist/vue.esm-bundler.js').Ref<HTMLDivElement | null>;
|
|
85
86
|
}, unknown, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
86
87
|
data: {
|
|
87
|
-
type: () => import(
|
|
88
|
+
type: () => import('@carbon/charts').ChartTabularData;
|
|
88
89
|
required: true;
|
|
89
90
|
};
|
|
90
91
|
options: {
|