realchart 1.3.11 → 1.3.13

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.11
3
+ * RealChart Gauge v1.3.13
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.11
3
+ * RealChart Gauge v1.3.13
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.11
3
+ * RealChart Heatmap v1.3.13
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.11
3
+ * RealChart Heatmap v1.3.13
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -2007,8 +2007,13 @@ interface ClusterableSeriesOptions extends ConnectableSeriesOptions {
2007
2007
  */
2008
2008
  pointWidth?: number;
2009
2009
  /**
2010
+ * 데이터포인트가 표시되는 위치를 데이터포인트 너비에 대한 상대값으로 비켜 표시한다..<br/>
2011
+ * 기본값 0이면 카테고리의 중앙 또는 연속축의 값 위치에 데이터포인트의 중간이 놓이도록 표시한다.
2012
+ * -0.5이면 데이터포인트 오른쪽이, 0.5이면 데이터포인트 왼쪽이 기본 위치에 표시된다.
2013
+ *
2014
+ * @default 0
2010
2015
  */
2011
- pointPos?: number;
2016
+ pointOffset?: number;
2012
2017
  /**
2013
2018
  * 이 시리즈의 point가 차지하는 영역 중에서 point bar 양쪽 끝에 채워지는 빈 영역의 크기.
2014
2019
  * <br>
@@ -2482,6 +2487,33 @@ interface WidgetSeriesConnectorOptions extends ChartItemOptions {
2482
2487
  */
2483
2488
  curved?: boolean;
2484
2489
  }
2490
+ /**
2491
+ * 최대 표시 개수나 최소 표시 값 설정에 따라 마지막 데이터 포인트들을 하나의 그룹 포인트로 묶어 표시한다.<br/>
2492
+ * 원본 데이터포인트들은 유지된다. 또, 자동 정렬하지 않는다.
2493
+ */
2494
+ interface OthersGroupOptions extends ChartItemOptions {
2495
+ /**
2496
+ * @default false
2497
+ */
2498
+ visible?: boolean;
2499
+ /**
2500
+ * @default '기타'
2501
+ */
2502
+ x?: string;
2503
+ /**
2504
+ * 표시 최대 데이터포인트 개수.<br/>
2505
+ * {@page minValue}와 동시에 지정할 수 있다.
2506
+ * 두 속성이 모두 지정되지 않으면 이 속성값이 10인 것으로 적용된다.
2507
+ */
2508
+ maxCount?: number;
2509
+ /**
2510
+ * 이 속성으로 지정한 값 이상을 갖는 데이터포인트들만 표시한다.<br/>
2511
+ * '%'로 지정하면 전체 합계에 대한 비율을 기준으로 한다.
2512
+ * 또, {@page maxCount}와 동시에 지정할 수 있다.
2513
+ * 두 속성이 모두 지정되지 않으면 {@page maxCount}가 10인 것으로 적용된다.
2514
+ */
2515
+ minValue?: PercentSize;
2516
+ }
2485
2517
  /**
2486
2518
  * {@page config.series.pie} 시리즈나 {@page config.seriesfunnel} 시리즈 설정 옵션들의 기반(base).<br/>
2487
2519
  */
@@ -2520,13 +2552,15 @@ interface WidgetSeriesOptions extends SeriesOptions {
2520
2552
  * @default true
2521
2553
  */
2522
2554
  zeroInLegend?: boolean;
2555
+ othersGroup?: OthersGroupOptions;
2523
2556
  }
2524
2557
  declare const BarRangeSeriesType = "barrange";
