stz-chart-maker 1.6.4 → 1.6.5
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/dist/index.d.ts +3 -3
- package/dist/index.js +2476 -2455
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2093,9 +2093,9 @@ declare class PieChartWrapper extends ArcChartWrapper<'pie'> implements PieChart
|
|
|
2093
2093
|
* ═════════════════════════════════════════════════════════════
|
|
2094
2094
|
*/
|
|
2095
2095
|
|
|
2096
|
-
declare class TreemapChartWrapper
|
|
2096
|
+
declare class TreemapChartWrapper extends ChartWrapper<'treemap', CustomTreemapChartOptions> implements TreemapChartBuilder {
|
|
2097
2097
|
private _chartId?;
|
|
2098
|
-
constructor(type: 'treemap', labels:
|
|
2098
|
+
constructor(type: 'treemap', labels: undefined, datasets: CustomTreemapDataset[], options?: CustomTreemapChartOptions, plugins?: Plugin$1);
|
|
2099
2099
|
get chartId(): string;
|
|
2100
2100
|
set chartId(value: string);
|
|
2101
2101
|
protected normalize(): void;
|
|
@@ -2120,7 +2120,7 @@ declare class TreemapChartWrapper<DType = Record<string, unknown>> extends Chart
|
|
|
2120
2120
|
* @since 1.0.0
|
|
2121
2121
|
* @category Data
|
|
2122
2122
|
*/
|
|
2123
|
-
setTreeData(data:
|
|
2123
|
+
setTreeData(data: Record<string, unknown>[] | number[] | Record<string, unknown>): this;
|
|
2124
2124
|
/**
|
|
2125
2125
|
* @description 색상을 결정하는 키를 설정합니다.
|
|
2126
2126
|
* @param key - 색상 키
|