realchart 1.4.5 → 1.4.6
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/index.d.ts +7 -2
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/pictogram.js +2 -2
- package/pictogram.mjs +2 -2
- package/realchart-style.css +0 -35
- 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/gauge.js
CHANGED
package/gauge.mjs
CHANGED
package/heatmap.js
CHANGED
package/heatmap.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -4743,11 +4743,12 @@ declare const _PictorialBarMode: {
|
|
|
4743
4743
|
type PictorialBarMode = typeof _PictorialBarMode[keyof typeof _PictorialBarMode];
|
|
4744
4744
|
declare const PictorialBarSeriesType = "pictorialbar";
|
|
4745
4745
|
/**
|
|
4746
|
-
* @private
|
|
4747
|
-
*
|
|
4748
4746
|
* pictorial bar 시리즈.<br/>
|
|
4749
4747
|
* {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictorialbar'이다.<br/>
|
|
4750
4748
|
* 데이터포인트 bar 위에 svg나 이미지로 데이터포인트와 관련된 그림(figure)을 표시한다.
|
|
4749
|
+
*
|
|
4750
|
+
*
|
|
4751
|
+
* @modules pictogram
|
|
4751
4752
|
*/
|
|
4752
4753
|
interface PictorialBarSeriesOptions extends BarSeriesBaseOptions {
|
|
4753
4754
|
/** @dummy */
|
|
@@ -4818,6 +4819,7 @@ interface PictorialBarSeriesOptions extends BarSeriesBaseOptions {
|
|
|
4818
4819
|
* Pictorial 시리즈의 point label 옵션.<br/>
|
|
4819
4820
|
* position이 'default'이면 'inside'로 표시된다.
|
|
4820
4821
|
* 라벨들이 겹치면 값이 적은 것들 순서대로 감춘다.
|
|
4822
|
+
*
|
|
4821
4823
|
*/
|
|
4822
4824
|
interface PictorialSeriesLabelOptions extends WidgetSeriesLabelOptions {
|
|
4823
4825
|
/**
|
|
@@ -4830,6 +4832,9 @@ declare const PictorialSeriesType = "pictorial";
|
|
|
4830
4832
|
* pictorial 시리즈.<br/>
|
|
4831
4833
|
* {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 'pictorial'이다.<br/>
|
|
4832
4834
|
* SVG 이미지 하나를 값에 따라 수평 또는 수직 방향의 여러 영역으로 분할해서 표시한다.
|
|
4835
|
+
*
|
|
4836
|
+
*
|
|
4837
|
+
* @modules pictogram
|
|
4833
4838
|
*/
|
|
4834
4839
|
interface PictorialSeriesOptions extends WidgetSeriesOptions {
|
|
4835
4840
|
/** @dummy */
|