2525
2558
  /**
2526
2559
  * BarRange 시리즈.<br/>
2527
2560
  * {@page op.SeriesOptions#type}은 'barrange'이다.<br/>
2528
2561
  * 수평 또는 수직 막대로 여러 값들의 범위들을 **비교**하는 데 사용한다.
2529
- * 막대의 길이가 값의 범위를 표시한다.<br/>
2562
+ * 또, 개별 막대의 길이가 특정 값의 범위를 표시한다. 예를들어 월별 최저/최고 기온을 표시할 수 있다.
2563
+ * 데이터포인트 label도 두 값을 동시에 표시한다.<br/>
2530
2564
  * X축 타입이 설정되지 않은 경우, 이 시리즈를 기준으로 생성되는 축은 [category](/config/config/xAxis/category)이다.<br/>
2531
2565
  *
2532
2566
  * {@page data}는 아래 형식들로 전달할 수 있다.<br/>
@@ -6158,7 +6192,7 @@ interface IPlottingItem {
6158
6192
  prepareAfter(): void;
6159
6193
  collectValues(axis: IAxis, vals: number[]): void;
6160
6194
  collectRanges(vals: number[]): void;
6161
- pointValuesPrepared(axis: IAxis): void;
6195
+ prepareReferents(axis: IAxis): void;
6162
6196
  seriesChanged(): boolean;
6163
6197
  connectable(axis: IAxis): boolean;
6164
6198
  }
@@ -6183,6 +6217,7 @@ interface IPlottingItem {
6183
6217
  declare class Trendline extends ChartItem<TrendlineOptions> {
6184
6218
  series: Series;
6185
6219
  static defaults: TrendlineOptions;
6220
+ _polar: boolean;
6186
6221
  _points: {
6187
6222
  x: number;
6188
6223
  y: number;
@@ -6246,6 +6281,11 @@ interface ISeries extends IPlottingItem {
6246
6281
  followPointer(): boolean;
6247
6282
  isMarker(): boolean;
6248
6283
  }
6284
+ declare class DeleteAnimation extends RcAnimation {
6285
+ points: DataPointCollection;
6286
+ constructor(points: DataPointCollection);
6287
+ protected _doUpdate(rate: number): boolean;
6288
+ }
6249
6289
  /**
6250
6290
  * 차트 시리즈 모델들의 기반 클래스.<br/>
6251
6291
  * 시리즈는 {@page data}로 지정된 값들을 데이터포인트로 표시하는 차트의 핵심 구성 요소이며,
@@ -6304,6 +6344,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6304
6344
  * palette color indices
6305
6345
  */
6306
6346
  _paletteColors: number[];
6347
+ private _deleteAni;
6307
6348
  _labelPos: PointLabelPosition;
6308
6349
  _labelPosCallback: (p: DataPointCallbackArgs) => PointLabelPosition;
6309
6350
  _labelOff: number;
@@ -6415,6 +6456,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6415
6456
  initPoints(source: any[]): DataPoint[];
6416
6457
  private $_getXStart;
6417
6458
  private $_getXStep;
6459
+ protected _buildVisPoints(points: DataPoint[]): DataPoint[];
6460
+ protected _prepareRunPoints(xAxis: IAxis, yAxis: IAxis): void;
6461
+ protected _dataSourceChanged(): void;
6418
6462
  _prepareRender(): void;
6419
6463
  prepareAfter(): void;
6420
6464
  collectCategories(axis: IAxis): string[];
@@ -6431,8 +6475,8 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6431
6475
  max: number;
6432
6476
  };
6433
6477
  private $_prepareViewRanges;
6434
- pointValuesPrepared(axis: IAxis): void;
6435
- reference(other: Series, axis: IAxis): void;
6478
+ prepareReferents(axis: IAxis): void;
6479
+ refer(other: Series, axis: IAxis): void;
6436
6480
  getLegendSources(list: ILegendSource[]): void;
6437
6481
  getLabelPos(labels: DataPointLabel): PointLabelPosition;
6438
6482
  protected _getLabelAutoPos(labels: DataPointLabel, pos: PointLabelPosition): PointLabelPosition;
@@ -6467,6 +6511,10 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6467
6511
  * @returns prop로 지정한 데이터포인트 값.
6468
6512
  */
6469
6513
  getValueAt(xValue: any, prop?: string): number;
6514
+ /**
6515
+ * @private
6516
+ */
6517
+ _dataPointsChanged(): void;
6470
6518
  /**
6471
6519
  * 데이터포인터의 값들을 변경한다.<br/>
6472
6520
  * <b>p</b> 매개변수에 데이터포인트 대신 값을 지정하면,
@@ -6517,6 +6565,7 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6517
6565
  * @returns 실제 추가된 데이터포인트 객체 배열.
6518
6566
  */
6519
6567
  addPoints(source: any[]): DataPoint[];
