realmap 1.0.0 → 1.0.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/dist/index.d.ts +91 -39
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,8 @@ interface SVGStyles {
|
|
|
27
27
|
padding?: string;
|
|
28
28
|
}
|
|
29
29
|
type SVGStyleOrClass = SVGStyles | string;
|
|
30
|
+
interface CSSStyles extends Partial<CSSStyleDeclaration> {
|
|
31
|
+
}
|
|
30
32
|
interface ISides {
|
|
31
33
|
left: number;
|
|
32
34
|
right: number;
|
|
@@ -83,6 +85,14 @@ interface IPaddings {
|
|
|
83
85
|
t: number;
|
|
84
86
|
b: number;
|
|
85
87
|
}
|
|
88
|
+
declare const _ChartItemLocation: {
|
|
89
|
+
readonly BOTTOM: "bottom";
|
|
90
|
+
readonly TOP: "top";
|
|
91
|
+
readonly RIGHT: "right";
|
|
92
|
+
readonly LEFT: "left";
|
|
93
|
+
readonly BODY: "body";
|
|
94
|
+
};
|
|
95
|
+
type ChartItemLocation = typeof _ChartItemLocation[keyof typeof _ChartItemLocation];
|
|
86
96
|
interface ConfigObject {
|
|
87
97
|
[key: string]: any;
|
|
88
98
|
}
|
|
@@ -397,6 +407,49 @@ interface IRect {
|
|
|
397
407
|
declare const createRect: (x: number, y: number, width: number, height: number) => IRect;
|
|
398
408
|
declare function rectToSize(r: IRect): ISize;
|
|
399
409
|
declare function isEmptyRect(r: IRect): boolean;
|
|
410
|
+
declare class Rectangle {
|
|
411
|
+
x: number;
|
|
412
|
+
y: number;
|
|
413
|
+
width: number;
|
|
414
|
+
height: number;
|
|
415
|
+
static readonly Empty: Rectangle;
|
|
416
|
+
static Temp: Rectangle;
|
|
417
|
+
static create(x: any, y?: number, width?: number, height?: number): Rectangle;
|
|
418
|
+
constructor(x?: number, y?: number, width?: number, height?: number);
|
|
419
|
+
get left(): number;
|
|
420
|
+
set left(value: number);
|
|
421
|
+
get right(): number;
|
|
422
|
+
set right(value: number);
|
|
423
|
+
get top(): number;
|
|
424
|
+
set top(value: number);
|
|
425
|
+
get bottom(): number;
|
|
426
|
+
set bottom(value: number);
|
|
427
|
+
get isEmpty(): boolean;
|
|
428
|
+
get isValid(): boolean;
|
|
429
|
+
clone(): Rectangle;
|
|
430
|
+
getInner(): Rectangle;
|
|
431
|
+
equals(r: Rectangle): boolean;
|
|
432
|
+
leftBy(delta: number): Rectangle;
|
|
433
|
+
rightBy(delta: number): Rectangle;
|
|
434
|
+
topBy(delta: number): Rectangle;
|
|
435
|
+
bottomBy(delta: number): Rectangle;
|
|
436
|
+
shrink(dx: number, dy: number): Rectangle;
|
|
437
|
+
expand(dx: number, dy: number): Rectangle;
|
|
438
|
+
contains(x: number, y: number): boolean;
|
|
439
|
+
setEmpty(): Rectangle;
|
|
440
|
+
move(x?: number, y?: number): Rectangle;
|
|
441
|
+
set(x: number, y: number, width: number, height: number): Rectangle;
|
|
442
|
+
setWidth(value: number): Rectangle;
|
|
443
|
+
copy(r: Rectangle): Rectangle;
|
|
444
|
+
copyHorz(r: Rectangle): Rectangle;
|
|
445
|
+
copyVert(r: Rectangle): Rectangle;
|
|
446
|
+
inflate(left?: number, top?: number, right?: number, bottom?: number): Rectangle;
|
|
447
|
+
offset(dx: number, dy: number): Rectangle;
|
|
448
|
+
round(): Rectangle;
|
|
449
|
+
union(r: Rectangle): Rectangle;
|
|
450
|
+
normalize(): Rectangle;
|
|
451
|
+
toString(): string;
|
|
452
|
+
}
|
|
400
453
|
|
|
401
454
|
declare class Sides {
|
|
402
455
|
top: number;
|
|
@@ -541,7 +594,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
|
|
|
541
594
|
clickAction?: ClickAction;
|
|
542
595
|
dblClickAction?: DblClickAction;
|
|
543
596
|
dragAction?: DragAction;
|
|
544
|
-
backgroundStyle?:
|
|
597
|
+
backgroundStyle?: CSSStyles;
|
|
545
598
|
onSelectionChanged?: (args: any) => void;
|
|
546
599
|
}
|
|
547
600
|
interface TitleOptions extends ChartItemOptions {
|
|
@@ -563,11 +616,13 @@ type SubtitlePosition = typeof _SubtitlePosition[keyof typeof _SubtitlePosition]
|
|
|
563
616
|
interface SubtitleOptions extends TitleOptions {
|
|
564
617
|
position?: SubtitlePosition;
|
|
565
618
|
titleGap?: number;
|
|
619
|
+
text?: string;
|
|
620
|
+
verticalAlign?: VerticalAlign;
|
|
566
621
|
}
|
|
567
622
|
interface CreditsOptions extends ChartItemOptions {
|
|
568
623
|
text?: string;
|
|
569
624
|
url?: string;
|
|
570
|
-
|
|
625
|
+
location?: ChartItemLocation;
|
|
571
626
|
align?: Align;
|
|
572
627
|
verticalAlign?: VerticalAlign;
|
|
573
628
|
offsetX?: number;
|
|
@@ -674,18 +729,10 @@ interface BackgroundImageOptions extends ChartItemOptions {
|
|
|
674
729
|
url?: string;
|
|
675
730
|
}
|
|
676
731
|
|
|
677
|
-
declare const ScaleLocations: {
|
|
678
|
-
readonly BOTTOM: "bottom";
|
|
679
|
-
readonly TOP: "top";
|
|
680
|
-
readonly RIGHT: "right";
|
|
681
|
-
readonly LEFT: "left";
|
|
682
|
-
readonly BODY: "body";
|
|
683
|
-
};
|
|
684
|
-
type ScaleLocation = typeof ScaleLocations[keyof typeof ScaleLocations];
|
|
685
732
|
interface ScaleOptions extends ChartItemOptions {
|
|
686
733
|
name?: string;
|
|
687
734
|
series?: string;
|
|
688
|
-
location?:
|
|
735
|
+
location?: ChartItemLocation;
|
|
689
736
|
align?: Align;
|
|
690
737
|
verticalAlign?: VerticalAlign;
|
|
691
738
|
offsetX?: number;
|
|
@@ -793,18 +840,10 @@ declare const _LegendLayout: {
|
|
|
793
840
|
readonly VERTICAL: "vertical";
|
|
794
841
|
};
|
|
795
842
|
type LegendLayout = typeof _LegendLayout[keyof typeof _LegendLayout];
|
|
796
|
-
declare const LegendLocations: {
|
|
797
|
-
readonly BOTTOM: "bottom";
|
|
798
|
-
readonly TOP: "top";
|
|
799
|
-
readonly RIGHT: "right";
|
|
800
|
-
readonly LEFT: "left";
|
|
801
|
-
readonly BODY: "body";
|
|
802
|
-
};
|
|
803
|
-
type LegendLocation = typeof LegendLocations[keyof typeof LegendLocations];
|
|
804
843
|
interface LegendOptions extends ChartItemOptions {
|
|
805
844
|
visible?: boolean;
|
|
806
845
|
reversed?: boolean;
|
|
807
|
-
location?:
|
|
846
|
+
location?: ChartItemLocation;
|
|
808
847
|
layout?: LegendLayout;
|
|
809
848
|
alignBase?: AlignBase;
|
|
810
849
|
gap?: number;
|
|
@@ -822,7 +861,7 @@ interface LegendOptions extends ChartItemOptions {
|
|
|
822
861
|
offsetX?: number;
|
|
823
862
|
offsetY?: number;
|
|
824
863
|
itemsAlign?: LegendItemsAlign;
|
|
825
|
-
|
|
864
|
+
sameTextColor?: boolean;
|
|
826
865
|
seriesHovering?: boolean;
|
|
827
866
|
}
|
|
828
867
|
|
|
@@ -1134,6 +1173,7 @@ interface RouteSeriesOptions extends SeriesOptions {
|
|
|
1134
1173
|
lineType?: RouteLineType;
|
|
1135
1174
|
lineWidth?: number;
|
|
1136
1175
|
arrowDisplay?: RouteArrowDisplay;
|
|
1176
|
+
bendFactor: number;
|
|
1137
1177
|
}
|
|
1138
1178
|
interface MapSeriesLabelOptions extends DataPointLabelOptions {
|
|
1139
1179
|
visible?: boolean;
|
|
@@ -1286,7 +1326,7 @@ interface CircleGaugeFaceOptions extends ChartItemOptions {
|
|
|
1286
1326
|
}
|
|
1287
1327
|
interface CircleGaugeRimOptions extends ChartItemOptions {
|
|
1288
1328
|
}
|
|
1289
|
-
interface CircleGaugeValueRimOptions extends
|
|
1329
|
+
interface CircleGaugeValueRimOptions extends CircleGaugeRimOptions {
|
|
1290
1330
|
thickness?: PercentSize;
|
|
1291
1331
|
stroked?: boolean;
|
|
1292
1332
|
}
|
|
@@ -1496,6 +1536,7 @@ interface ILegendSource {
|
|
|
1496
1536
|
legendMarker(doc: Document, size: number): RmElement;
|
|
1497
1537
|
legendColor(): string;
|
|
1498
1538
|
legendLabel(): string;
|
|
1539
|
+
setLegendMarkerStyle?(marker: RmElement): void;
|
|
1499
1540
|
}
|
|
1500
1541
|
declare class LegendItem extends ChartItem<ChartItemOptions> {
|
|
1501
1542
|
legend: Legend;
|
|
@@ -1515,7 +1556,7 @@ declare class Legend extends ChartItem<LegendOptions> {
|
|
|
1515
1556
|
items(): LegendItem[];
|
|
1516
1557
|
isEmpty(): boolean;
|
|
1517
1558
|
isVisible(): boolean;
|
|
1518
|
-
getLocation():
|
|
1559
|
+
getLocation(): ChartItemLocation;
|
|
1519
1560
|
isInner(): boolean;
|
|
1520
1561
|
getLayout(): LegendLayout;
|
|
1521
1562
|
getMaxWidth(domain: number): number;
|
|
@@ -1595,7 +1636,7 @@ declare class ColorScale extends ScaleBase<ColorScaleOptions> implements IColorR
|
|
|
1595
1636
|
private $_buildSteps;
|
|
1596
1637
|
}
|
|
1597
1638
|
declare class ColorScaleCollection extends ScaleCollection<ColorScale> {
|
|
1598
|
-
getVisibles(loc:
|
|
1639
|
+
getVisibles(loc: ChartItemLocation): ColorScale[];
|
|
1599
1640
|
getLegendSources(): ILegendSource[];
|
|
1600
1641
|
protected _createScale(chart: IChart): ColorScale;
|
|
1601
1642
|
}
|
|
@@ -1930,7 +1971,7 @@ declare class MapSeries extends ValueSeries<MapSeriesOptions> {
|
|
|
1930
1971
|
_prepareRender(): void;
|
|
1931
1972
|
protected _doPrepareRender(chart: IChart): void;
|
|
1932
1973
|
protected _doLoadPoints(src: any): void;
|
|
1933
|
-
setCalcedColor(
|
|
1974
|
+
setCalcedColor(cs: CSSStyleDeclaration, prop: string): void;
|
|
1934
1975
|
getColorScale(): string | number;
|
|
1935
1976
|
canSelect(): boolean;
|
|
1936
1977
|
}
|
|
@@ -2029,7 +2070,7 @@ interface IMapChartEvents {
|
|
|
2029
2070
|
}
|
|
2030
2071
|
declare class Credits extends ChartItem<CreditsOptions> {
|
|
2031
2072
|
static defaults: CreditsOptions;
|
|
2032
|
-
|
|
2073
|
+
getAlign(loc: ChartItemLocation): void;
|
|
2033
2074
|
}
|
|
2034
2075
|
declare class ChartOptions extends ChartItem<ChartOptionsOptions> {
|
|
2035
2076
|
static defaults: ChartOptionsOptions;
|
|
@@ -2101,7 +2142,7 @@ declare class ChartObject extends RmEventProvider<IMapChartEvents> implements IC
|
|
|
2101
2142
|
selectionItemAdded(item: ISelectionSource): void;
|
|
2102
2143
|
selectionItemRemoved(item: ISelectionSource): void;
|
|
2103
2144
|
selectionCleared(): void;
|
|
2104
|
-
get type(): "
|
|
2145
|
+
get type(): "map" | "point" | "bar" | "line" | "pie" | "waffle" | "bubble" | "route" | "feature" | "image" | "pin" | "figure" | "vector" | "heatmap" | "panel" | "gauge" | "clock";
|
|
2105
2146
|
get chartOptions(): ChartOptions;
|
|
2106
2147
|
get legend(): Legend;
|
|
2107
2148
|
get credits(): Credits;
|
|
@@ -2349,10 +2390,10 @@ declare abstract class SectionView extends GroupElement {
|
|
|
2349
2390
|
measure(doc: Document, chart: IChart, hintWidth: number, hintHeight: number): ISize;
|
|
2350
2391
|
resizeByMeasured(): SectionView;
|
|
2351
2392
|
layout(param?: any): SectionView;
|
|
2352
|
-
|
|
2393
|
+
locateInner(width: number, height: number, param?: any): SectionView;
|
|
2353
2394
|
protected abstract _doMeasure(doc: Document, chart: IChart, hintWidth: number, hintHeight: number): ISize;
|
|
2354
2395
|
protected abstract _doLayout(param?: any): void;
|
|
2355
|
-
protected abstract
|
|
2396
|
+
protected abstract _doLocateInner(width: number, height: number, param?: any): void;
|
|
2356
2397
|
}
|
|
2357
2398
|
declare abstract class ContentView<T extends ChartItem> extends ChartElement<T> {
|
|
2358
2399
|
protected _inverted: boolean;
|
|
@@ -2732,7 +2773,6 @@ declare abstract class SeriesView<T extends Series = Series> extends ContentView
|
|
|
2732
2773
|
_animationFinished(ani: Animation): void;
|
|
2733
2774
|
protected _layoutLabel(lv: PointLabelView, parent: Element): PointLabelView;
|
|
2734
2775
|
protected _legendColorProp(): string;
|
|
2735
|
-
protected _legendColorProp2(): string;
|
|
2736
2776
|
protected _doPointClicked(view: IPointView): void;
|
|
2737
2777
|
}
|
|
2738
2778
|
declare abstract class MarkerSeriesPointView<T extends MarkerSeriesPoint = MarkerSeriesPoint> extends PointElement<T> implements IPointView {
|
|
@@ -2850,10 +2890,18 @@ declare class DrilldownPanelView extends BodyPanelView<DrilldownPanel> {
|
|
|
2850
2890
|
protected _doLayout(param: any): void;
|
|
2851
2891
|
}
|
|
2852
2892
|
|
|
2853
|
-
declare class
|
|
2893
|
+
declare class CreditsView extends ChartElement<Credits> {
|
|
2854
2894
|
private _textView;
|
|
2855
2895
|
constructor(doc: Document);
|
|
2856
2896
|
click(dom: Element): void;
|
|
2897
|
+
locateInner(op: CreditsOptions, rBody: Rectangle): {
|
|
2898
|
+
x: number;
|
|
2899
|
+
y: number;
|
|
2900
|
+
};
|
|
2901
|
+
locateOuter(op: CreditsOptions, width: number, height: number): {
|
|
2902
|
+
x: number;
|
|
2903
|
+
y: number;
|
|
2904
|
+
};
|
|
2857
2905
|
protected _doMeasure(doc: Document, model: Credits, intWidth: number, hintHeight: number): ISize;
|
|
2858
2906
|
}
|
|
2859
2907
|
declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
@@ -2890,7 +2938,7 @@ declare class ChartView extends LayerElement implements IAnnotationAnchorOwner {
|
|
|
2890
2938
|
reset(): void;
|
|
2891
2939
|
legendByDom(dom: Element): LegendItem;
|
|
2892
2940
|
seriesByDom(dom: Element): SeriesView;
|
|
2893
|
-
creditByDom(dom: Element):
|
|
2941
|
+
creditByDom(dom: Element): CreditsView;
|
|
2894
2942
|
getScaleView(scale: ColorScale): ColorScaleView;
|
|
2895
2943
|
pointerMoved(x: number, y: number, target: EventTarget): void;
|
|
2896
2944
|
getButton(dom: Element): ButtonElement;
|
|
@@ -3003,7 +3051,7 @@ declare abstract class RmControl extends RmObject {
|
|
|
3003
3051
|
private $_requestRender;
|
|
3004
3052
|
updateNow(): void;
|
|
3005
3053
|
private $_render;
|
|
3006
|
-
protected _setBackgroundStyle(style:
|
|
3054
|
+
protected _setBackgroundStyle(style: CSSStyles): void;
|
|
3007
3055
|
setDebug(message: any): void;
|
|
3008
3056
|
protected abstract _doRender(bounds: IRect): void;
|
|
3009
3057
|
protected _doBeforeRender(root: RmElement): void;
|
|
@@ -3427,7 +3475,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
|
|
|
3427
3475
|
getLegendSources(list: ILegendSource[]): void;
|
|
3428
3476
|
getLabelOff(): number;
|
|
3429
3477
|
protected _defLabelOff(): number;
|
|
3430
|
-
setCalcedColor(
|
|
3478
|
+
setCalcedColor(cs: CSSStyleDeclaration, prop: string): void;
|
|
3431
3479
|
coordOfArea(id: string): MapCoord;
|
|
3432
3480
|
getCoord(p: DataPoint): MapCoord;
|
|
3433
3481
|
pointById(id: string): DataPoint;
|
|
@@ -3788,19 +3836,18 @@ declare abstract class IconedText<OP extends IconedTextOptions = IconedTextOptio
|
|
|
3788
3836
|
declare abstract class ScaleBase<OP extends ScaleOptions = ScaleOptions> extends ChartItem<OP> {
|
|
3789
3837
|
static defaults: ScaleOptions;
|
|
3790
3838
|
index: number;
|
|
3791
|
-
protected _location:
|
|
3839
|
+
protected _location: ChartItemLocation;
|
|
3792
3840
|
protected _series: ISeries;
|
|
3793
3841
|
get series(): ISeries<DataPoint>;
|
|
3794
|
-
getLocation():
|
|
3842
|
+
getLocation(): ChartItemLocation;
|
|
3795
3843
|
isReversed(): boolean;
|
|
3796
|
-
protected _doApply(options: ScaleOptions): void;
|
|
3797
3844
|
protected _doPrepareRender(chart: IChart): void;
|
|
3798
3845
|
protected _getFirstSeries(chart: IChart): Series<SeriesOptions>;
|
|
3799
3846
|
}
|
|
3800
3847
|
declare abstract class ScaleCollection<T extends ScaleBase = ScaleBase> extends ChartItemCollection<T> {
|
|
3801
3848
|
private _map;
|
|
3802
3849
|
protected _visibles: T[];
|
|
3803
|
-
getVisibles(loc:
|
|
3850
|
+
getVisibles(loc: ChartItemLocation): T[];
|
|
3804
3851
|
get(name: string | number): T;
|
|
3805
3852
|
prepareRender(): void;
|
|
3806
3853
|
load(src: any): void;
|
|
@@ -3875,6 +3922,7 @@ declare class MapChart {
|
|
|
3875
3922
|
get series(): Series;
|
|
3876
3923
|
get firstMapSeries(): MapSeries;
|
|
3877
3924
|
get legend(): Legend;
|
|
3925
|
+
get credits(): Credits;
|
|
3878
3926
|
get colorScale(): ColorScale;
|
|
3879
3927
|
get bubbleScale(): BubbleScale;
|
|
3880
3928
|
get zoomPanel(): ZoomPanel;
|
|
@@ -4314,12 +4362,16 @@ declare class PointSeries extends MarkerSeries<PointSeriesOptions> {
|
|
|
4314
4362
|
static type: string;
|
|
4315
4363
|
static defaults: PointSeriesOptions;
|
|
4316
4364
|
private _shape;
|
|
4365
|
+
private _stroke;
|
|
4366
|
+
private _strokeWidth;
|
|
4317
4367
|
constructor(chart: IChart);
|
|
4318
4368
|
getShape(p: PointSeriesPoint): Shape;
|
|
4319
4369
|
getRadius(): number;
|
|
4370
|
+
setLegendMarkerStyle(marker: RmElement): void;
|
|
4320
4371
|
protected _createPoint(source: any): PointSeriesPoint;
|
|
4321
4372
|
protected _defLabelOff(): number;
|
|
4322
4373
|
protected _doLoadPoints(src: any): void;
|
|
4374
|
+
setCalcedColor(cs: CSSStyleDeclaration, prop: string): void;
|
|
4323
4375
|
protected _createLegendMarker(doc: Document, size: number): RmElement;
|
|
4324
4376
|
legendMarker(doc: Document, size: number): RmElement;
|
|
4325
4377
|
}
|
|
@@ -4600,4 +4652,4 @@ declare const createChart: typeof Globals.createChart;
|
|
|
4600
4652
|
declare const createChartAsync: typeof Globals.createChartAsync;
|
|
4601
4653
|
declare const preset: typeof Globals.preset;
|
|
4602
4654
|
|
|
4603
|
-
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AssetItemOptions, AssetOptionsType, BackgroundImageOptions, BarSeries, BarSeriesOptions, Body, BodyView, BubbleSeries, BubbleSeriesOptions, ChartConfiguration, ChartControl, ChartElement, ChartItem, ChartItemOptions, ChartOptionsOptions, ChartTextOptions, ChartView, CircleElement, CircleGauge, ClockGauge, Color, ColorListOptions, ContentView, CreditsOptions, DataPointCallbackArgs, DataPointLabel, DataPointLabelOptions, ElementPool, FigureSeries, GradientOptions, HeatmapSeries, HeatmapSeriesOptions, HeatmapSeriesType, IPercentSize, IPointView, IRect, ISeries, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageSeries, Legend, LegendOptions, LineElement, LineSeries, LineSeriesOptions, LinearGradientOptions, MapAxis, MapAxisBandGuide, MapAxisGuide, MapAxisLineGuide, MapAxisRangeGuide, MapChart, MapCoord, MapCrosshair, MapInset, MapInsetDisplay, MapSeries, MapSeriesLabelOptions, MapSeriesOptions, MapSeriesType, MapBackgroundOptions as MapViewBackgroundOptions, BodyOptions as MapViewOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, ORG_ANGLE, OrthogonalSparkSeries, PI_2, PanelSeries, PatternOptions, PercentSize, PieSeries, PieSeriesOptions, PinSeries, PointElement, PointLabelView, PointSeries, RAD_DEG, RadialGradientOptions, RectElement, RouteSeries, RouteSeriesOptions, RouteSeriesType, SVGStyleOrClass, SVGStyles, SectionView, SectorElement, Series, SeriesAnimation, SeriesOptions, SeriesOptionsType, SeriesView, ShapeAnnotation, ShapeAnnotationOptions, Size, SparkSeries, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TiledWebSeriesOptions, TiledWebSeriesType, Title, TitleOptions, TooltipOptions, Utils, ValueSeries, VectorSeries, WaffleSeries, _isIE, absv, assignObj, calcPercent, copyObj, cos, createChart, createChartAsync, createRect, fixnum, getDistance, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, preset, rectToSize, setDebugging, setLogging, sin };
|
|
4655
|
+
export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, AssetItemOptions, AssetOptionsType, BackgroundImageOptions, BarSeries, BarSeriesOptions, Body, BodyView, BubbleSeries, BubbleSeriesOptions, ChartConfiguration, ChartControl, ChartElement, ChartItem, ChartItemOptions, ChartOptionsOptions, ChartTextOptions, ChartView, CircleElement, CircleGauge, ClockGauge, Color, ColorListOptions, ContentView, CreditsOptions, DataPointCallbackArgs, DataPointLabel, DataPointLabelOptions, ElementPool, ExportOptions, Exporter, ExporterOptions, FigureSeries, GradientOptions, HeatmapSeries, HeatmapSeriesOptions, HeatmapSeriesType, IPercentSize, IPointView, IRect, ISeries, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageSeries, Legend, LegendOptions, LineElement, LineSeries, LineSeriesOptions, LinearGradientOptions, MapAxis, MapAxisBandGuide, MapAxisGuide, MapAxisLineGuide, MapAxisRangeGuide, MapChart, MapCoord, MapCrosshair, MapInset, MapInsetDisplay, MapSeries, MapSeriesLabelOptions, MapSeriesOptions, MapSeriesType, MapBackgroundOptions as MapViewBackgroundOptions, BodyOptions as MapViewOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, ORG_ANGLE, OrthogonalSparkSeries, PI_2, PanelSeries, PatternOptions, PercentSize, PieSeries, PieSeriesOptions, PinSeries, PointElement, PointLabelView, PointSeries, RAD_DEG, RadialGradientOptions, RectElement, RouteSeries, RouteSeriesOptions, RouteSeriesType, SVGStyleOrClass, SVGStyles, SectionView, SectorElement, Series, SeriesAnimation, SeriesOptions, SeriesOptionsType, SeriesView, ShapeAnnotation, ShapeAnnotationOptions, Size, SparkSeries, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TiledWebSeriesOptions, TiledWebSeriesType, Title, TitleOptions, TooltipOptions, Utils, ValueSeries, VectorSeries, WaffleSeries, _isIE, absv, assignObj, calcPercent, copyObj, cos, createChart, createChartAsync, createRect, fixnum, getDistance, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, preset, rectToSize, setDebugging, setLogging, sin };
|