stz-chart-maker 1.6.9 → 1.6.11
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 -7
- package/dist/index.js +2602 -2522
- package/package.json +2 -2
- package/CHANGELOG.md +0 -55
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
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';
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* ═════════════════════════════════════════════════════════════
|
|
@@ -233,7 +232,7 @@ interface CustomZoomType<TType extends ChartType = ChartType> extends PluginOpti
|
|
|
233
232
|
pan?: PanOptions;
|
|
234
233
|
zoomLimits?: ZoomLimits;
|
|
235
234
|
}
|
|
236
|
-
type DeepPartialZoomType = DeepPartial
|
|
235
|
+
type DeepPartialZoomType = DeepPartial<CustomZoomType>;
|
|
237
236
|
|
|
238
237
|
interface DataLabelsContext {
|
|
239
238
|
chart: any;
|
|
@@ -2230,11 +2229,6 @@ declare class TreemapChartWrapper extends ChartWrapper<'treemap', CustomTreemapC
|
|
|
2230
2229
|
setBorderColor(borderColor: string): this;
|
|
2231
2230
|
}
|
|
2232
2231
|
|
|
2233
|
-
/**
|
|
2234
|
-
* @description Cartesian 차트에서 사용할 수 있는 플러그인들을 제공합니다.
|
|
2235
|
-
* @since 1.6.6
|
|
2236
|
-
* @category Plugins
|
|
2237
|
-
*/
|
|
2238
2232
|
/**
|
|
2239
2233
|
* @description 오늘 날짜에 수직선을 그리는 플러그인을 생성합니다.
|
|
2240
2234
|
* @param {string} color - 라인 색상 (기본값: 'rgb(26,110,255)')
|