6568
+ protected _needDeleteAnimation(): boolean;
6520
6569
  /**
6521
6570
  * 데이터포인트를 제거한다.<br/>
6522
6571
  * <b>p</b> 매개변수에 데이터포인트 대신 값을 지정하면,
@@ -6558,6 +6607,9 @@ declare abstract class Series<OP extends SeriesOptions = SeriesOptions> extends
6558
6607
  protected _setViewRange(p: DataPoint, axis: 'x' | 'y' | 'z'): void;
6559
6608
  _defViewRangeValue(): 'x' | 'y' | 'z';
6560
6609
  protected _canSort(): boolean;
6610
+ $_setDeleteAni(ani: DeleteAnimation): void;
6611
+ $_stopDeleteAni(ani: DeleteAnimation): void;
6612
+ isDeleting(): boolean;
6561
6613
  }
6562
6614
  type PlottingItem = Series | SeriesGroup;
6563
6615
  /**
@@ -6585,6 +6637,7 @@ declare class PlottingItemCollection extends ChartItemCollection<PlottingItem> {
6585
6637
  getSeries(name: string): Series;
6586
6638
  getVisibleSeries(): Series[];
6587
6639
  getPaneSeries(row: number, col: number): Series[];
6640
+ seriesByType(type: string): Series<SeriesOptions> | SeriesGroup<Series<SeriesOptions>, SeriesGroupOptions<SeriesOptions>>;
6588
6641
  seriesByPoint(point: DataPoint): Series;
6589
6642
  getLegendSources(): ILegendSource[];
6590
6643
  canPolar(): boolean;
@@ -6623,7 +6676,7 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
6623
6676
  }
6624
6677
  declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
6625
6678
  _calcedColor: string;
6626
- _legendMarker: RcElement;
6679
+ private _legendMarker;
6627
6680
  legendMarker(): RcElement;
6628
6681
  setLegendMarker(elt: RcElement): void;
6629
6682
  legendColor(): string;
@@ -6631,6 +6684,7 @@ declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
6631
6684
  styleLegendMarker(marker: RcElement): void;
6632
6685
  isEmpty(): boolean;
6633
6686
  initPrev(axis: IAxis, prev: any): void;
6687
+ getParam(param: string): any;
6634
6688
  }
6635
6689
  declare class WidgetSeriesConnector extends ChartItem<WidgetSeriesConnectorOptions> {
6636
6690
  static defaults: WidgetSeriesConnectorOptions;
@@ -6652,18 +6706,31 @@ declare abstract class WidgetSeriesLabel<OP extends WidgetSeriesLabelOptions = W
6652
6706
  getAlign(): number;
6653
6707
  protected _doApply(options: WidgetSeriesLabelOptions): void;
6654
6708
  }
6655
- declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = {}> extends Series<OP> {
6656
- static readonly CENTER = "50%";
6709
+ declare class OthersGroup extends ChartItem<OthersGroupOptions> {
6710
+ private static readonly DEF_COUNT;
6711
+ static defaults: OthersGroupOptions;
6712
+ private _minDim;
6713
+ private _save;
6714
+ private _dirty;
6715
+ calculate(points: DataPoint[]): DataPoint[];
6716
+ isDirty(): boolean;
6717
+ protected _doApply(options: OthersGroupOptions): void;
6718
+ }
6719
+ declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = WidgetSeriesOptions> extends Series<OP> {
6720
+ static readonly DEF_CENTER = "50%";
6657
6721
  static defaults: WidgetSeriesOptions;
6658
6722
  private _subLabel;
6659
6723
  private _centerX;
6660
6724
  private _centerY;
6661
6725
  private _centerXDim;
6662
6726
  private _centerYDim;
6727
+ private _othersGroup;
6728
+ private _groupedPoints;
6663
6729
  protected _doInitChildren(op: {
6664
6730
  [child: string]: ChartItemOptions;
6665
6731
  }): void;
6666
6732
  get subLabel(): WidgetSeriesLabel;
6733
+ get othersGroup(): OthersGroup;
6667
6734
  getCenter(plotWidth: number, plotHeight: number): Point;
6668
6735
  protected _getLabelAutoPos(labels: WidgetSeriesLabel, pos: PointLabelPosition): PointLabelPosition;
6669
6736
  needAxes(): boolean;
@@ -6673,6 +6740,10 @@ declare abstract class WidgetSeries<OP extends WidgetSeriesOptions = {}> extends
6673
6740
  protected _doApply(options: WidgetSeriesOptions): void;
6674
6741
  canMinPadding(axis: IAxis, min: number): boolean;
6675
6742
  canMaxPadding(axis: IAxis, max: number): boolean;
6743
+ protected _dataSourceChanged(): void;
6744
+ contains(p: DataPoint): boolean;
6745
+ protected _buildVisPoints(points: DataPoint[]): DataPoint[];
6746
+ protected abstract _createOthersPoint(source: any, points: WidgetSeriesPoint[]): WidgetSeriesPoint;
6676
6747
  }
6677
6748
  /**
6678
6749
  * 직교 좌표계가 표시된 경우, plot area 영역을 기준으로 size, centerX, centerY가 적용된다.<br/>
@@ -6770,7 +6841,7 @@ declare abstract class SeriesGroup<T extends Series = Series, OP extends SeriesG
6770
6841
  isLastVisible(series: ISeries): boolean;
6771
6842
  collectValues(axis: IAxis, vals: number[]): void;
6772
6843
  collectRanges(vals: number[]): void;
6773
- pointValuesPrepared(axis: IAxis): void;
6844
+ prepareReferents(axis: IAxis): void;
6774
6845
  collectCategories(axis: IAxis): string[];
6775
6846
  getLegendSources(list: ILegendSource[]): void;
6776
6847
  isBased(axis: IAxis): boolean;
@@ -6827,6 +6898,7 @@ declare abstract class MarkerSeries<OP extends MarkerSeriesOptions = MarkerSerie
6827
6898
  * //[x, y]
6828
6899
  */
