realchart 1.3.13 → 1.3.14
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 +1 -16
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +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/gauge.js
CHANGED
package/gauge.mjs
CHANGED
package/heatmap.js
CHANGED
package/heatmap.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -1594,21 +1594,6 @@ declare const _Shapes: {
|
|
|
1594
1594
|
* @config
|
|
1595
1595
|
*/
|
|
1596
1596
|
readonly RECTANGLE: "rectangle";
|
|
1597
|
-
/**
|
|
1598
|
-
* 수직선
|
|
1599
|
-
* @config
|
|
1600
|
-
*/
|
|
1601
|
-
readonly VLINE: "vline";
|
|
1602
|
-
/**
|
|
1603
|
-
* 수평선
|
|
1604
|
-
* @config
|
|
1605
|
-
*/
|
|
1606
|
-
readonly HLINE: "hline";
|
|
1607
|
-
/**
|
|
1608
|
-
* 직선
|
|
1609
|
-
* @config
|
|
1610
|
-
*/
|
|
1611
|
-
readonly LINE: "line";
|
|
1612
1597
|
};
|
|
1613
1598
|
/** @dummy */
|
|
1614
1599
|
type Shape = typeof _Shapes[keyof typeof _Shapes];
|
|
@@ -13616,7 +13601,7 @@ declare class ShapeAnnotation extends Annotation<ShapeAnnotationOptions> {
|
|
|
13616
13601
|
xRange: number[];
|
|
13617
13602
|
yRange: number[];
|
|
13618
13603
|
};
|
|
13619
|
-
getShape():
|
|
13604
|
+
getShape(): ShapeAnnotationShape;
|
|
13620
13605
|
protected _doSetSimple(src: any): boolean;
|
|
13621
13606
|
}
|
|
13622
13607
|
|