stz-chart-maker 2.3.2 → 2.3.3
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/README.md +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2924 -2908
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,6 +87,9 @@ module.exports = {
|
|
|
87
87
|
| `silentMode` | `boolean` | `true` | 에러 발생 시 예외를 던지지 않고 처리 |
|
|
88
88
|
| `defaultColor` | `string[]` | 내부 기본 팔레트 | 차트 전역 기본 색상 배열 |
|
|
89
89
|
|
|
90
|
+
### 변경기록
|
|
91
|
+
[CHANGELOG.md](./CHANGELOG.md) 파일을 참조하세요.
|
|
92
|
+
|
|
90
93
|
### 주의사항
|
|
91
94
|
|
|
92
95
|
`setChartConfig()`는 첫 번째 `ChartWrapper.create(...)` 호출 전에 실행해야 합니다.
|
package/dist/index.d.ts
CHANGED
|
@@ -1043,6 +1043,7 @@ declare abstract class CartesianChart<TType extends CartesianChartType> extends
|
|
|
1043
1043
|
} | {
|
|
1044
1044
|
id: string;
|
|
1045
1045
|
_tooltips: WeakMap<WeakKey, any>;
|
|
1046
|
+
_resolveLegendDatasetIndex(legendItem: any): number | undefined;
|
|
1046
1047
|
afterInit(chart: any, args: any, options: any): void;
|
|
1047
1048
|
beforeUpdate(chart: any, args: any, options: any): void;
|
|
1048
1049
|
_handleGroupVisibility(chart: any, datasets: any[]): void;
|
|
@@ -2740,6 +2741,7 @@ declare const chartMountPlugin: {
|
|
|
2740
2741
|
declare const customDatasetPlugins: {
|
|
2741
2742
|
id: string;
|
|
2742
2743
|
_tooltips: WeakMap<WeakKey, any>;
|
|
2744
|
+
_resolveLegendDatasetIndex(legendItem: any): number | undefined;
|
|
2743
2745
|
afterInit(chart: any, args: any, options: any): void;
|
|
2744
2746
|
beforeUpdate(chart: any, args: any, options: any): void;
|
|
2745
2747
|
_handleGroupVisibility(chart: any, datasets: any[]): void;
|