realchart 1.3.1 → 1.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Gauge v1.3.1
3
+ * RealChart Gauge v1.3.2
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.1
3
+ * RealChart Gauge v1.3.2
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.1
3
+ * RealChart Heatmap v1.3.2
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.1
3
+ * RealChart Heatmap v1.3.2
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -3800,15 +3800,18 @@ interface WordCloudSeriesOptions extends WidgetSeriesOptions {
3800
3800
  textHeight?: number | 'auto';
3801
3801
  /**
3802
3802
  * 가장 작은 빈도수 단어들에 설정되는 픽셀 단위의 폰트 크기.<br/>
3803
+ * 값 범주: 8 ~ 15
3804
+ * 0 ~ 1 사이 값은 값 범주의 정규화된 값으로 처리한다.
3803
3805
  *
3804
- * @default 8
3806
+ * @default 0
3805
3807
  */
3806
3808
  minFontSize?: PercentSize;
3807
3809
  /**
3808
3810
  * 가장 큰 빈도수 단어들에 설정되는 픽셀 단위의 폰트 크기.<br/>
3809
- * 지정한 값이 '15%' ~ '50%' 사이의 크기가 되도록 조정된다.
3811
+ * 범주: '5%' ~ '15%'
3812
+ * 0 ~ 1 사이 값은 값 범주의 정규화된 값으로 처리한다.
3810
3813
  *
3811
- * @default '20%'
3814
+ * @default 1
3812
3815
  */
3813
3816
  maxFontSize?: PercentSize;
3814
3817
  /**
@@ -3819,6 +3822,8 @@ interface WordCloudSeriesOptions extends WidgetSeriesOptions {
3819
3822
  */
3820
3823
  colorByPoint?: boolean;
3821
3824
  /**
3825
+ * 단어를 구성하는 모양.<br/>
3826
+ *
3822
3827
  * @default 'rectangle'
3823
3828
  */
3824
3829
  frame?: 'circle' | 'ellipse' | 'rectangle' | 'square';
@@ -3837,6 +3842,13 @@ interface WordCloudSeriesOptions extends WidgetSeriesOptions {
3837
3842
  * 0 ~ 360 사이의 값으로 지정한다.
3838
3843
  */
3839
3844
  seed?: number;
3845
+ /**
3846
+ * @ignore
3847
+ * 배치 알고리즘<br/>
3848
+ *
3849
+ * @default 'default'
3850
+ */
3851
+ placer?: 'default' | 'spiral';
3840
3852
  }
3841
3853
  /** @enum */
3842
3854
  declare const CandlestickSeriesTypes: {
@@ -11810,6 +11822,10 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
11810
11822
  getLabelLength(length: number, value: number): number;
11811
11823
  getValue(value: any): number;
11812
11824
  getXValue(value: number): any;
11825
+ _doCalculateRange(values: number[]): {
11826
+ min: number;
11827
+ max: number;
11828
+ };
11813
11829
  private $_collectCategories;
11814
11830
  }
11815
11831