realchart 1.4.3 → 1.4.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Gauge v1.4.3
3
+ * RealChart Gauge v1.4.4
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/gauge.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Gauge v1.4.3
3
+ * RealChart Gauge v1.4.4
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/heatmap.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Heatmap v1.4.3
3
+ * RealChart Heatmap v1.4.4
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/heatmap.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Heatmap v1.4.3
3
+ * RealChart Heatmap v1.4.4
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -3618,6 +3618,7 @@ interface FunnelSeriesOptions extends WidgetSeriesOptions {
3618
3618
  */
3619
3619
  legendByPoint?: boolean;
3620
3620
  /**
3621
+ * @ignore
3621
3622
  * 0보다 큰값으로 지정하면 원통형으로 표시한다.<br/>
3622
3623
  * 0 이하로 지정하면 무시된다.
3623
3624
  */
@@ -3976,7 +3977,10 @@ interface PieSeriesLabelOptions extends WidgetSeriesLabelOptions {
3976
3977
  */
3977
3978
  rotationMode?: PointLabelRotationMode;
3978
3979
  }
3979
- interface PieSeriesDepthOption extends ChartItemOptions {
3980
+ /**
3981
+ * pie 시리즈 깊이 설정 옵션.<br/>
3982
+ */
3983
+ interface PieSeriesDepthOptions extends ChartItemOptions {
3980
3984
  /**
3981
3985
  * @default false
3982
3986
  */
@@ -4072,7 +4076,7 @@ interface PieSeriesOptions extends RadialSeriesOptions {
4072
4076
  * {@link https://realchart.co.kr/docs/api/options/PieSeriesDepthOptions/length length}를 지정하는 것과 동일하다.<br/>
4073
4077
  * [주의] 이 값이 지정되면 {@link https://realchart.co.kr/docs/api/options/AxisTickOptions/length length} 설정은 무시된다.<br/>
4074
4078
  */
4075
- depth?: PieSeriesDepthOption | number | boolean;
4079
+ depth?: PieSeriesDepthOptions | number | boolean;
4076
4080
  }
4077
4081
  declare const ScatterSeriesType = "scatter";
4078
4082
  /**
@@ -5158,7 +5162,7 @@ interface BodyDepthOptions extends ChartItemOptions {
5158
5162
  */
5159
5163
  length?: number;
5160
5164
  /**
5161
- * 30 ~ 60도 사이로 지정할 수 있다.</br>
5165
+ * 30 ~ 60도 사이로 지정할 수 있다.<br/>
5162
5166
  *
5163
5167
  * @default 32
5164
5168
  */
@@ -14605,13 +14609,13 @@ declare class PieSeriesLabel extends WidgetSeriesLabel<PieSeriesLabelOptions> {
14605
14609
  static defaults: PieSeriesLabelOptions;
14606
14610
  getDistance(inner: boolean, rd: number, rdInner: number): number;
14607
14611
  }
14608
- declare class PieSeriesDepth extends ChartItem<PieSeriesDepthOption> {
14612
+ declare class PieSeriesDepth extends ChartItem<PieSeriesDepthOptions> {
14609
14613
  static readonly DEPTH_RATIO = 0.6;
14610
- static defaults: PieSeriesDepthOption;
14614
+ static defaults: PieSeriesDepthOptions;
14611
14615
  getLength(): number;
14612
14616
  protected _isVisible(): boolean;
14613
14617
  protected _doSetSimple(src: any): boolean;
14614
- protected _doApply(op: PieSeriesDepthOption): void;
14618
+ protected _doApply(op: PieSeriesDepthOptions): void;
14615
14619
  }
14616
14620
  /**
14617
14621
  * Pie 시리즈 모델.<br/>