stz-chart-maker 1.6.0 → 1.6.1
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 +1 -1
- package/dist/index.js +2385 -2381
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2088,7 +2088,7 @@ declare class PieChartWrapper extends ArcChartWrapper<'pie'> implements PieChart
|
|
|
2088
2088
|
|
|
2089
2089
|
declare class TreemapChartWrapper<DType = Record<string, unknown>> extends ChartWrapper<'treemap', CustomTreemapChartOptions> implements TreemapChartBuilder {
|
|
2090
2090
|
private _chartId?;
|
|
2091
|
-
constructor(type: 'treemap', datasets: CustomTreemapDataset<DType>[], options?: CustomTreemapChartOptions, plugins?: Plugin$1);
|
|
2091
|
+
constructor(type: 'treemap', labels: any, datasets: CustomTreemapDataset<DType>[], options?: CustomTreemapChartOptions, plugins?: Plugin$1);
|
|
2092
2092
|
get chartId(): string;
|
|
2093
2093
|
set chartId(value: string);
|
|
2094
2094
|
protected normalize(): void;
|