realchart 1.4.1 → 1.4.2
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/gauge.js +1 -1
- package/gauge.mjs +1 -1
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/index.d.ts +2 -3
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +1 -1
- package/wordcloud.mjs +1 -1
package/gauge.js
CHANGED
package/gauge.mjs
CHANGED
package/heatmap.js
CHANGED
package/heatmap.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -6180,7 +6180,8 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
6180
6180
|
* 여러 속성들을 한꺼번에 변경할 때는 {@link updateOptions}를 사용한다.
|
|
6181
6181
|
* 기본적으로 이전 값과 다른 경우에만 적용된다.
|
|
6182
6182
|
* 특히, 속성값이 객체인 경우 객체 속성만 바뀐 경우 적용되지 않는다.
|
|
6183
|
-
* 바꾸고 싶다면 force 매개변수를 true로 지정해서
|
|
6183
|
+
* 바꾸고 싶다면 force 매개변수를 true로 지정해서 호출한다.<br/>
|
|
6184
|
+
* 또, prop 매개변수가 하위 모델 이름인 경우 하위 모델의 {@link updateOptions}를 호출한 것과 동일하다.
|
|
6184
6185
|
*
|
|
6185
6186
|
* @param render true로 지정하면 설정 후 차트를 다시 그린다.
|
|
6186
6187
|
* @param force 지정한 값이 이전 값과 동일한 경우에도 적용한다.
|
|
@@ -6241,8 +6242,6 @@ declare class ChartItem<OP extends ChartItemOptions = ChartItemOptions> extends
|
|
|
6241
6242
|
/** @private */
|
|
6242
6243
|
protected _doApply(op: OP): void;
|
|
6243
6244
|
/** @private */
|
|
6244
|
-
protected _doUpdate(source: any): void;
|
|
6245
|
-
/** @private */
|
|
6246
6245
|
protected _doPrepareRender(chart: IChart): void;
|
|
6247
6246
|
}
|
|
6248
6247
|
declare abstract class ChartItemCollection<T extends ChartItem> {
|