realchart 1.3.14 → 1.3.15

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.14
3
+ * RealChart Gauge v1.3.15
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.14
3
+ * RealChart Gauge v1.3.15
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.14
3
+ * RealChart Heatmap v1.3.15
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.14
3
+ * RealChart Heatmap v1.3.15
4
4
  * Copyright (C) 2023-2025 WooriTech Inc.
5
5
  * All Rights Reserved.
6
6
  */
package/index.d.ts CHANGED
@@ -2259,18 +2259,16 @@ interface SeriesMarkerOptions extends ChartItemOptions {
2259
2259
  */
2260
2260
  interface MarkerSeriesOptions extends ConnectableSeriesOptions {
2261
2261
  /**
2262
- * 명시적으로 지정하지 않으면 typeIndex에 따라 Shapes 중 하나로 돌아가면서 설정된다.
2263
- *
2262
+ * 명시적으로 지정하지 않으면 typeIndex에 따라 Shapes 중 하나로 돌아가면서 설정된다.<br/>
2263
+ * 'none'으로 지정하면 그리지 않는다.
2264
2264
  */
2265
2265
  shape?: Shape;
2266
2266
  /**
2267
2267
  * 데이터포인트 {@page shape 도형} 회전 각도.<br/>
2268
- *
2269
2268
  */
2270
2269
  rotation?: number;
2271
2270
  /**
2272
2271
  * 데이터포인트 별로 다른 색상으로 그린다.<br/>
2273
- *
2274
2272
  */
2275
2273
  colorByPoint?: boolean;
2276
2274
  /**
@@ -2443,7 +2441,7 @@ interface WidgetSeriesLabelOptions extends DataPointLabelOptions {
2443
2441
  *
2444
2442
  * @default true
2445
2443
  */
2446
- convergable?: boolean;
2444
+ convergent?: boolean;
2447
2445
  /**
2448
2446
  * label과 pie 본체와의 기본 간격.<br/>
2449
2447
  */
@@ -4578,13 +4576,13 @@ interface SubtitleOptions extends TitleOptions {
4578
4576
  *
4579
4577
  * ```js
4580
4578
  * const config = {
4581
- * options: {
4579
+ * chart: {
4582
4580
  * theme: 'dark',
4583
4581
  * },
4584
4582
  * };
4585
4583
  * ```
4586
4584
  *
4587
- * @config chart.options
4585
+ * @config chart.chart
4588
4586
  */
4589
4587
  interface ChartOptionsOptions extends ChartItemOptions {
4590
4588
  /**
@@ -4642,7 +4640,7 @@ interface ChartOptionsOptions extends ChartItemOptions {
4642
4640
  */
4643
4641
  xStart?: number;
4644
4642
  /**
4645
- * x축 값이 설정되지 않은 데이터 point에 지정되는 x값의 간격.\
4643
+ * x축 값이 설정되지 않은 데이터 point에 지정되는 x값의 간격.<br/>
4646
4644
  * 첫번째 값은 {@page xStart}로 설정한다.
4647
4645
  * time 축일 때, 정수 값 대신 시간 단위('y', 'm', 'd', 'h', 'n', 's')로 지정할 수 있다.
4648
4646
  * 시리즈의 {@page Series.xStep}이 설정되면 그 값이 사용된다.
@@ -4651,18 +4649,19 @@ interface ChartOptionsOptions extends ChartItemOptions {
4651
4649
  */
4652
4650
  xStep?: number | string;
4653
4651
  /**
4654
- * 복수 axis가 표시되는 경우 axis 사이의 간격
4652
+ * 복수 axis가 표시되는 경우 axis 사이의 간격.<br/>
4655
4653
  *
4656
4654
  * @default 8
4657
4655
  */
4658
4656
  axisGap?: number;
4659
4657
  /**
4660
- * 크레딧 모델.
4658
+ * @deprecated v1.3.15 이후로, {@page config.credits}으로 대신 설정한다.
4661
4659
  *
4660
+ * 크레딧 모델.<br/>
4662
4661
  */
4663
- credits?: CreditsOptions;
4662
+ credits?: CreditsOptions | boolean;
4664
4663
  /**
4665
- * 데이터포인트에 마우스가 올라가면 나머지 시리즈들을 반투명 처리해서 연결된 데이터포인터의 시리즈를 강조한다.
4664
+ * 데이터포인트에 마우스가 올라가면 나머지 시리즈들을 반투명 처리해서 연결된 데이터포인터의 시리즈를 강조한다.<br/>
4666
4665
  *
4667
4666
  * @default false
4668
4667
  */
@@ -5802,6 +5801,19 @@ declare abstract class RcAnimation {
5802
5801
  protected abstract _doUpdate(rate: number): boolean;
5803
5802
  }
5804
5803
 
5804
+ /**
5805
+ * legend 아이템들이 클릭 될 때 호출되는 콜백의 매개변수로 사용된다.
5806
+ */
5807
+ interface LegendItemCallbackArgs {
5808
+ /**
5809
+ * RealChart의 공개 {@page api.Chart} 모델
5810
+ */
5811
+ chart: object;
5812
+ /**
5813
+ * legend 아이템에 연결된 시리즈 또는 데이터 포인트
5814
+ */
5815
+ source: object;
5816
+ }
5805
5817
  /**
5806
5818
  * @enum
5807
5819
  */
@@ -6020,6 +6032,11 @@ interface LegendOptions extends ChartItemOptions {
6020
6032
  * @default true
6021
6033
  */
6022
6034
  pointHovering?: boolean;
6035
+ /**
6036
+ * legend 아이템이 클릭 될 때 호출되는 이벤트 콜백<br/>
6037
+ * 리턴 값이 false일 경우 아이템에 연결된 시리즈나 데이터 포인트의 visible 값이 변경되지 않는다.
6038
+ */
6039
+ onLegendItemClick?: (args: LegendItemCallbackArgs) => boolean | undefined;
6023
6040
  }
6024
6041
 
6025
6042
  /**
@@ -6658,6 +6675,7 @@ declare abstract class SeriesMarker<OP extends SeriesMarkerOptions = {}> extends
6658
6675
  private _args;
6659
6676
  constructor(series: Series);
6660
6677
  getMarkerStyle(p: DataPoint): any;
6678
+ protected _doSetSimple(src: any): boolean;
6661
6679
  }
6662
6680
  declare class WidgetSeriesPoint extends DataPoint implements ILegendSource {
6663
6681
  _calcedColor: string;
@@ -7105,7 +7123,7 @@ interface IAxis {
7105
7123
  axisMax(): number;
7106
7124
  axisMin(): number;
7107
7125
  length(): number;
7108
- zoom(start: number, end: number): boolean;
7126
+ zoom(start: number, end: number, minSize: number): boolean;
7109
7127
  /**
7110
7128
  * data point의 값을 축 상의 값으로 리턴한다.
7111
7129
  */
@@ -7353,7 +7371,7 @@ interface IAxisZoom {
7353
7371
  start: number;
7354
7372
  end: number;
7355
7373
  }
7356
- declare class AxisZoom {
7374
+ declare class AxisZoom implements IAxisZoom {
7357
7375
  axis: Axis;
7358
7376
  min: number;
7359
7377
  max: number;
@@ -7363,6 +7381,7 @@ declare class AxisZoom {
7363
7381
  total(): number;
7364
7382
  length(): number;
7365
7383
  isFull(): boolean;
7384
+ clamp(value: number, continuous?: boolean): number;
7366
7385
  resize(start: number, end: number, minSize: number): boolean;
7367
7386
  }
7368
7387
  /**
@@ -7525,7 +7544,23 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
7525
7544
  protected abstract _createTickModel(): AxisTick;
7526
7545
  protected abstract _createLabel(): AxisLabel;
7527
7546
  protected abstract _doPrepareRender(): void;
7547
+ /**
7548
+ *
7549
+ * @param min
7550
+ * @param max
7551
+ * @param length 축의 갯수.
7552
+ */
7528
7553
  protected abstract _doBuildTicks(min: number, max: number, length: number): IAxisTick[];
7554
+ /**
7555
+ *
7556
+ * @param min
7557
+ * @param max
7558
+ * @param length 축의 갯수.
7559
+ */
7560
+ protected abstract _adjustMinMax(min: number, max: number, length: number): {
7561
+ min: number;
7562
+ max: number;
7563
+ };
7529
7564
  value2Tooltip(value: number): any;
7530
7565
  isBased(): boolean;
7531
7566
  isBaseVisible(): boolean;
@@ -7539,6 +7574,10 @@ declare abstract class Axis<OP extends AxisOptions = AxisOptions> extends ChartI
7539
7574
  _prepare(): void;
7540
7575
  _prepareRender(): void;
7541
7576
  afterRender(): void;
7577
+ /**
7578
+ *
7579
+ * @param length 축의 갯수.
7580
+ */
7542
7581
  _buildTicks(length: number): void;
7543
7582
  _calcPoints(length: number, phase: number): void;
7544
7583
  /**
@@ -8647,7 +8686,7 @@ interface CategoryAxisOptions extends AxisOptions {
8647
8686
  /**
8648
8687
  * @override
8649
8688
  */
8650
- tick?: CategoryAxisTickOptions;
8689
+ tick?: CategoryAxisTickOptions | boolean;
8651
8690
  /**
8652
8691
  * Category 목록을 수집하는 시리즈.<br/>
8653
8692
  * 지정하지 않으면 모든 시리즈에서 카테고리를 수집한다.
@@ -8882,11 +8921,11 @@ interface ContinuousAxisOptions extends AxisOptions {
8882
8921
  /**
8883
8922
  * @override
8884
8923
  */
8885
- tick?: ContinuousAxisTickOptions;
8924
+ tick?: ContinuousAxisTickOptions | boolean;
8886
8925
  /**
8887
8926
  * @override
8888
8927
  */
8889
- grid?: ContinuousAxisGridOptions;
8928
+ grid?: ContinuousAxisGridOptions | boolean;
8890
8929
  /**
8891
8930
  * @override
8892
8931
  */
@@ -8920,7 +8959,7 @@ interface LinearAxisOptions extends ContinuousAxisOptions {
8920
8959
  /**
8921
8960
  * @override
8922
8961
  */
8923
- label?: LinearAxisLabelOptions;
8962
+ label?: LinearAxisLabelOptions | boolean;
8924
8963
  }
8925
8964
  /**
8926
8965
  * Log축 틱 설정 모델.<br/>
@@ -8948,7 +8987,7 @@ interface LogAxisOptions extends ContinuousAxisOptions {
8948
8987
  /**
8949
8988
  * @override
8950
8989
  */
8951
- tick?: LogAxisTickOptions;
8990
+ tick?: LogAxisTickOptions | boolean;
8952
8991
  }
8953
8992
  /**
8954
8993
  * 시간축 label 설정 모델.<br/>
@@ -8987,7 +9026,7 @@ interface TimeAxisTickOptions extends ContinuousAxisTickOptions {
8987
9026
  /**
8988
9027
  * @override
8989
9028
  */
8990
- label?: TimeAxisLabelOptions;
9029
+ label?: TimeAxisLabelOptions | boolean;
8991
9030
  }
8992
9031
  declare const TimeAxisType = "time";
8993
9032
  /**
@@ -9003,7 +9042,7 @@ interface TimeAxisOptions extends ContinuousAxisOptions {
9003
9042
  /**
9004
9043
  * @override
9005
9044
  */
9006
- label?: TimeAxisLabelOptions;
9045
+ label?: TimeAxisLabelOptions | boolean;
9007
9046
  /**
9008
9047
  * @override
9009
9048
  * @default NaN
@@ -9012,7 +9051,7 @@ interface TimeAxisOptions extends ContinuousAxisOptions {
9012
9051
  /**
9013
9052
  * @override
9014
9053
  */
9015
- tick?: TimeAxisTickOptions;
9054
+ tick?: TimeAxisTickOptions | boolean;
9016
9055
  }
9017
9056
  /** @dummy */
9018
9057
  type AxisOptionsType = CategoryAxisOptions | LinearAxisOptions | LogAxisOptions | TimeAxisOptions;
@@ -10227,6 +10266,12 @@ interface ChartConfiguration {
10227
10266
  /**
10228
10267
  * 차트 전체에 영향을 미치는 옵션들.<br/>
10229
10268
  */
10269
+ chart?: ChartOptionsOptions;
10270
+ /**
10271
+ * @deprecated v1.3.15 이후로, {@page config.chart}로 대신 설정한다.
10272
+ *
10273
+ * 차트 전체에 영향을 미치는 옵션들.<br/>
10274
+ */
10230
10275
  options?: ChartOptionsOptions;
10231
10276
  /**
10232
10277
  * Asset 목록.<br/>
@@ -10236,7 +10281,7 @@ interface ChartConfiguration {
10236
10281
  /**
10237
10282
  * 차트 타이틀.<br/>
10238
10283
  */
10239
- title?: TitleOptions | string;
10284
+ title?: TitleOptions | string | boolean;
10240
10285
  /**
10241
10286
  * 차트 제목 주위에 표시되는 부제목.<br/>
10242
10287
  */
@@ -10246,6 +10291,10 @@ interface ChartConfiguration {
10246
10291
  * 시리즈나 데이터포인트 등의 이름과 심볼을 같이 표시할 수 있다.
10247
10292
  */
10248
10293
  legend?: LegendOptions | boolean;
10294
+ /**
10295
+ * 크레딧 설정 옵션.<br/>
10296
+ */
10297
+ credits?: CreditsOptions | boolean;
10249
10298
  /**
10250
10299
  * 데이터포인트 뷰에 마우스가 올라가면 표시되는 툴팁 상자.<br/>
10251
10300
  * {@page guide.tooltip 툴팁 개요} 페이지를 참조한다.
@@ -10881,6 +10930,7 @@ interface IChart {
10881
10930
  declare class Credits extends ChartItem<CreditsOptions> {
10882
10931
  static defaults: CreditsOptions;
10883
10932
  isFloating(): boolean;
10933
+ protected _doSetSimple(src: any): boolean;
10884
10934
  }
10885
10935
  /**
10886
10936
  * 데이터포인트에 마우수가 올라갈 때 처리하는 방식 설정 모델.<br/>
@@ -10894,16 +10944,11 @@ declare class PointHovering extends ChartItem<PointHoveringOptions> {
10894
10944
  * 차트 전역 설정 모델.
10895
10945
  */
10896
10946
  declare class ChartOptions extends ChartItem<ChartOptionsOptions> {
10897
- private _credits;
10898
10947
  private _pointHovering;
10899
10948
  static defaults: ChartOptionsOptions;
10900
10949
  protected _doInitChildren(op: {
10901
10950
  [child: string]: ChartItemOptions;
10902
10951
  }): void;
10903
- /**
10904
- * 크레딧 모델.
10905
- */
10906
- get credits(): Credits;
10907
10952
  /**
10908
10953
  * 데이터포인트에 마우수가 올라갈 때 처리하는 방식.<br/>
10909
10954
  */
@@ -10948,6 +10993,7 @@ declare class ChartObject extends EventProvider<IChartEventListener> implements
10948
10993
  _title: Title<TitleOptions>;
10949
10994
  _subtitle: Subtitle;
10950
10995
  _legend: Legend;
10996
+ _credits: Credits;
10951
10997
  _tooltip: Tooltip;
10952
10998
  private _series;
10953
10999
  private _xAxes;
@@ -11257,44 +11303,48 @@ declare class Chart {
11257
11303
  */
11258
11304
  get series(): Series;
11259
11305
  /**
11260
- * 첫번째 게이지.
11306
+ * 첫번째 게이지.<br/>
11261
11307
  */
11262
11308
  get gauge(): Gauge;
11263
11309
  /**
11264
- * 차트 범례 모델.
11310
+ * 차트 범례 모델.<br/>
11265
11311
  */
11266
11312
  get legend(): Legend;
11267
11313
  /**
11268
- * 툴팁 모델.
11314
+ * 크레딧 모델.<br/>
11315
+ */
11316
+ get credits(): Credits;
11317
+ /**
11318
+ * 툴팁 모델.<br/>
11269
11319
  */
11270
11320
  get tooltip(): Tooltip;
11271
11321
  /**
11272
- * 첫번째 x 축.
11322
+ * 첫번째 x 축.<br/>
11273
11323
  */
11274
11324
  get xAxis(): Axis;
11275
11325
  /**
11276
- * 첫번째 y 축.
11326
+ * 첫번째 y 축.<br/>
11277
11327
  */
11278
11328
  get yAxis(): Axis;
11279
11329
  /**
11280
- * 차트 시리즈, 게이지, annotation들이 그려지는 plotting 영역 모델.
11330
+ * 차트 시리즈, 게이지, annotation들이 그려지는 plotting 영역 모델.<br/>
11281
11331
  */
11282
11332
  get body(): Body;
11283
11333
  /**
11284
- * Split 설정 모델.
11334
+ * Split 설정 모델.<br/>
11285
11335
  */
11286
11336
  get split(): ISplit | undefined;
11287
11337
  /**
11288
- * 시리즈 내비게이터 모델.
11338
+ * 시리즈 내비게이터 모델.<br/>
11289
11339
  */
11290
11340
  get seriesNavigator(): SeriesNavigator;
11291
11341
  /**
11292
- * 차트 내보내기 관련 설정 모델.
11342
+ * 차트 내보내기 관련 설정 모델.<br/>
11293
11343
  */
11294
11344
  get exporter(): Exporter;
11295
11345
  /**
11296
11346
  * name 매개변수가 문자열이면 지정한 이름의 x 축을,
11297
- * 숫자이면 해당 index에 위치하는 x 축을 리턴한다.
11347
+ * 숫자이면 해당 index에 위치하는 x 축을 리턴한다.<br/>
11298
11348
  *
11299
11349
  * @param name 이름이나 index
11300
11350
  * @returns 축 객체
@@ -11302,14 +11352,14 @@ declare class Chart {
11302
11352
  getXAxis(name: string | number): Axis;
11303
11353
  /**
11304
11354
  * name 매개변수가 문자열이면 지정한 이름의 y 축을,
11305
- * 숫자이면 해당 index에 위치하는 y 축을 리턴한다.
11355
+ * 숫자이면 해당 index에 위치하는 y 축을 리턴한다.<br/>
11306
11356
  *
11307
11357
  * @param name 이름이나 index
11308
11358
  * @returns 축 객체
11309
11359
  */
11310
11360
  getYAxis(name: string | number): Axis;
11311
11361
  /**
11312
- * 시리즈 이름에 해당하는 시리즈 객체를 리턴한다.
11362
+ * 시리즈 이름에 해당하는 시리즈 객체를 리턴한다.<br/>
11313
11363
  *
11314
11364
  * @param name 시리즈 이름
11315
11365
  * @returns 시리즈 객체
@@ -11323,14 +11373,14 @@ declare class Chart {
11323
11373
  */
11324
11374
  seriesByType(type: string): Series | SeriesGroup;
11325
11375
  /**
11326
- * 게이지 이름에 해당하는 게이지 객체를 리턴한다.
11376
+ * 게이지 이름에 해당하는 게이지 객체를 리턴한다.<br/>
11327
11377
  *
11328
11378
  * @param name 게이지 이름
11329
11379
  * @returns 게이지 객체
11330
11380
  */
11331
11381
  getGauge(name: string | number): GaugeBase;
11332
11382
  /**
11333
- * Annotation 이름에 해당하는 Annotation 객체를 리턴한다.
11383
+ * Annotation 이름에 해당하는 Annotation 객체를 리턴한다.<br/>
11334
11384
  *
11335
11385
  * @param name Annotation 이름
11336
11386
  * @returns Annotation 객체
@@ -11352,7 +11402,7 @@ declare class Chart {
11352
11402
  */
11353
11403
  updateOptions(options: ChartConfiguration, render?: boolean): void;
11354
11404
  /**
11355
- * 현재 표시 중인 차트를 PNG, JPG 또는 SVG 벡터 이미지로 다운로드한다.
11405
+ * 현재 표시 중인 차트를 PNG, JPG 또는 SVG 벡터 이미지로 다운로드한다.<br/>
11356
11406
  *
11357
11407
  * ```js
11358
11408
  * chart.export({
@@ -11376,7 +11426,7 @@ declare class Chart {
11376
11426
  */
11377
11427
  setParam(param: string, value: any, redraw?: boolean): void;
11378
11428
  /**
11379
- * 시리즈를 추가한다.
11429
+ * 시리즈를 추가한다.<br/>
11380
11430
  *
11381
11431
  * @param source 시리즈 설정 json.
11382
11432
  * @param animate 애니메이션 실행 여부.
@@ -11384,7 +11434,7 @@ declare class Chart {
11384
11434
  */
11385
11435
  addSeries(source: any, animate?: boolean): Series;
11386
11436
  /**
11387
- * 기존 시리즈를 제거한다.
11437
+ * 기존 시리즈를 제거한다.<br/>
11388
11438
  *
11389
11439
  * @param series 시리즈 이름이나 시리즈 객체.
11390
11440
  * @param animate 애니메이션 실행 여부.
@@ -11899,7 +11949,7 @@ declare abstract class ContinuousAxis<OP extends ContinuousAxisOptions = Continu
11899
11949
  getLabelLength(length: number, value: number): number;
11900
11950
  private _getStartFit;
11901
11951
  private _getEndFit;
11902
- protected _adjustMinMax(length: number, min: number, max: number): {
11952
+ protected _adjustMinMax(min: number, max: number, length: number): {
11903
11953
  min: number;
11904
11954
  max: number;
11905
11955
  };
@@ -11933,7 +11983,7 @@ declare class LinearAxis extends ContinuousAxis<LinearAxisOptions> {
11933
11983
  */
11934
11984
  get label(): LinearAxisLabel;
11935
11985
  protected _createLabel(): ContinuousAxisLabel;
11936
- protected _adjustMinMax(length: number, min: number, max: number): {
11986
+ protected _adjustMinMax(min: number, max: number, length: number): {
11937
11987
  min: number;
11938
11988
  max: number;
11939
11989
  };
@@ -12108,7 +12158,19 @@ declare class PointLabelContainer extends LayerElement {
12108
12158
  removePoint(p: DataPoint, delay: number): void;
12109
12159
  private $_checkIntersects;
12110
12160
  dedupe(views: PointLabelView[], lines: PointLabelLineContainer, mode: PointLabelDedupeMode): void;
12111
- arrangeVertical(views: PointLabelView[], lines: PointLabelLineContainer, height: number, converge: boolean, dedupeMode: PointLabelDedupeMode, overflow: PointLabelOverflow): 0 | 1;
12161
+ /**
12162
+ * for pie, funnel
12163
+ * 라벨 정렬. 라벨이 겹치치 않도록 중앙과 가까운 라벨을 기준으로 밀어낸다.
12164
+ * @param owner
12165
+ * @param views
12166
+ * @param lines
12167
+ * @param _height
12168
+ * @param convergent
12169
+ * @param _dedupeMode
12170
+ * @param overflow
12171
+ * @returns
12172
+ */
12173
+ arrangeVertical(owner: SeriesView<Series>, views: PointLabelView[], lines: PointLabelLineContainer, _height: number, convergent: boolean, _dedupeMode: PointLabelDedupeMode, overflow: PointLabelOverflow): number;
12112
12174
  }
12113
12175
  declare class PointLabelLineView extends GroupElement {
12114
12176
  point: DataPoint;
@@ -12700,22 +12762,27 @@ declare class CategoryAxis extends Axis<CategoryAxisOptions> {
12700
12762
  private _map;
12701
12763
  private _catPad;
12702
12764
  private _catMin;
12765
+ private _catMax;
12703
12766
  private _catLen;
12704
12767
  _pts: number[];
12705
12768
  _tstep: number;
12706
12769
  get tick(): CategoryAxisTick;
12707
12770
  xValueAt(pos: number): number;
12708
- getWdith(length: number, category: number): number;
12709
12771
  _type(): string;
12710
12772
  unitPad(): number;
12711
12773
  continuous(): boolean;
12712
12774
  polarOff(): number;
12775
+ _prepareZoom(): AxisZoom;
12713
12776
  protected _createGrid(): CategoryAxisGrid;
12714
12777
  protected _createTickModel(): CategoryAxisTick;
12715
12778
  protected _createLabel(): CategoryAxisLabel;
12716
12779
  collectValues(): void;
12717
12780
  getStartAngle(): number;
12718
12781
  protected _doPrepareRender(): void;
12782
+ protected _adjustMinMax(min: number, max: number, length: number): {
12783
+ min: number;
12784
+ max: number;
12785
+ };
12719
12786
  protected _doBuildTicks(min: number, max: number, length: number): IAxisTick[];
12720
12787
  _calcPoints(length: number, phase: number): void;
12721
12788
  getPos(length: number, value: number): number;