realchart 1.3.6 → 1.3.7

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.3.6
3
+ * RealChart Gauge v1.3.7
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.3.6
3
+ * RealChart Gauge v1.3.7
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.3.6
3
+ * RealChart Heatmap v1.3.7
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.3.6
3
+ * RealChart Heatmap v1.3.7
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -243,6 +243,10 @@ declare const _VerticalAlign: {
243
243
  readonly BOTTOM: "bottom";
244
244
  };
245
245
  type VerticalAlign = typeof _VerticalAlign[keyof typeof _VerticalAlign];
246
+ /**
247
+ * SVG 스타일 속성.<br/>
248
+ * {@page https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute SVG 속성}을 참조한다.<br/>
249
+ */
246
250
  interface SVGStyles {
247
251
  /**
248
252
  * SVG에 적용되는 css {@page https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill fill} 스타일 속성.<br/>
@@ -680,7 +684,7 @@ interface AnnotationOptions extends ChartItemOptions {
680
684
  name?: string;
681
685
  /**
682
686
  * 어노테이션 배치 기준이 되는 차트 구성 요소.<br/>
683
- * 현재, 같은 영역(body 혹은 chart)에 포함된 {@page config.base.gauge 게이지} 다른 어노테이션의 {@page name 이름}을 지정할 수 있다.
687
+ * 현재, 같은 영역(body 혹은 chart)에 포함된 다른 어노테이션이나 {@page config.base.gauge 게이지} {@page name 이름}을 지정할 수 있다.
684
688
  */
685
689
  anchor?: string;
686
690
  /**
@@ -4910,6 +4914,8 @@ declare enum TextOverflow {
4910
4914
  ELLIPSIS = "ellipsis"
4911
4915
  }
4912
4916
  /**
4917
+ * @private
4918
+ *
4913
4919
  * Background, padding 등을 이용하려면 HtmlTextElement를 사용한다.
4914
4920
  *
4915
4921
  * // TODO: wrap
@@ -10002,6 +10008,9 @@ declare class Subtitle extends Title<SubtitleOptions> {
10002
10008
  static defaults: SubtitleOptions;
10003
10009
  }
10004
10010
 
10011
+ /**
10012
+ * @internal
10013
+ */
10005
10014
  interface ISplit extends ChartItem<SplitOptions> {
10006
10015
  getAnnotation(name: string): Annotation;
10007
10016
  prepareRender(xAxes: AxisCollection, yAxes: AxisCollection): void;