realchart 1.4.15 → 1.4.16
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 +6 -4
- 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;
|
|
@@ -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;
|
|
@@ -14644,6 +14645,7 @@ declare class BodyView extends ChartElement<Body> implements IAnnotationAnchorOw
|
|
|
14644
14645
|
protected _renderBackground(elt: PathElement, width: number, height: number): void;
|
|
14645
14646
|
protected _setImage(model: BackgroundImage, img: ImageElement, width: number, height: number): boolean;
|
|
14646
14647
|
protected _doLayout(): void;
|
|
14648
|
+
protected _layoutEmptyView(model: Body, w: number, h: number): void;
|
|
14647
14649
|
private $_isEmptyVisible;
|
|
14648
14650
|
private $_createGaugeView;
|
|
14649
14651
|
private $_prepareGrids;
|