6829
6900
  declare abstract class DataPoint {
6901
+ static getSum(points: DataPoint[]): number;
6830
6902
  /**
6831
6903
  * 인덱스
6832
6904
  */
@@ -6864,6 +6936,7 @@ declare abstract class DataPoint {
6864
6936
  yRate: number;
6865
6937
  /**
6866
6938
  * 표시 여부.
6939
+ * 감추려면 명시적인 false로 지정해야 한다.
6867
6940
  */
6868
6941
  visible: boolean;
6869
6942
  color: string;
@@ -6899,6 +6972,8 @@ declare abstract class DataPoint {
6899
6972
  getPointIcon(index: number): string;
6900
6973
  swap(): void;
6901
6974
  getParam(param: string): any;
6975
+ _setDeleted(): void;
6976
+ _isDeleted(): any;
6902
6977
  updateValues(series: ISeries, values: any): any;
6903
6978
  initValues(): void;
6904
6979
  /**
@@ -6926,6 +7001,7 @@ declare class DataPointCollection {
6926
7001
  protected _owner: ISeries;
6927
7002
  private _points;
6928
7003
  constructor(owner: ISeries);
7004
+ get owner(): ISeries;
6929
7005
  get count(): number;
6930
7006
  isEmpty(): boolean;
6931
7007
  get(index: number): DataPoint;
@@ -6935,10 +7011,14 @@ declare class DataPointCollection {
6935
7011
  clear(): void;
6936
7012
  add(p: DataPoint): void;
6937
7013
  remove(p: DataPoint): boolean;
7014
+ /**
7015
+ * 삭제 상태의 데이터포인트들을 제거한다.
7016
+ */
7017
+ clean(): void;
6938
7018
  getProps(prop: string | number): any[];
6939
7019
  getCategories(axis: string): any[];
6940
7020
  forEach(callback: (p: DataPoint, i?: number) => any): void;
6941
- getPoints(xAxis: IAxis, yAxis: IAxis): DataPoint[];
7021
+ getRunPoints(xAxis: IAxis, yAxis: IAxis): DataPoint[];
6942
7022
  }
6943
7023
  /**
6944
7024
  * @internal
@@ -7061,6 +7141,7 @@ interface IAxis {
7061
7141
  * 값에 따라 크기가 다를 수도 있다.
7062
7142
  */
7063
7143
  getUnitLen(length: number, value: number): number;
7144
+ polarOff(): number;
7064
7145
  value2Tooltip(value: number): any;
7065
7146
  hasBreak(): boolean;
7066
7147
  isBreak(pos: number): boolean;
@@ -7468,7 +7549,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
7468
7549
  getConnectableSeries(): ISeries[];
7469
7550
  collectValues(): void;
7470
7551
  collectRanges(): void;
7471
- collectReferentsValues(): void;
7552
+ collectReferentValues(): void;
7472
7553
  private $_checkEmpty;
7473
7554
  _prepare(): void;
7474
7555
  _prepareRender(): void;
@@ -7485,6 +7566,7 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
7485
7566
  */
7486
7567
  abstract getPos(length: number, value: number): number;
7487
7568
  abstract getUnitLen(length: number, value: number): number;
7569
+ polarOff(): number;
7488
7570
  getLabelLength(length: number, value: number): number;
7489
7571
  getValue(value: any): number;
7490
7572
  incStep(value: number, step: any): number;
@@ -7540,7 +7622,7 @@ declare class AxisCollection extends ChartItemCollection<Axis> {
7540
7622
  prepare(): void;
7541
7623
  collectValues(): void;
7542
7624
  collectRanges(): void;
7543
- collectReferentsValues(): void;
7625
+ collectReferentValues(): void;
7544
7626
  prepareRender(): void;
7545
7627
  afterRender(): void;
7546
7628
  /** @internal */
@@ -8480,6 +8562,7 @@ interface AxisOptions extends ChartItemOptions {
8480
8562
  */
8481
8563
  unit?: string;
8482
8564
  /**
8565
+ * @internal
8483
8566
  * 축에 포함된 시리즈들 툴팁의 위쪽에 표시되는 텍스트 템플릿.<br/>
8484
8567
  *
8485
8568
  * tooltipHeader
@@ -8493,12 +8576,14 @@ interface AxisOptions extends ChartItemOptions {
8493
8576
  */
8494
8577
  tooltipHeader?: string;
8495
8578
  /**
8579
+ * @internal
8496
8580
  * 축에 포함된 각 시리즈별 표시되는 포인트 툴팁 텍스트 템플릿.
8497
8581
  *
8498
8582
  * @default '${series}:<b> ${yValue}</b>'
8499
8583
  */
8500
8584
  tooltipRow?: string;
8501
8585
  /**
8586
+ * @internal
8502
8587
  * 축에 포함된 시리즈들 툴팁의 아래쪽에 표시되는 텍스트 템플릿.
8503
8588
  *
8504
8589
  */
@@ -10775,6 +10860,7 @@ interface IChart {
10775
10860
  isSplitted(): boolean;
10776
10861
  animatable(): boolean;
10777
10862
  loadAnimatable(): boolean;
10863
+ _needAxes(): boolean;
10778
10864
  seriesByName(series: string): Series;
10779
10865
  axisByName(axis: string): Axis;
10780
10866
  getAxes(dir: SectionDir, visibleOnly: boolean): Axis[];
@@ -10941,6 +11027,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
10941
11027
  isSplitted(): boolean;
10942
11028
  isEmpty(visibleOnly: boolean): boolean;
10943
11029
  seriesByName(series: string): Series;
11030
+ seriesByType(type: string): Series | SeriesGroup;
10944
11031
  seriesAt(index: number): Series | SeriesGroup;
10945
11032
  seriesByPoint(point: DataPoint): Series;
10946
11033
  gaugeByName(gauge: string): Gauge;
@@ -11090,13 +11177,22 @@ declare class AnnotationCollection extends ChartItemCollection<Annotation> {
11090
11177
  private $_loadItem;
11091
11178
  }
11092
11179
 
11180
+ /**
11181
+ * 차트 생성 이후 호출되는 콜백의 매개변수로 사용된다.
11182
+ */
11183
+ interface LoadCallbackArgs {
11184
+ /**
11185
+ * RealChart의 공개 {@page api.Chart} 모델
11186
+ */
11187
+ chart: Chart;
11188
+ }
11093
11189
  /**
11094
11190
  * RealChart의 공개 차트 모델.<br/>
11095
11191
  */
11096
11192
  declare class Chart {
11097
11193
  _obj: ChartObject;
11098
11194
  private _modelCallback;
11099
- _loadCallback: () => void;
11195
+ _loadCallback: (args: LoadCallbackArgs) => void;
11100
11196
  private _loaded;
11101
11197
  /**
11102
11198
  * @internal
@@ -11234,6 +11330,13 @@ declare class Chart {
11234
11330
  * @returns 시리즈 객체
11235
11331
  */
11236
11332
  getSeries(name: string | number): Series | SeriesGroup;
11333
+ /**
11334
+ * 지정한 type에 해당하는 첫번째 시리즈나 시리즈그룹 객체를 리턴한다.<br/>
11335
+ *
11336
+ * @param type 시리즈 타입
11337
+ * @returns 시리즈 객체
11338
+ */
11339
+ seriesByType(type: string): Series | SeriesGroup;
11237
11340
  /**
11238
11341
  * 게이지 이름에 해당하는 게이지 객체를 리턴한다.
11239
11342
  *
@@ -11255,7 +11358,7 @@ declare class Chart {
11255
11358
  *
11256
11359
  * @param config 차트 설정 정보
11257
11360
  */
11258
- load(config: ChartConfiguration, loadAnimation?: boolean, callback?: () => void): Chart;
11361
+ load(config: ChartConfiguration, loadAnimation?: boolean, callback?: (args: LoadCallbackArgs) => void): Chart;
11259
11362
  /**
11260
11363
  * {@page load}와 달리 기존 모델을 유지하면서 차트 설정 일부를 반영한다.<br/>
11261
11364
  *
@@ -11434,6 +11537,10 @@ declare class Globals {
11434
11537
  * @returns 버전 문자열
11435
11538
  */
11436
11539
  static getVersion(): string;
11540
+ /**
11541
+ * RealChart의 licenseKey를 등록한다.
11542
+ */
11543
+ static setLicenseKey(key: string): void;
11437
11544
  static setLocale(lang: string, config?: IRcLocale): void;
11438
11545
  static registerLocale(lang: string, config: IRcLocale): void;
11439
11546
  /**
@@ -11504,7 +11611,7 @@ declare class Globals {
11504
11611
  * @returns 생성된 차트 객체
11505
11612
  * @see {@link createData}
11506
11613
  */
11507
- static createChart(doc: Document, container: string | HTMLDivElement, config: ChartConfiguration, animate?: boolean, callback?: () => void): Chart;
11614
+ static createChart(doc: Document, container: string | HTMLDivElement, config: ChartConfiguration, animate?: boolean, callback?: (args: LoadCallbackArgs) => void): Chart;
11508
11615
  /**
11509
11616
  * 차트 시리즈에 연결할 수 있는 데이터.<br/>
11510
11617
  * 저장되는 행은 json, array 또는 단일값일 수 있다.
@@ -12617,6 +12724,7 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
12617
12724
  _type(): string;
12618
12725
  unitPad(): number;
12619
12726
  continuous(): boolean;
12727
+ polarOff(): number;
12620
12728
  protected _createGrid(): CategoryAxisGrid;
12621
12729
  protected _createTickModel(): CategoryAxisTick;
12622
12730
  protected _createLabel(): CategoryAxisLabel;
@@ -13001,7 +13109,7 @@ declare class BellCurveSeries extends AreaSeries<BellCurveSeriesOptions> {
13001
13109
  protected _createPoint(source: any): BellCurveSeriesPoint;
13002
13110
  protected _doLoadData(src: any): any[];
13003
13111
  _referOtherSeries(series: Series): boolean;
13004
- reference(other: Series, axis: IAxis): void;
13112
+ refer(other: Series, axis: IAxis): void;
13005
13113
  private _loadTable;
13006
13114
  }
13007
13115
 
@@ -13195,7 +13303,7 @@ declare class DumbbellSeries extends LowRangedSeries<DumbbellSeriesOptions> {
13195
13303
  pointLabelCount(): number;
13196
13304
  getLabelOff(off: number): number;
13197
13305
  protected _createPoint(source: any): DataPoint;
13198
- protected _doPrepareRender(): void;
13306
+ prepareAfter(): void;
13199
13307
  }
13200
13308
 
13201
13309
  /**
@@ -13230,6 +13338,9 @@ declare class ErrorBarSeries extends LowRangedSeries<ErrorBarSeriesOptions> {
13230
13338
  protected _getBottomValue(p: RangedPoint): number;
13231
13339
  }
13232
13340
 
13341
+ declare class FunnelSeriesPoint extends WidgetSeriesPoint {
13342
+ height: number;
13343
+ }
13233
13344
  declare class FunnelSeriesLabel extends WidgetSeriesLabel<FunnelSeriesLabelOptions> {
13234
13345
  static readonly OUTSIDE_DIST = 25;
13235
13346
  static readonly ENDED_DIST = 10;
@@ -13256,6 +13367,7 @@ declare class FunnelSeries extends WidgetSeries<FunnelSeriesOptions> {
13256
13367
  get pointLabel(): FunnelSeriesLabel;
13257
13368
  protected _createLabel(chart: IChart): FunnelSeriesLabel;
13258
13369
  protected _createPoint(source: any): DataPoint;
13370
+ protected _createOthersPoint(source: any, points: FunnelSeriesPoint[]): FunnelSeriesPoint;
13259
13371
  protected _doApply(options: FunnelSeriesOptions): void;
13260
13372
  }
13261
13373
 
@@ -13297,7 +13409,7 @@ declare class LollipopSeries extends BasedSeries<LollipopSeriesOptions> {
13297
13409
  canCategorized(): boolean;
13298
13410
  getLabelOff(off: number): number;
13299
13411
  protected _createPoint(source: any): DataPoint;
13300
- protected _doPrepareRender(): void;
13412
+ prepareAfter(): void;
13301
13413
  }
13302
13414
 
13303
13415
  /**
@@ -13324,7 +13436,7 @@ declare class ParetoSeries extends LineSeriesBase<ParetoSeriesOptions> {
13324
13436
  getLineType(): LineType;
13325
13437
  protected _createPoint(source: any): ParetoSeriesPoint;
13326
13438
  _referOtherSeries(series: Series): boolean;
13327
- reference(other: Series, axis: IAxis): void;
13439
+ refer(other: Series, axis: IAxis): void;
13328
13440
  }
13329
13441
 
13330
13442
  /**
@@ -13380,6 +13492,7 @@ declare class PieSeries extends RadialSeries<PieSeriesOptions> {
13380
13492
  get pointLabel(): PieSeriesLabel;
13381
13493
  protected _createLabel(chart: IChart): PieSeriesLabel;
13382
13494
  protected _createPoint(source: any): PieSeriesPoint;
13495
+ protected _createOthersPoint(source: any, points: PieSeriesPoint[]): PieSeriesPoint;
13383
13496
  protected _doApply(options: PieSeriesOptions): void;
13384
13497
  protected _doPrepareRender(): void;
13385
13498
  }
@@ -13457,7 +13570,7 @@ declare class WaterfallSeries extends RangedSeries<WaterfallSeriesOptions> {
13457
13570
  protected _createLabel(chart: IChart): DataPointLabel;
13458
13571
  protected _createPoint(source: any): DataPoint;
13459
13572
  protected _createLegendMarker(doc: Document, size: number): RcElement;
13460
- protected _doPrepareRender(): void;
13573
+ _doPrepareRender(): void;
13461
13574
  protected _getBottomValue(p: WaterfallSeriesPoint): number;
13462
13575
  }
13463
13576
 
@@ -13797,5 +13910,6 @@ declare const setAnimatable: typeof Globals.setAnimatable;
13797
13910
  declare const configure: typeof Globals.configure;
13798
13911
  declare const createChart: typeof Globals.createChart;
13799
13912
  declare const createData: typeof Globals.createData;
13913
+ declare const setLicenseKey: typeof Globals.setLicenseKey;
13800
13914
 
13801
- 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 };
13915
+ 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, LoadCallbackArgs, LogAxis, LogAxisOptions, LogAxisTickOptions, LollipopSeries, LollipopSeriesMarkerOptions, LollipopSeriesOptions, LowRangedSeries, LowRangedSeriesOptions, MarkerSeries, MarkerSeriesOptions, MarkerSeriesPointView, MarkerSeriesView, NavigatorMask, NavigiatorHandle, NavigiatorHandleOptions, NavigiatorMaskOptions, ORG_ANGLE, OhlcSeries, OhlcSeriesOptions, OthersGroup, OthersGroupOptions, 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, setLicenseKey, setLogging, sin, toStr };