stz-chart-maker 1.3.0 → 1.3.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 +9 -9
- package/dist/index.js +1934 -1917
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -661,7 +661,7 @@ declare abstract class CartesianChartWrapper<TType extends CartesianChartType> e
|
|
|
661
661
|
id: string;
|
|
662
662
|
afterDraw(chart: any, args: any, options: any): void;
|
|
663
663
|
afterInit(chart: any, args: any, options: any): void;
|
|
664
|
-
|
|
664
|
+
beforeUpdate(chart: any, args: any, options: any): void;
|
|
665
665
|
_handleGroupVisibility(chart: any, datasets: any[]): void;
|
|
666
666
|
_handleLegendClick(e: any, legendItem: any, legend: any, toggleBehavior: string): void;
|
|
667
667
|
_setupLegendTooltip(chart: any): void;
|
|
@@ -1445,7 +1445,7 @@ declare abstract class ArcChartWrapper<TType extends ArcChartType> extends Chart
|
|
|
1445
1445
|
id: string;
|
|
1446
1446
|
afterDraw(chart: any, args: any, options: any): void;
|
|
1447
1447
|
afterInit(chart: any, args: any, options: any): void;
|
|
1448
|
-
|
|
1448
|
+
beforeUpdate(chart: any, args: any, options: any): void;
|
|
1449
1449
|
_handleGroupVisibility(chart: any, datasets: any[]): void;
|
|
1450
1450
|
_handleLegendClick(e: any, legendItem: any, legend: any, toggleBehavior: string): void;
|
|
1451
1451
|
_setupLegendTooltip(chart: any): void;
|
|
@@ -1740,7 +1740,7 @@ declare const customLegend: {
|
|
|
1740
1740
|
* - `_toggleBehavior: 'normal' | 'radio' | 'disabled'` - 클릭 동작 방식
|
|
1741
1741
|
* - `_tooltip: string | function` - 범례 항목 마우스 오버 시 툴팁 표시
|
|
1742
1742
|
*
|
|
1743
|
-
* @since 1.
|
|
1743
|
+
* @since 1.3.0
|
|
1744
1744
|
* @category plugin
|
|
1745
1745
|
* @example
|
|
1746
1746
|
* ```typescript
|
|
@@ -1799,13 +1799,13 @@ declare const customLegend: {
|
|
|
1799
1799
|
* - 모든 차트 타입에서 사용 가능합니다
|
|
1800
1800
|
* - 메모리 누수 방지를 위해 차트 파괴 시 자동으로 정리됩니다
|
|
1801
1801
|
*
|
|
1802
|
-
* @beta
|
|
1802
|
+
* @beta (aux 정상동작 , _group : 에러 , groupLabel : 정상 , _tooltip : 에러 , _toggleBehavior : 정상 , _visible : 정상 , _legendOrder : 확인중)
|
|
1803
1803
|
*/
|
|
1804
1804
|
declare const chartMountPlugin: {
|
|
1805
1805
|
id: string;
|
|
1806
1806
|
afterDraw(chart: any, args: any, options: any): void;
|
|
1807
1807
|
afterInit(chart: any, args: any, options: any): void;
|
|
1808
|
-
|
|
1808
|
+
beforeUpdate(chart: any, args: any, options: any): void;
|
|
1809
1809
|
_handleGroupVisibility(chart: any, datasets: any[]): void;
|
|
1810
1810
|
_handleLegendClick(e: any, legendItem: any, legend: any, toggleBehavior: string): void;
|
|
1811
1811
|
_setupLegendTooltip(chart: any): void;
|
|
@@ -1941,8 +1941,8 @@ declare enum ChartTypes {
|
|
|
1941
1941
|
}
|
|
1942
1942
|
|
|
1943
1943
|
declare const ChartToolBox: {
|
|
1944
|
-
setErrorLog(enabled
|
|
1945
|
-
setErrorshield(enabled
|
|
1944
|
+
setErrorLog(enabled?: boolean): void;
|
|
1945
|
+
setErrorshield(enabled?: boolean): void;
|
|
1946
1946
|
};
|
|
1947
1947
|
declare const T$: {
|
|
1948
1948
|
readonly create: typeof ChartWrapper.create;
|
|
@@ -1957,8 +1957,8 @@ declare const T$: {
|
|
|
1957
1957
|
readonly defaultTypes: typeof Types;
|
|
1958
1958
|
readonly defaultsOptions: typeof LocalDefaults;
|
|
1959
1959
|
readonly toolBox: {
|
|
1960
|
-
setErrorLog(enabled
|
|
1961
|
-
setErrorshield(enabled
|
|
1960
|
+
setErrorLog(enabled?: boolean): void;
|
|
1961
|
+
setErrorshield(enabled?: boolean): void;
|
|
1962
1962
|
};
|
|
1963
1963
|
};
|
|
1964
1964
|
|