realchart 1.4.16 → 1.4.17

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.16
3
+ * RealChart Pictogram v1.4.17
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.16
3
+ * RealChart Split v1.4.17
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.16
3
+ * RealChart Treemap v1.4.17
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.16
3
+ * RealChart Vector v1.4.17
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.16
3
+ * RealChart Wordcloud v1.4.17
4
4
  * Copyright (C) 2023-2026 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -11126,7 +11126,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
11126
11126
  * {@link baseAxis}가 지정된 경우, true로 지정하면 base 축의 범위와 동일하게
11127
11127
  * 축의 최소/최대가 결정된다.
11128
11128
  *
11129
- * @default 0
11129
+ * @default false
11130
11130
  */
11131
11131
  baseRange?: boolean;
11132
11132
  }
@@ -11519,7 +11519,7 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
11519
11519
  endValue: number;
11520
11520
  }
11521
11521
  /**
11522
- * Axis tick의 위치에 수평 혹은 수직선으로 plot 영덴을 구분 표시한다.\
11522
+ * Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.<br/>
11523
11523
  * {@link visible} 기본값이 undefined인데,
11524
11524
  * visible이 undefined나 null로 지정되면, 축 위치에 따라 visible 여부가 결정된다.
11525
11525
  */
@@ -12646,11 +12646,17 @@ interface IconedTextOptions extends ChartTextOptions {
12646
12646
  iconGap?: number;
12647
12647
  /**
12648
12648
  * 아이콘 이미지 너비.<br/>
12649
+ * null 또는 0으로 지정하면 미지정으로 처리된다.
12650
+ * {@link iconHeight}가 지정된 경우 원본 비율로 너비가 결정되고,
12651
+ * {@link iconHeight}도 미지정이면 이미지 원본 크기로 표시된다.
12649
12652
  */
12650
12653
  iconWidth?: number;
12651
12654
  /**
12652
- * 아이콘 이미지 높이<br/>
12653
- * 지정하지 않으면 16 픽셀로 설정된다.
12655
+ * 아이콘 이미지 높이.<br/>
12656
+ * 지정하지 않으면 16 픽셀로 설정된다.<br/>
12657
+ * null 또는 0으로 지정하면 미지정으로 처리된다.
12658
+ * {@link iconWidth}가 지정된 경우 원본 비율로 높이가 결정되고,
12659
+ * {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
12654
12660
  */
12655
12661
  iconHeight?: number;
12656
12662
  }
@@ -13834,6 +13840,7 @@ declare class ImageElement extends RcElement {
13834
13840
  private _bounds;
13835
13841
  private _proxy;
13836
13842
  onloadProxy: () => void;
13843
+ onerrorProxy: () => void;
13837
13844
  constructor(doc: Document, full: boolean, styleName?: string);
13838
13845
  /** image url */
13839
13846
  get url(): string;
@@ -14057,6 +14064,7 @@ declare class ChartTextElement extends GroupElement {
14057
14064
  _icon: ImageElement;
14058
14065
  private _model;
14059
14066
  private _box;
14067
+ private _failedIconUrl;
14060
14068
  constructor(doc: Document, styleName?: string);
14061
14069
  /** text */
14062
14070
  get text(): string;
@@ -14889,6 +14897,11 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
14889
14897
  showTooltip(series: Series, pv: IPointView, siblings: IPointView[], body: BodyView, p: Point): void;
14890
14898
  tooltipVisible(): boolean;
14891
14899
  hideTooltip(animate?: boolean): void;
14900
+ /**
14901
+ * 툴팁을 즉시 강제로 닫는다.
14902
+ * 드래깅 등 사용자 인터랙션 중 툴팁을 지연 없이 숨길 때 사용한다.
14903
+ */
14904
+ forceHideTooltip(): void;
14892
14905
  getSeriesView(series: ISeries): SeriesView;
14893
14906
  createAxisView(doc: Document): AxisView;
14894
14907
  legendByDom(dom: Element): LegendItem;