realchart 1.4.20 → 1.4.21

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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Pictogram v1.4.20
3
+ * RealChart Pictogram v1.4.21
4
4
  * Copyright (C) 2023-2026 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/ie/split.ie.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Split v1.4.20
3
+ * RealChart Split v1.4.21
4
4
  * Copyright (C) 2023-2026 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/ie/treemap.ie.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Treemap v1.4.20
3
+ * RealChart Treemap v1.4.21
4
4
  * Copyright (C) 2023-2026 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/ie/vector.ie.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Vector v1.4.20
3
+ * RealChart Vector v1.4.21
4
4
  * Copyright (C) 2023-2026 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Wordcloud v1.4.20
3
+ * RealChart Wordcloud v1.4.21
4
4
  * Copyright (C) 2023-2026 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -1710,6 +1710,7 @@ interface SeriesOptions extends ChartItemOptions {
1710
1710
  */
1711
1711
  pointLabel?: DataPointLabelOptions | boolean;
1712
1712
  /**
1713
+ * @ignore
1713
1714
  * 포인터가 차지하는 너비가 이 값 미만이면 표시하지 않는다.
1714
1715
  * // TODO: 구현할 것!
1715
1716
  */
@@ -2189,8 +2190,6 @@ interface SeriesGroupOptions<T extends SeriesOptions = SeriesOptions> extends Ch
2189
2190
  * {@link layout}이 {@link layout 'stack'}일 때
2190
2191
  * 그룹 내 시리즈들의 합계 값을 label로 표시하는 옵션.<br/>
2191
2192
  * true로 지정하면 기본 설정으로 stack labels를 표시한다.
2192
- *
2193
- * @default undefined
2194
2193
  */
2195
2194
  stackLabel?: StackLabelOptions | boolean;
2196
2195
  }
