realchart 1.0.1 → 1.0.2

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/dist/index.d.ts CHANGED
@@ -1773,8 +1773,13 @@ declare abstract class AxisGrid extends AxisItem {
1773
1773
  isVisible(polar: boolean): boolean;
1774
1774
  abstract getPoints(length: number): number[];
1775
1775
  }
1776
+ declare enum GuideLabelPosition {
1777
+ INSIDE = "inside",
1778
+ OUTSIDE = "outside"
1779
+ }
1776
1780
  declare class AxisGuideLabel extends IconedText {
1777
1781
  constructor(chart: IChart);
1782
+ position: GuideLabelPosition;
1778
1783
  align: Align;
1779
1784
  verticalAlign: VerticalAlign;
1780
1785
  offsetX: number;