realchart 1.3.0 → 1.3.1
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 +12 -0
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +3 -3
- 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
|
@@ -1591,6 +1591,7 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1591
1591
|
visibleInLegend?: boolean;
|
|
1592
1592
|
/**
|
|
1593
1593
|
* true로 지정하면 시리즈 내비게이터에 표시한다.
|
|
1594
|
+
* 해당 속성은 bar, line 시리즈 에서만 적용된다.
|
|
1594
1595
|
*/
|
|
1595
1596
|
visibleInNavigator?: boolean;
|
|
1596
1597
|
/**
|
|
@@ -1615,6 +1616,12 @@ interface SeriesOptions extends ChartItemOptions {
|
|
|
1615
1616
|
* 데이터포인트의 동적 스타일 콜백.<br/>
|
|
1616
1617
|
*/
|
|
1617
1618
|
pointStyleCallback?: PointStyleCallback;
|
|
1619
|
+
/**
|
|
1620
|
+
* 시리즈의 hover, focus, tooltip 상호작용 여부를 지정한다.
|
|
1621
|
+
*
|
|
1622
|
+
* @default true
|
|
1623
|
+
*/
|
|
1624
|
+
interactive?: boolean;
|
|
1618
1625
|
/**
|
|
1619
1626
|
* 데이터포인트들이 새로 로드된 후 호출된다.<br/>
|
|
1620
1627
|
*/
|
|
@@ -3744,6 +3751,7 @@ declare const WordCloudSeriesType = "wordcloud";
|
|
|
3744
3751
|
* // TODO #fiddle series/wordcloud-series WordCloud Series
|
|
3745
3752
|
* @css 'rct-wordcloud-series'
|
|
3746
3753
|
* @config chart.series[type=wordcloud]
|
|
3754
|
+
* @modules wordcloud
|
|
3747
3755
|
*/
|
|
3748
3756
|
interface WordCloudSeriesOptions extends WidgetSeriesOptions {
|
|
3749
3757
|
/**
|
|
@@ -10482,6 +10490,10 @@ declare class Chart {
|
|
|
10482
10490
|
* @param animate 애니메이션 실행 여부.
|
|
10483
10491
|
*/
|
|
10484
10492
|
removeSeries(series: string | Series, animate?: boolean): void;
|
|
10493
|
+
/**
|
|
10494
|
+
* @ignore
|
|
10495
|
+
*/
|
|
10496
|
+
draw(): void;
|
|
10485
10497
|
}
|
|
10486
10498
|
/**
|
|
10487
10499
|
* 차트 전용 데이터 모델.<br/>
|