@@ -2873,6 +2872,8 @@ interface LineSeriesOptions extends LineSeriesBaseOptions {
2873
2872
  */
2874
2873
  belowStyle?: SVGStyleOrClass;
2875
2874
  /**
2875
+ * @private
2876
+ *
2876
2877
  * {@link connectNullPoints}이 true일 때 null 포인트의 양끝 포인트를 연결하는 선에 적용되는 스타일.
2877
2878
  */
2878
2879
  nullStyle?: SVGStyleOrClass;
@@ -3098,51 +3099,6 @@ interface BoxPlotSeriesOptions extends LowRangedSeriesOptions {
3098
3099
  /**
3099
3100
  * 버블 시리즈의 각 버블 내부에 파이 차트를 표시하기 위한 설정.<br/>
3100
3101
  * {@link fields}로 지정한 데이터 필드들의 값을 비율로 계산하여 파이 조각으로 표현한다.<br/>
3101
- *
3102
- * ###### json 객체 데이터
3103
- * {@link fields}에 지정한 필드명이 데이터 객체의 속성명과 일치해야 한다.
3104
- * ```json
3105
- * {
3106
- * "type": "bubble",
3107
- * "pie": {
3108
- * "fields": ["sales", "cost", "profit"],
3109
- * "categories": ["매출", "비용", "이익"],
3110
- * "colors": ["#7B68EE", "#87CEEB", "#4169E1"]
3111
- * },
3112
- * "data": [
3113
- * { "x": 5, "y": -6, "z": 50, "sales": 30, "cost": 25, "profit": 45 },
3114
- * { "x": 11, "y": 5, "z": 80, "sales": 55, "cost": 25, "profit": 20 }
3115
- * ]
3116
- * }
3117
- * ```
3118
- *
3119
- * ###### 배열 데이터 (인덱스 기반)
3120
- * {@link fields}에 숫자 인덱스를 지정하면 배열 데이터에서 해당 위치의 값을 사용한다.
3121
- * ```json
3122
- * {
3123
- * "type": "bubble",
3124
- * "pie": { "fields": [3, 4, 5] },
3125
- * "data": [
3126
- * [5, -6, 50, 30, 25, 45],
3127
- * [11, 5, 80, 55, 25, 20]
3128
- * ]
3129
- * }
3130
- * ```
3131
- * 위 예시에서 index 0~2는 x, y, z이고, index 3~5가 파이 조각 값이 된다.
3132
- *
3133
- * ###### 파이 조각이 일부 누락된 경우
3134
- * 특정 데이터포인트에 필드 값이 없거나(undefined/null/NaN) 0이면 해당 조각은 표시되지 않는다.
3135
- * ```json
3136
- * {
3137
- * "type": "bubble",
3138
- * "pie": { "fields": ["a", "b", "c"] },
3139
- * "data": [
3140
- * { "x": 5, "y": 3, "z": 40, "a": 30, "b": 25, "c": 45 },
3141
- * { "x": 8, "y": 7, "z": 20, "a": 50, "b": 50 }
3142
- * ]
3143
- * }
3144
- * ```
3145
- * 두 번째 데이터포인트는 "c" 필드가 없으므로 "a", "b" 두 조각만 표시된다.
3146
3102
  */
3147
3103
  interface BubblePieOptions extends ChartItemOptions {
3148
3104
  /**
@@ -3211,7 +3167,7 @@ interface BubblePieOptions extends ChartItemOptions {
3211
3167
  /**
3212
3168
  * 데이터포인트 툴팁 텍스트.<br/>
3213
3169
  * {@link tooltipCallback}이 설정되고 콜백에서 undefined를 리턴하지 않으면 이 속성은 무시된다.<br/>
3214
- * 사용 가능한 템플릿 변수: ${label}, ${value}, ${percent}, ${field}
3170
+ * 사용 가능한 템플릿 변수: `${label}`, `${value}`, `${percent}`, `${field}`
3215
3171
  *
3216
3172
  * @default '${label}: ${value} (${percent}%)'
3217
3173
  */
@@ -10732,6 +10688,7 @@ interface IAxisGridRow {
10732
10688
  from: number;
10733
10689
  to: number;
10734
10690
  color: string;
10691
+ style: SVGStyleOrClass;
10735
10692
  }
10736
10693
  /**
10737
10694
  * 축 그리드 사이에 생성된 영역 표시 설정 모델.<br/>
@@ -11904,7 +11861,6 @@ interface AxisGridOptions extends AxisItemOptions {
11904
11861
  /**
11905
11862
  * 끝 값에 표시되는 그리드 선을 표시할 지 여부.
11906
11863
  *
11907
- * @default x축이면 false, y축이면 true.
11908
11864
  */
11909
11865
  lastVisible?: boolean;
11910
11866
  /**
@@ -12283,23 +12239,6 @@ interface AxisOptions extends ChartItemOptions {
12283
12239
  *
12284
12240
  */
12285
12241
  maxValue?: number;
12286
- /**
12287
- * plot 영역이나 먼저 표시되는 축 사이의 여백 크기.<br/>
12288
- *
12289
- * @default 0
12290
- */
12291
- marginNear?: number;
12292
- /**
12293
- * 차트 경계나 뒤쪽 축 사이의 여백 크기.<br/>
12294
- *
12295
- * @default 0
12296
- */
12297
- marginFar?: number;
12298
- /**
12299
- * label 등에 표시할 수 있는 단위 정보 문자열.<br/>
12300
- *
12301
- */
12302
- unit?: string;
12303
12242
  /**
12304
12243
  * 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
12305
12244
  *
@@ -14401,6 +14340,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
14401
14340
  getUnitLen(length: number, value: number): number;
14402
14341
  getLabelLength(length: number, value: number): number;
14403
14342
  protected _isLog(): boolean;
14343
+ private $_resolveFit;
14404
14344
  private $_getStartFit;
14405
14345
  private $_getEndFit;
14406
14346
  private $_calcStrict;
@@ -15420,13 +15360,16 @@ declare class TimeAxis extends ContinuousAxis<TimeAxisOptions> {
15420
15360
  protected _createTickModel(): TimeAxisTick;
15421
15361
  protected _createLabel(): TimeAxisLabel;
15422
15362
  _prepare(): void;
15363
+ protected _doBuildTicks(calcedMin: number, calcedMax: number, length: number, phase: number): IAxisTick[];
15423
15364
  collectValues(): void;
15365
+ getBaseValue(): number;
15424
15366
  getValue(value: any): number;
15425
15367
  incStep(value: number, step: any): number;
15426
15368
  date(value: number): Date;
15427
15369
  axisValueAt(length: number, pos: number): any;
15428
15370
  value2Tooltip(value: number): any;
15429
15371
  getXLabel(value: number): number | Date;
15372
+ private $_inferScale;
15430
15373
  }
15431
15374
 
15432
15375
  /**