realchart 1.4.15 → 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.
- package/gauge.js +1 -1
- package/gauge.mjs +1 -1
- package/heatmap.js +1 -1
- package/heatmap.mjs +1 -1
- package/ie/gauge.ie.js +1 -1
- package/ie/heatmap.ie.js +1 -1
- package/ie/index.ie.js +2 -2
- package/ie/pictogram.ie.js +1 -1
- package/ie/split.ie.js +1 -1
- package/ie/treemap.ie.js +1 -1
- package/ie/vector.ie.js +1 -1
- package/ie/wordcloud.ie.js +1 -1
- package/index.d.ts +23 -8
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +1 -1
- package/pictogram.mjs +1 -1
- package/split.js +1 -1
- package/split.mjs +1 -1
- package/treemap.js +1 -1
- package/treemap.mjs +1 -1
- package/vector.js +1 -1
- package/vector.mjs +1 -1
- package/wordcloud.js +1 -1
- package/wordcloud.mjs +1 -1
package/ie/pictogram.ie.js
CHANGED
package/ie/split.ie.js
CHANGED
package/ie/treemap.ie.js
CHANGED
package/ie/vector.ie.js
CHANGED
package/ie/wordcloud.ie.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -1328,7 +1328,7 @@ interface DataPointLabelOptions extends IconedTextOptions {
|
|
|
1328
1328
|
* 계산되는 기본 text 대신, data point label로 표시될 text 리턴.<br/>
|
|
1329
1329
|
* undefined나 null을 리턴하면 {@link textField} 등을 사용한 기존에 표시될 텍스트를 사용한다.
|
|
1330
1330
|
* 빈 문자열 등 정상적인 문자열을 리턴하면 그 문자열대로 표시된다.
|
|
1331
|
-
* {@link prefix}나 포맷 속성 등은 적용되지 않는다.
|
|
1331
|
+
* {@link prefix}나 {@link suffix}, 포맷 속성 등은 적용되지 않는다.
|
|
1332
1332
|
*/
|
|
1333
1333
|
textCallback?: (args: DataPointCallbackArgs) => string;
|
|
1334
1334
|
/**
|
|
@@ -3734,7 +3734,7 @@ interface PieSeriesLabelOptions extends WidgetSeriesLabelOptions {
|
|
|
3734
3734
|
*/
|
|
3735
3735
|
radius?: number;
|
|
3736
3736
|
/**
|
|
3737
|
-
* {@link
|
|
3737
|
+
* {@link position}이 'inside'이고, {@link autoRotation}이 true 일때,
|
|
3738
3738
|
* label의 회전 방식을 지정한다.
|
|
3739
3739
|
*
|
|
3740
3740
|
* @default 'arc'
|
|
@@ -10402,6 +10402,7 @@ declare abstract class AxisGrid<OP extends AxisGridOptions = AxisGridOptions> ex
|
|
|
10402
10402
|
*/
|
|
10403
10403
|
declare class AxisGuideLabel extends IconedText<AxisGuideLabelOptions> {
|
|
10404
10404
|
static defaults: AxisGuideLabelOptions;
|
|
10405
|
+
getText(): string;
|
|
10405
10406
|
getDefaultIconPos(): IconPosition;
|
|
10406
10407
|
}
|
|
10407
10408
|
/**
|
|
@@ -10502,7 +10503,6 @@ declare abstract class AxisLabel<OP extends AxisLabelOptions = AxisLabelOptions>
|
|
|
10502
10503
|
getDefaultIconPos(): IconPosition;
|
|
10503
10504
|
protected _doApply(op: OP): void;
|
|
10504
10505
|
protected _doPrepareRender(chart: IChart): void;
|
|
10505
|
-
protected _getText(text: string, value: any, useSymbols: boolean, forceSymbols: boolean): string;
|
|
10506
10506
|
}
|
|
10507
10507
|
interface IAxisTick {
|
|
10508
10508
|
index: number;
|
|
@@ -11126,7 +11126,7 @@ interface ContinuousAxisTickOptions extends AxisTickOptions {
|
|
|
11126
11126
|
* {@link baseAxis}가 지정된 경우, true로 지정하면 base 축의 범위와 동일하게
|
|
11127
11127
|
* 축의 최소/최대가 결정된다.
|
|
11128
11128
|
*
|
|
11129
|
-
* @default
|
|
11129
|
+
* @default false
|
|
11130
11130
|
*/
|
|
11131
11131
|
baseRange?: boolean;
|
|
11132
11132
|
}
|
|
@@ -11354,7 +11354,8 @@ interface AxisLabelOptions extends IconedTextOptions {
|
|
|
11354
11354
|
* undefined나 null을 리턴하면 {@link text} 속성 등에 설정된 값으로 표시하거나,
|
|
11355
11355
|
* 값에 따라 자동 생성되는 텍스트를 사용한다.
|
|
11356
11356
|
* 빈 문자열 등 정상적인 문자열을 리턴하면 그 문자열대로 표시된다.
|
|
11357
|
-
* {@link prefix}나 포맷 속성 등은 적용되지 않는다.
|
|
11357
|
+
* {@link prefix}나 {@link suffix}, 포맷 속성 등은 적용되지 않는다.
|
|
11358
|
+
* {@link firstText}, {@link lastText} 등 다른 텍스트 설정보다 우선 적용된다.
|
|
11358
11359
|
*
|
|
11359
11360
|
*/
|
|
11360
11361
|
textCallback?: (args: AxisLabelArgs) => string;
|
|
@@ -11518,7 +11519,7 @@ interface AxisRangeGuideOptions extends AxisGuideOptions {
|
|
|
11518
11519
|
endValue: number;
|
|
11519
11520
|
}
|
|
11520
11521
|
/**
|
|
11521
|
-
* Axis tick의 위치에 수평 혹은 수직선으로 plot
|
|
11522
|
+
* Axis tick의 위치에 수평 혹은 수직선으로 plot 영역을 구분 표시한다.<br/>
|
|
11522
11523
|
* {@link visible} 기본값이 undefined인데,
|
|
11523
11524
|
* visible이 undefined나 null로 지정되면, 축 위치에 따라 visible 여부가 결정된다.
|
|
11524
11525
|
*/
|
|
@@ -12645,11 +12646,17 @@ interface IconedTextOptions extends ChartTextOptions {
|
|
|
12645
12646
|
iconGap?: number;
|
|
12646
12647
|
/**
|
|
12647
12648
|
* 아이콘 이미지 너비.<br/>
|
|
12649
|
+
* null 또는 0으로 지정하면 미지정으로 처리된다.
|
|
12650
|
+
* {@link iconHeight}가 지정된 경우 원본 비율로 너비가 결정되고,
|
|
12651
|
+
* {@link iconHeight}도 미지정이면 이미지 원본 크기로 표시된다.
|
|
12648
12652
|
*/
|
|
12649
12653
|
iconWidth?: number;
|
|
12650
12654
|
/**
|
|
12651
|
-
* 아이콘 이미지
|
|
12652
|
-
* 지정하지 않으면 16 픽셀로
|
|
12655
|
+
* 아이콘 이미지 높이.<br/>
|
|
12656
|
+
* 지정하지 않으면 16 픽셀로 설정된다.<br/>
|
|
12657
|
+
* null 또는 0으로 지정하면 미지정으로 처리된다.
|
|
12658
|
+
* {@link iconWidth}가 지정된 경우 원본 비율로 높이가 결정되고,
|
|
12659
|
+
* {@link iconWidth}도 미지정이면 이미지 원본 크기로 표시된다.
|
|
12653
12660
|
*/
|
|
12654
12661
|
iconHeight?: number;
|
|
12655
12662
|
}
|
|
@@ -13833,6 +13840,7 @@ declare class ImageElement extends RcElement {
|
|
|
13833
13840
|
private _bounds;
|
|
13834
13841
|
private _proxy;
|
|
13835
13842
|
onloadProxy: () => void;
|
|
13843
|
+
onerrorProxy: () => void;
|
|
13836
13844
|
constructor(doc: Document, full: boolean, styleName?: string);
|
|
13837
13845
|
/** image url */
|
|
13838
13846
|
get url(): string;
|
|
@@ -14056,6 +14064,7 @@ declare class ChartTextElement extends GroupElement {
|
|
|
14056
14064
|
_icon: ImageElement;
|
|
14057
14065
|
private _model;
|
|
14058
14066
|
private _box;
|
|
14067
|
+
private _failedIconUrl;
|
|
14059
14068
|
constructor(doc: Document, styleName?: string);
|
|
14060
14069
|
/** text */
|
|
14061
14070
|
get text(): string;
|
|
@@ -14644,6 +14653,7 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
14644
14653
|
protected _renderBackground(elt: PathElement, width: number, height: number): void;
|
|
14645
14654
|
protected _setImage(model: BackgroundImage, img: ImageElement, width: number, height: number): boolean;
|
|
14646
14655
|
protected _doLayout(): void;
|
|
14656
|
+
protected _layoutEmptyView(model: Body, w: number, h: number): void;
|
|
14647
14657
|
private $_isEmptyVisible;
|
|
14648
14658
|
private $_createGaugeView;
|
|
14649
14659
|
private $_prepareGrids;
|
|
@@ -14887,6 +14897,11 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
14887
14897
|
showTooltip(series: Series, pv: IPointView, siblings: IPointView[], body: BodyView, p: Point): void;
|
|
14888
14898
|
tooltipVisible(): boolean;
|
|
14889
14899
|
hideTooltip(animate?: boolean): void;
|
|
14900
|
+
/**
|
|
14901
|
+
* 툴팁을 즉시 강제로 닫는다.
|
|
14902
|
+
* 드래깅 등 사용자 인터랙션 중 툴팁을 지연 없이 숨길 때 사용한다.
|
|
14903
|
+
*/
|
|
14904
|
+
forceHideTooltip(): void;
|
|
14890
14905
|
getSeriesView(series: ISeries): SeriesView;
|
|
14891
14906
|
createAxisView(doc: Document): AxisView;
|
|
14892
14907
|
legendByDom(dom: Element): LegendItem;
|