realchart 1.3.8 → 1.3.9

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 CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Gauge v1.3.8
3
+ * RealChart Gauge v1.3.9
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/gauge.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Gauge v1.3.8
3
+ * RealChart Gauge v1.3.9
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/heatmap.js CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Heatmap v1.3.8
3
+ * RealChart Heatmap v1.3.9
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/heatmap.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /**
3
- * RealChart Heatmap v1.3.8
3
+ * RealChart Heatmap v1.3.9
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -667,6 +667,10 @@ interface IconedTextOptions extends ChartTextOptions {
667
667
  * {@page config.base.series#onPointHover 콜백}의 매개변수로 사용된다.<br/>
668
668
  */
669
669
  interface DataPointCallbackArgs {
670
+ /**
671
+ * RealChart의 공개 {@page api.Chart} 모델
672
+ */
673
+ chart: object;
670
674
  /**
671
675
  */
672
676
  series: object;
@@ -4441,6 +4445,23 @@ interface BackgroundImageOptions extends ChartItemOptions {
4441
4445
  */
4442
4446
  url?: string;
4443
4447
  }
4448
+ /**
4449
+ * @enum
4450
+ */
4451
+ declare const _ZoomType: {
4452
+ /**
4453
+ */
4454
+ readonly NONE: "none";
4455
+ /**
4456
+ */
4457
+ readonly X: "x";
4458
+ /** @ignore 미구현 */
4459
+ readonly Y: "y";
4460
+ /** @ignore 미구현 */
4461
+ readonly BOTH: "both";
4462
+ };
4463
+ /** @dummy */
4464
+ type ZoomType = typeof _ZoomType[keyof typeof _ZoomType];
4444
4465
  /**
4445
4466
  */
4446
4467
  interface ZoomButtonOptions extends ChartItemOptions {
@@ -4476,6 +4497,56 @@ interface EmptyViewOptions extends ChartTextOptions {
4476
4497
  */
4477
4498
  text?: string;
4478
4499
  }
4500
+ /**
4501
+ * 원본값과 계산된 좌표값이 포함된 포인트
4502
+ */
4503
+ interface ChartPoint {
4504
+ /**
4505
+ * x값
4506
+ */
4507
+ x: any;
4508
+ /**
4509
+ * x좌표 값
4510
+ */
4511
+ xValue: any;
4512
+ /**
4513
+ * y값
4514
+ */
4515
+ y: any;
4516
+ /**
4517
+ * y좌표 값
4518
+ */
4519
+ yValue: any;
4520
+ /**
4521
+ * z값
4522
+ */
4523
+ z: any;
4524
+ /**
4525
+ * z좌표 값
4526
+ */
4527
+ zValue: any;
4528
+ }
4529
+ /**
4530
+ * zoom 될 때 호출되는 콜백의 매개변수로 사용된다.
4531
+ */
4532
+ interface ZoomCallbackArgs {
4533
+ /**
4534
+ * RealChart의 공개 {@page api.Chart} 모델
4535
+ */
4536
+ chart: object;
4537
+ /**
4538
+ * Series 객체 배열
4539
+ */
4540
+ series: object[];
4541
+ /**
4542
+ * zoom 영역 xAxis 시작 값
4543
+ */
4544
+ from: number;
4545
+ /**
4546
+ * zoom 영역 xAxis 끝 값
4547
+ */
4548
+ to: number;
4549
+ }
4479
4550
  /**
4480
4551
  * {@page config.base.series 시리즈}나 {@page config.base.gauge 게이지}들이 그려지는 영역 설정 옵션.<br/>
4481
4552
  * 전체 차트에서 {@page config.title 타이틀}, {@page config.legend 범례},
@@ -4533,7 +4604,7 @@ interface BodyOptions extends ChartItemOptions {
4533
4604
  *
4534
4605
  * @default 'none'
4535
4606
  */
4536
- zoomType?: 'none' | 'x' | 'y' | 'both';
4607
+ zoomType?: ZoomType;
4537
4608
  /**
4538
4609
  * Zoom 리셋 버튼 설정 옵션.<br/>
4539
4610
  */
@@ -4544,6 +4615,10 @@ interface BodyOptions extends ChartItemOptions {
4544
4615
  * [주의] 이전 버전의 설정을 로드하기 위해, 이 속성이 지정되지 않고 'annotations' 설정이 존재하면 load 후 이 속성으로 설정한다.
4545
4616
  */
4546
4617
  annotation?: AnnotationOptionsType | AnnotationOptionsType[];
4618
+ /**
4619
+ * zoom 될 때 호출되는 이벤트 콜백<br/>
4620
+ */
4621
+ zoomCallback?: (series: ZoomCallbackArgs) => void;
4547
4622
  }
4548
4623
  /**
4549
4624
  */
@@ -6012,6 +6087,7 @@ interface IPlottingItem {
6012
6087
  collectRanges(vals: number[]): void;
6013
6088
  pointValuesPrepared(axis: IAxis): void;
6014
6089
  seriesChanged(): boolean;
6090
+ connectable(axis: IAxis): boolean;
6015
6091
  }
6016
6092
  /**
6017
6093
  * 시리즈 {@page https://en.wikipedia.org/wiki/Trend_line_(technical_analysis) 추세선} 모델.<br/>
@@ -6213,6 +6289,10 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6213
6289
  contains(p: DataPoint): boolean;
6214
6290
  getPoints(): DataPointCollection;
6215
6291
  _getLabeledPoints(): DataPoint[];
6292
+ /**
6293
+ * 지정한 x축 범위 내에 있는 데이터포인트들을 리턴한다.
6294
+ */
6295
+ getPointsByRange(from: number, to: number): DataPoint[];
6216
6296
  _getVisiblePoints(): DataPoint[];
6217
6297
  pointLabelCount(): number;
6218
6298
  isEmpty(): boolean;
@@ -6254,6 +6334,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6254
6334
  getVisibleSeries(): ISeries[];
6255
6335
  protected _getNoClip(polar: boolean): boolean;
6256
6336
  needClip(polar: boolean): boolean;
6337
+ connectable(axis: IAxis): boolean;
6257
6338
  setCol(col: number): void;
6258
6339
  setRow(row: number): void;
6259
6340
  initPoints(source: any[]): DataPoint[];
@@ -6453,6 +6534,7 @@ declare abstract class ConnectableSeries<OP extends ConnectableSeriesOptions = C
6453
6534
  * 추세선 설정 모델.
6454
6535
  */
6455
6536
  get trendline(): Trendline;
6537
+ connectable(axis: IAxis): boolean;
6456
6538
  }
6457
6539
  /**
6458
6540
  * dumbbell 시리즈 등에 표시되는 마커.
@@ -6608,6 +6690,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
6608
6690
  _seriesType(): string;
6609
6691
  setCol(col: number): void;
6610
6692
  setRow(row: number): void;
6693
+ connectable(axis: IAxis): boolean;
6611
6694
  isFirstVisible(series: ISeries): boolean;
6612
6695
  isLastVisible(series: ISeries): boolean;
6613
6696
  collectValues(axis: IAxis, vals: number[]): void;
@@ -6669,21 +6752,44 @@ declare abstract class MarkerSeries<OP extends MarkerSeriesOptions = MarkerSerie
6669
6752
  * //[x, y]
6670
6753
  */
6671
6754
  declare abstract class DataPoint {
6755
+ /**
6756
+ * 인덱스
6757
+ */
6672
6758
  index: number;
6673
6759
  vindex: number;
6760
+ /**
6761
+ * x 값
6762
+ */
6674
6763
  x: any;
6764
+ /**
6765
+ * y 값
6766
+ */
6675
6767
  y: any;
6676
6768
  /**
6677
6769
  * drilldown series
6770
+ *
6771
+ * @ignore
6678
6772
  */
6679
6773
  series: string | number;
6680
6774
  readonly pid: number;
6775
+ /**
6776
+ * 원본 데이터
6777
+ */
6681
6778
  source: any;
6682
6779
  labelOptions: any;
6683
6780
  isNull: boolean;
6781
+ /**
6782
+ * x 좌표상의 value
6783
+ */
6684
6784
  xValue: number;
6785
+ /**
6786
+ * y 좌표상의 value
6787
+ */
6685
6788
  yValue: number;
6686
6789
  yRate: number;
6790
+ /**
6791
+ * 표시 여부.
6792
+ */
6687
6793
  visible: boolean;
6688
6794
  color: string;
6689
6795
  xPos: number;
@@ -6691,11 +6797,12 @@ declare abstract class DataPoint {
6691
6797
  /**
6692
6798
  * for stacking. stacking 가능한 경우 이 값으로 축 상 위치를 계산한다.
6693
6799
  * [주의] yValue를 강제로 재설정하는 경우 이 값도 재설정할 것!
6800
+ *
6801
+ * @ignore
6694
6802
  */
6695
6803
  yGroup: number;
6696
6804
  drillDown: any[] | object;
6697
6805
  range: ValueRange;
6698
- zValue: number;
6699
6806
  yLabel: any;
6700
6807
  _prev: any;
6701
6808
  _vr: number;
@@ -6760,8 +6867,14 @@ declare class DataPointCollection {
6760
6867
  * [x, y, z]
6761
6868
  */
6762
6869
  declare abstract class ZValuePoint extends DataPoint {
6870
+ /**
6871
+ * z 값
6872
+ */
6763
6873
  z: any;
6764
6874
  zLabel: any;
6875
+ /**
6876
+ * z 좌표상의 value
6877
+ */
6765
6878
  zValue: number;
6766
6879
  getPointLabel(index: number): any;
6767
6880
  getPointText(index: number): string;
@@ -6852,7 +6965,7 @@ interface IAxis {
6852
6965
  * data point의 값을 축 상의 값으로 리턴한다.
6853
6966
  */
6854
6967
  getValue(value: any): number;
6855
- getXValue(value: number): any;
6968
+ getXLabel(value: number): any;
6856
6969
  contains(value: number): boolean;
6857
6970
  incStep(value: number, step: any): number;
6858
6971
  /**
@@ -7272,6 +7385,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
7272
7385
  isBaseVisible(): boolean;
7273
7386
  disconnect(): void;
7274
7387
  getSeries(): ISeries[];
7388
+ getConnectableSeries(): ISeries[];
7275
7389
  collectValues(): void;
7276
7390
  collectRanges(): void;
7277
7391
  collectReferentsValues(): void;
@@ -7319,7 +7433,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
7319
7433
  hasBreak(): boolean;
7320
7434
  isBreak(pos: number): boolean;
7321
7435
  getTickLabelArgs(index: number, value: any): AxisLabelArgs;
7322
- getXValue(value: number): any;
7436
+ getXLabel(value: number): any;
7323
7437
  setPrevRate(rate: number): void;
7324
7438
  prev(pos: number): number;
7325
7439
  abstract xValueAt(pos: number): number;
@@ -7491,6 +7605,10 @@ interface AxisTickOptions extends AxisItemOptions {
7491
7605
  * 연속축의 tick 스텝 목록을 동적으로 리턴하는 {@page config.xAxis.linear.tick#stepcallback 콜백}의 매개변수로 사용된다.
7492
7606
  */
7493
7607
  interface StepCallbackArgs {
7608
+ /**
7609
+ * RealChart의 공개 {@page api.Chart} 모델
7610
+ */
7611
+ chart: object;
7494
7612
  /**
7495
7613
  */
7496
7614
  length: number;
@@ -7996,6 +8114,10 @@ type CrosshairType = typeof _CrosshairType[keyof typeof _CrosshairType];
7996
8114
  * Crosshair 위치가 변경될 때 발생되는 {@page config.base.axis.crosshair#onChange 콜백}의 매개변수로 사용된다.<br/>
7997
8115
  */
7998
8116
  interface CrosshairCallbackArgs {
8117
+ /**
8118
+ * RealChart의 공개 {@page api.Chart} 모델
8119
+ */
8120
+ chart: object;
7999
8121
  /**
8000
8122
  */
8001
8123
  axis: object;
@@ -10569,6 +10691,7 @@ interface ISplit extends ChartItem<SplitOptions> {
10569
10691
  prepareRender(xAxes: AxisCollection, yAxes: AxisCollection): void;
10570
10692
  }
10571
10693
  interface IChart {
10694
+ wrapper: object;
10572
10695
  options: ChartConfiguration;
10573
10696
  type?: string;
10574
10697
  gaugeType?: string;
@@ -10686,6 +10809,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
10686
10809
  private static gauge_class;
10687
10810
  static registerSplitClass(clazz: any): void;
10688
10811
  private static defaults;
10812
+ private _wrapper;
10689
10813
  options: ChartConfiguration;
10690
10814
  private _bases;
10691
10815
  _data: ChartDataCollection;
@@ -10716,7 +10840,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
10716
10840
  assignTemplates: (target: any) => any;
10717
10841
  _dataDirty: boolean;
10718
10842
  _loadAnimatable: boolean;
10719
- constructor(config?: ChartConfiguration);
10843
+ constructor(config?: ChartConfiguration, wrapper?: any);
10720
10844
  private _initOptions;
10721
10845
  _createChart(config: any): IChart;
10722
10846
  animatable(): boolean;
@@ -10724,6 +10848,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
10724
10848
  getTooltipContext(scope: TooltipScope, series: ISeries, point: DataPoint): ITooltipContext;
10725
10849
  get chart(): IChart;
10726
10850
  anchorByName(name: string): ChartItem;
10851
+ get wrapper(): object;
10727
10852
  get type(): "line" | "area" | "linegroup" | "spline" | "bellcurve" | "areagroup" | "barrange" | "bar" | "bargroup" | "piegroup" | "pie" | "boxplot" | "bubble" | "bump" | "candlestick" | "ohlc" | "circlebar" | "circlebargroup" | "dumbbell" | "equalizer" | "errorbar" | "funnel" | "histogram" | "arearange" | "lollipop" | "pareto" | "scatter" | "waterfall" | "treemap" | "heatmap" | "vector";
10728
10853
  get gaugeType(): "circle" | "linear" | "bullet" | "clock";
10729
10854
  get polar(): boolean;
@@ -12193,7 +12318,11 @@ declare class AxisView extends ChartElement<Axis> {
12193
12318
  hideCrosshiar(): void;
12194
12319
  scroll(pos: number): void;
12195
12320
  prepare(m: Axis): void;
12196
- checkExtents(loaded: boolean): void;
12321
+ checkExtents(loaded: boolean): {
12322
+ axis: Axis;
12323
+ from: number;
12324
+ to: number;
12325
+ };
12197
12326
  clean(): void;
12198
12327
  protected _doMeasure(doc: Document, model: Axis, hintWidth: number, hintHeight: number, phase: number): Size;
12199
12328
  protected _doLayout(): void;
@@ -12418,18 +12547,15 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
12418
12547
  w: number;
12419
12548
  i?: string;
12420
12549
  }[];
12421
- _cats: string[];
12422
12550
  _weights: number[];
12423
12551
  _len: number;
12424
12552
  private _map;
12425
12553
  private _catPad;
12426
12554
  private _catMin;
12427
- private _catMax;
12428
12555
  private _catLen;
12429
12556
  _pts: number[];
12430
12557
  _tstep: number;
12431
12558
  get tick(): CategoryAxisTick;
12432
- getCategories(): string[];
12433
12559
  xValueAt(pos: number): number;
12434
12560
  getWdith(length: number, category: number): number;
12435
12561
  _type(): string;
@@ -12448,7 +12574,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
12448
12574
  getUnitLen(length: number, value: number): number;
12449
12575
  getLabelLength(length: number, value: number): number;
12450
12576
  getValue(value: any): number;
12451
- getXValue(value: number): any;
12577
+ getXLabel(value: number): any;
12452
12578
  _doCalculateRange(values: number[]): {
12453
12579
  min: number;
12454
12580
  max: number;
@@ -12504,7 +12630,7 @@ declare class TimeAxis extends ContinuousAxis<TimeAxisOptions> {
12504
12630
  date(value: number): Date;
12505
12631
  axisValueAt(length: number, pos: number): any;
12506
12632
  value2Tooltip(value: number): any;
12507
- getXValue(value: number): number | Date;
12633
+ getXLabel(value: number): number | Date;
12508
12634
  }
12509
12635
 
12510
12636
  /**
@@ -13216,6 +13342,7 @@ declare class PieSeriesGroup extends SeriesGroup<PieSeries, PieSeriesGroupOption
13216
13342
  private _innerDim;
13217
13343
  getPolarSize(width: number, height: number): number;
13218
13344
  getInnerRadius(rd: number): number;
13345
+ connectable(axis: IAxis): boolean;
13219
13346
  protected _doApply(options: PieSeriesGroupOptions): void;
13220
13347
  needAxes(): boolean;
13221
13348
  protected _canContain(ser: Series): boolean;
@@ -13608,4 +13735,4 @@ declare const configure: typeof Globals.configure;
13608
13735
  declare const createChart: typeof Globals.createChart;
13609
13736
  declare const createData: typeof Globals.createData;
13610
13737
 
13611
- export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelView, RAD_DEG, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLogging, sin, toStr };
13738
+ export { Align, Annotation, AnnotationAnimationOptions, AnnotationOptions, AnnotationOptionsType, ArcElement, AreaRangeSeries, AreaRangeSeriesOptions, AreaSeries, AreaSeriesGroup, AreaSeriesGroupOptions, AreaSeriesOptions, ArrowHead, AssetCollection, AssetItemOptions, AssetOptionsType, Axis, AxisBaseLine, AxisBaseLineOptions, AxisBreakOptions, AxisCollection, AxisGrid, AxisGridOptions, AxisGridRowsOptions, AxisGuideLabelOptions, AxisGuideOptions, AxisItem, AxisItemOptions, AxisLabel, AxisLabelArgs, AxisLabelOptions, AxisLine, AxisLineGuideOptions, AxisLineOptions, AxisOptions, AxisOptionsType, AxisRangeGuideOptions, AxisScrollBar, AxisScrollBarOptions, AxisScrollView, AxisSectorLine, AxisSectorLineOptions, AxisTick, AxisTickOptions, AxisTitle, AxisTitleOptions, AxisView, BackgroundImageOptions, BarRangeSeries, BarRangeSeriesOptions, BarSeries, BarSeriesBase, BarSeriesBaseOptions, BarSeriesGroup, BarSeriesGroupBase, BarSeriesGroupBaseOptions, BarSeriesGroupOptions, BarSeriesOptions, BasedSeries, BasedSeriesOptions, BellCurveSeries, BellCurveSeriesOptions, Body, BodyOptions, BodyView, BoxPlotSeries, BoxPlotSeriesOptions, BubbleSeries, BubbleSeriesOptions, BulletGaugeBandOptions, BulletGaugeGroupOptions, BulletGaugeGroupType, BulletGaugeOptions, BulletGaugeType, BulletTargetBarOptions, BulletValueBarOptions, BumpSeriesGroup, BumpSeriesGroupOptions, CandlestickSeries, CandlestickSeriesOptions, CategoryAxis, CategoryAxisGrid, CategoryAxisLabel, CategoryAxisOptions, CategoryAxisTick, CategoryAxisTickOptions, Chart, ChartConfiguration, ChartControl, ChartData, ChartDataCollection, ChartDataOptions, ChartElement, ChartItem, ChartItemOptions, ChartObject, ChartOptions, ChartOptionsOptions, ChartPoint, ChartText, ChartTextOptions, ChartView, CircelBarPointLabel, CircleBarPointLabelOptions, CircleBarSeries, CircleBarSeriesGroup, CircleBarSeriesGroupOptions, CircleBarSeriesOptions, CircleElement, CircleGaugeGroupOptions, CircleGaugeGroupType, CircleGaugeHandOptions, CircleGaugeOptions, CircleGaugePinOptions, CircleGaugeRimBaseOptions, CircleGaugeRimOptions, CircleGaugeScaleOptions, CircleGaugeType, CircleGaugeValueMarkerOptions, CircleGaugeValueRimOptions, CircularGauge, CircularGaugeGroup, CircularGaugeGroupOptions, CircularGaugeLabel, CircularGaugeLabelOptions, CircularGaugeOptions, ClockGaugeHandOptions, ClockGaugeLabelOptions, ClockGaugeOptions, ClockGaugePinOptions, ClockGaugeRimOptions, ClockGaugeSecondHandOptions, ClockGaugeTickLabelOptions, ClockGaugeTickOptions, ClockGaugeType, ClusterableSeries, ClusterableSeriesGroup, ClusterableSeriesGroupOptions, ClusterableSeriesOptions, Color, ColorListOptions, ConnectableSeries, ConnectableSeriesOptions, ConstraintSeriesGroup, ContentView, ContinuousAxis, ContinuousAxisGridOptions, ContinuousAxisLabelOptions, ContinuousAxisOptions, ContinuousAxisTickOptions, Credits, CreditsOptions, Crosshair, CrosshairCallbackArgs, CrosshairFlagOptions, CrosshairOptions, DataPoint, DataPointCallbackArgs, DataPointCollection, DataPointLabel, DataPointLabelOptions, DumbbellSeries, DumbbellSeriesMarkerOptions, DumbbellSeriesOptions, ElementPool, EmptyViewOptions, EqualizerSeries, EqualizerSeriesOptions, ErrorBarSeries, ErrorBarSeriesOptions, ExportOptions, Exporter, ExporterOptions, FunnelSeries, FunnelSeriesLabelOptions, FunnelSeriesOptions, Gauge, GaugeBase, GaugeBaseOptions, GaugeGroup, GaugeGroupOptions, GaugeGroupView, GaugeItem, GaugeLabel, GaugeLabelOptions, GaugeOptions, GaugeOptionsType, GaugeRangeBand, GaugeRangeBandOptions, GaugeRangeLabel, GaugeRangeLabelOptions, GaugeScale, GaugeScaleLabelOptions, GaugeScaleOptions, GaugeScaleTickOptions, GaugeView, GradientOptions, HeatmapSeriesOptions, HeatmapSeriesType, HistogramSeries, HistogramSeriesOptions, IAxis, IChart, ICircularGaugeExtents, IMinMax, IPercentSize, IPlottingItem, IPlottingOwner, IPointView, IRect, ISeries, ISplit, IconedText, IconedTextOptions, ImageAnnotation, ImageAnnotationOptions, ImageListOptions, ImageOptions, LayerElement, Legend, LegendOptions, LineElement, LinePointLabel, LinePointLabelOptions, LineSeries, LineSeriesBase, LineSeriesBaseOptions, LineSeriesFlagOptions, LineSeriesGroup, LineSeriesGroupOptions, LineSeriesMarkerOptions, LineSeriesOptions, LineSeriesPoint, LinearAxis, LinearAxisLabelOptions, LinearAxisOptions, LinearGaugeBaseOptions, LinearGaugeChildLabelOptions, LinearGaugeGroupBaseOptions, LinearGaugeGroupLabelOptions, LinearGaugeGroupOptions, LinearGaugeGroupType, LinearGaugeLabelOptions, LinearGaugeOptions, LinearGaugeScaleOptions, LinearGaugeType, LinearGradientOptions, LinearValueBarOptions, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, PI_2, PaneBodyOptions, PaneContainer, PaneOptions, ParetoSeries, ParetoSeriesOptions, PathBuilder, PathElement, PatternOptions, PercentSize, PieSeries, PieSeriesGroup, PieSeriesGroupOptions, PieSeriesLabel, PieSeriesLabelOptions, PieSeriesOptions, PieSeriesText, PieSeriesTextOptions, Point, PointElement, PointHovering, PointHoveringOptions, PointLabelView, RAD_DEG, RadialGradientOptions, RadialSeries, RadialSeriesOptions, RangedSeries, RangedSeriesOptions, RcAnimation, RcControl, RcElement, RcObject, RectElement, SVGStyleOrClass, SVGStyles, ScaleView, ScatterSeries, ScatterSeriesOptions, SectionView, SectorElement, Series, SeriesAnimation, SeriesGroup, SeriesGroupOptions, SeriesMarker, SeriesMarkerOptions, SeriesNavigator, SeriesNavigatorOptions, SeriesOptions, SeriesOptionsType, SeriesView, Shape, ShapeAnnotation, ShapeAnnotationOptions, Size, SplineSeries, SplineSeriesOptions, SplitOptions, StepCallbackArgs, Subtitle, SubtitleOptions, TextAnchor, TextAnnotation, TextAnnotationOptions, TextElement, TextLayout, TimeAxis, TimeAxisLabelOptions, TimeAxisOptions, TimeAxisTickOptions, Title, TitleOptions, Tooltip, TooltipOptions, TreeGroupHeadOptions, TreemapSeriesOptions, TreemapSeriesType, Trendline, TrendlineOptions, Utils, ValueGauge, ValueGaugeOptions, ValueGaugeView, ValueRange, ValueRangeList, VectorSeriesOptions, VectorSeriesType, WaterfallSeries, WaterfallSeriesOptions, Widget, WidgetSeries, WidgetSeriesOptions, WidgetSeriesPoint, WidgetSeriesView, WordCloudSeriesOptions, WordCloudSeriesType, ZValuePoint, ZoomButtonOptions, ZoomCallbackArgs, absv, assignObj, buildValueRanges, calcPercent, configure, copyObj, cos, createChart, createData, createRect, extend, fixnum, getVersion, incv, isArray, isEmptyRect, isObject, isString, maxv, minv, parsePercentSize, pickNum, pickProp, pickProp3, pixel, rectToSize, setAnimatable, setDebugging, setLogging, sin, toStr };