stz-chart-maker 1.6.14 → 1.7.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/dist/index.d.ts +7 -1
- package/dist/index.js +2703 -2319
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChartTypeRegistry, ChartType, ChartDataset, GridLineOptions, FontSpec, Tick, PluginOptionsByType, ChartOptions, Chart, ChartEvent, ActiveElement, LegendOptions, Plugin as Plugin$1, TooltipItem } from 'chart.js';
|
|
2
2
|
import { TreemapControllerDatasetOptions } from 'chartjs-chart-treemap';
|
|
3
3
|
import { ZoomPluginOptions } from 'chartjs-plugin-zoom/types/options';
|
|
4
|
+
import { DeepPartial as DeepPartial$1 } from 'chart.js/dist/types/utils';
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* ═════════════════════════════════════════════════════════════
|
|
@@ -232,7 +233,7 @@ interface CustomZoomType<TType extends ChartType = ChartType> extends PluginOpti
|
|
|
232
233
|
pan?: PanOptions;
|
|
233
234
|
zoomLimits?: ZoomLimits;
|
|
234
235
|
}
|
|
235
|
-
type DeepPartialZoomType = DeepPartial<CustomZoomType>;
|
|
236
|
+
type DeepPartialZoomType = DeepPartial$1<CustomZoomType>;
|
|
236
237
|
|
|
237
238
|
interface DataLabelsContext {
|
|
238
239
|
chart: any;
|
|
@@ -2229,6 +2230,11 @@ declare class TreemapChartWrapper extends ChartWrapper<'treemap', CustomTreemapC
|
|
|
2229
2230
|
setBorderColor(borderColor: string): this;
|
|
2230
2231
|
}
|
|
2231
2232
|
|
|
2233
|
+
/**
|
|
2234
|
+
* @description Cartesian 차트에서 사용할 수 있는 플러그인들을 제공합니다.
|
|
2235
|
+
* @since 1.6.6
|
|
2236
|
+
* @category Plugins
|
|
2237
|
+
*/
|
|
2232
2238
|
/**
|
|
2233
2239
|
* @description 오늘 날짜에 수직선을 그리는 플러그인을 생성합니다.
|
|
2234
2240
|
* @param {string} color - 라인 색상 (기본값: 'rgb(26,110,255)')
|