@wcardinal/wcardinal-ui 0.292.0 → 0.294.0
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/types/wcardinal/ui/d-chart-axis-bar.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base-bar.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base-options-parser.d.ts +6 -12
- package/dist/types/wcardinal/ui/d-chart-axis-base-options.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base-tick-container.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base-tick-major-gridline.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base-tick-major.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base-tick-minor.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-base.d.ts +5 -1
- package/dist/types/wcardinal/ui/d-chart-axis-tick-container.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-tick-major-gridline.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-tick-major.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-tick-minor.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-x-datetime.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-x.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis-y.d.ts +1 -1
- package/dist/types/wcardinal/ui/d-chart-axis.d.ts +3 -1
- package/dist/types/wcardinal/ui/d-chart-series-base.d.ts +1 -0
- package/dist/types/wcardinal/ui/d-chart-series-container-impl.d.ts +1 -0
- package/dist/types/wcardinal/ui/d-chart-series-line-of-any.d.ts +3 -1
- package/dist/types/wcardinal/ui/d-chart-series-line.d.ts +3 -1
- package/dist/types/wcardinal/ui/d-chart-series-linear.d.ts +3 -1
- package/dist/types/wcardinal/ui/d-chart-series.d.ts +1 -0
- package/dist/wcardinal/ui/d-chart-axis-bar.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-bar.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-options-parser.js +10 -52
- package/dist/wcardinal/ui/d-chart-axis-base-options-parser.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-options.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-tick-container.js +4 -4
- package/dist/wcardinal/ui/d-chart-axis-base-tick-container.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-tick-major-gridline.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-tick-major.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base-tick-minor.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-base.js +23 -7
- package/dist/wcardinal/ui/d-chart-axis-base.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-tick-container.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-tick-major-gridline.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-tick-major.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-tick-minor.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-x-datetime.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-x.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis-y.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-axis.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-plot-area-impl.js +2 -4
- package/dist/wcardinal/ui/d-chart-plot-area-impl.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-series-base.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-series-container-impl.js +10 -0
- package/dist/wcardinal/ui/d-chart-series-container-impl.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-series-line-of-any.js +15 -4
- package/dist/wcardinal/ui/d-chart-series-line-of-any.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-series-line.js +15 -4
- package/dist/wcardinal/ui/d-chart-series-line.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-series-linear.js +15 -4
- package/dist/wcardinal/ui/d-chart-series-linear.js.map +1 -1
- package/dist/wcardinal/ui/d-chart-series.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark.js +1 -1
- package/dist/wcardinal-ui-theme-dark.min.js +1 -1
- package/dist/wcardinal-ui-theme-white.js +1 -1
- package/dist/wcardinal-ui-theme-white.min.js +1 -1
- package/dist/wcardinal-ui.cjs.js +95 -80
- package/dist/wcardinal-ui.js +95 -80
- package/dist/wcardinal-ui.min.js +2 -2
- package/dist/wcardinal-ui.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DBase } from "./d-base";
|
|
2
2
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
3
3
|
import { EShape } from "./shape/e-shape";
|
|
4
|
-
export interface DChartAxisBar<CHART extends DBase> {
|
|
4
|
+
export interface DChartAxisBar<CHART extends DBase = DBase> {
|
|
5
5
|
readonly shape: EShape;
|
|
6
6
|
bind(container: DChartAxisContainer<CHART>, index: number): void;
|
|
7
7
|
unbind(): void;
|
|
@@ -4,7 +4,7 @@ import { DChartAxisBaseOptionParser } from "./d-chart-axis-base-options-parser";
|
|
|
4
4
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
5
5
|
import { EShape } from "./shape/e-shape";
|
|
6
6
|
import { EShapeBarPosition } from "./shape/variant/e-shape-bar-position";
|
|
7
|
-
export declare class DChartAxisBaseBar<CHART extends DBase> implements DChartAxisBar<CHART> {
|
|
7
|
+
export declare class DChartAxisBaseBar<CHART extends DBase = DBase> implements DChartAxisBar<CHART> {
|
|
8
8
|
protected _parser: DChartAxisBaseOptionParser;
|
|
9
9
|
protected _container?: DChartAxisContainer<CHART>;
|
|
10
10
|
protected _index: number;
|
|
@@ -73,19 +73,13 @@ export interface DChartAxisBaseOptionParserBar {
|
|
|
73
73
|
stroke?: Partial<EShapeStrokeLike>;
|
|
74
74
|
}
|
|
75
75
|
export declare class DChartAxisBaseOptionParser<THEME extends DThemeChartAxisBase = DThemeChartAxisBase, OPTIONS extends DChartAxisBaseOptions<THEME> = DChartAxisBaseOptions<THEME>> {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
76
|
+
coordinate: number;
|
|
77
|
+
position: DChartAxisPosition;
|
|
78
|
+
tick: DChartAxisBaseOptionParserTick;
|
|
79
|
+
label: DeepPartial<EShapeTextLike> | undefined;
|
|
80
|
+
padding: number;
|
|
81
|
+
bar: DChartAxisBaseOptionParserBar;
|
|
82
82
|
constructor(theme: THEME, options?: OPTIONS);
|
|
83
|
-
get coordinateIndex(): number;
|
|
84
|
-
get padding(): number;
|
|
85
|
-
get position(): DChartAxisPosition;
|
|
86
|
-
get bar(): DChartAxisBaseOptionParserBar;
|
|
87
|
-
get tick(): DChartAxisBaseOptionParserTick;
|
|
88
|
-
get label(): DeepPartial<EShapeTextLike> | undefined;
|
|
89
83
|
protected toPosition(theme: THEME, options?: OPTIONS): DChartAxisPosition;
|
|
90
84
|
protected toBar(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParserBar;
|
|
91
85
|
protected toTick(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParserTick;
|
|
@@ -96,7 +96,7 @@ export interface DChartAxisBaseLabelOptions {
|
|
|
96
96
|
padding?: Partial<EShapeTextOffsetLike>;
|
|
97
97
|
clipping?: boolean;
|
|
98
98
|
}
|
|
99
|
-
export interface DChartAxisBaseOptions<THEME extends DThemeChartAxisBase> extends DChartAxisOptions {
|
|
99
|
+
export interface DChartAxisBaseOptions<THEME extends DThemeChartAxisBase = DThemeChartAxisBase> extends DChartAxisOptions {
|
|
100
100
|
tick?: DChartAxisBaseTickOptions;
|
|
101
101
|
label?: DChartAxisBaseLabelOptions;
|
|
102
102
|
style?: EShapePointsStyle;
|
|
@@ -11,7 +11,7 @@ import { DChartCoordinateTickMinorStepFunction } from "./d-chart-coordinate-tick
|
|
|
11
11
|
import { EShape } from "./shape/e-shape";
|
|
12
12
|
export interface DChartAxisBaseTickContainerOptions {
|
|
13
13
|
}
|
|
14
|
-
export declare class DChartAxisBaseTickContainer<CHART extends DBase, OPTIONS extends DChartAxisBaseTickContainerOptions> implements DChartAxisTickContainer<CHART> {
|
|
14
|
+
export declare class DChartAxisBaseTickContainer<CHART extends DBase = DBase, OPTIONS extends DChartAxisBaseTickContainerOptions = DChartAxisBaseTickContainerOptions> implements DChartAxisTickContainer<CHART> {
|
|
15
15
|
protected _parser: DChartAxisBaseOptionParser;
|
|
16
16
|
protected _container?: DChartAxisContainer<CHART>;
|
|
17
17
|
protected _index: number;
|
|
@@ -4,7 +4,7 @@ import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
|
4
4
|
import { DChartAxisTickMajorGridline } from "./d-chart-axis-tick-major-gridline";
|
|
5
5
|
import { EShape } from "./shape/e-shape";
|
|
6
6
|
import { EShapeBarPosition } from "./shape/variant/e-shape-bar-position";
|
|
7
|
-
export declare class DChartAxisBaseTickMajorGridline<CHART extends DBase> implements DChartAxisTickMajorGridline<CHART> {
|
|
7
|
+
export declare class DChartAxisBaseTickMajorGridline<CHART extends DBase = DBase> implements DChartAxisTickMajorGridline<CHART> {
|
|
8
8
|
protected _parser: DChartAxisBaseOptionParser;
|
|
9
9
|
protected _container?: DChartAxisContainer<CHART>;
|
|
10
10
|
protected _index: number;
|
|
@@ -4,7 +4,7 @@ import { DChartAxisBaseTickMajorGridline } from "./d-chart-axis-base-tick-major-
|
|
|
4
4
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
5
5
|
import { DChartAxisTickMajor } from "./d-chart-axis-tick-major";
|
|
6
6
|
import { EShape } from "./shape/e-shape";
|
|
7
|
-
export declare class DChartAxisBaseTickMajor<CHART extends DBase> implements DChartAxisTickMajor<CHART> {
|
|
7
|
+
export declare class DChartAxisBaseTickMajor<CHART extends DBase = DBase> implements DChartAxisTickMajor<CHART> {
|
|
8
8
|
protected _parser: DChartAxisBaseOptionParser;
|
|
9
9
|
protected _container?: DChartAxisContainer<CHART>;
|
|
10
10
|
protected _index: number;
|
|
@@ -3,7 +3,7 @@ import { DChartAxisBaseOptionParser } from "./d-chart-axis-base-options-parser";
|
|
|
3
3
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
4
4
|
import { DChartAxisTickMinor } from "./d-chart-axis-tick-minor";
|
|
5
5
|
import { EShape } from "./shape/e-shape";
|
|
6
|
-
export declare class DChartAxisBaseTickMinor<CHART extends DBase> implements DChartAxisTickMinor<CHART> {
|
|
6
|
+
export declare class DChartAxisBaseTickMinor<CHART extends DBase = DBase> implements DChartAxisTickMinor<CHART> {
|
|
7
7
|
protected _parser: DChartAxisBaseOptionParser;
|
|
8
8
|
protected _container?: DChartAxisContainer<CHART>;
|
|
9
9
|
protected _index: number;
|
|
@@ -14,9 +14,13 @@ export declare class DChartAxisBase<CHART extends DBase = DBase, THEME extends D
|
|
|
14
14
|
protected _bar: DChartAxisBar<CHART>;
|
|
15
15
|
protected _tick: DChartAxisTickContainer<CHART>;
|
|
16
16
|
constructor(options?: OPTIONS);
|
|
17
|
-
get parser(): DChartAxisBaseOptionParser<THEME>;
|
|
18
17
|
protected newParser(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParser<THEME>;
|
|
19
18
|
get position(): DChartAxisPosition;
|
|
19
|
+
set position(position: DChartAxisPosition);
|
|
20
|
+
get coordinate(): number;
|
|
21
|
+
set coordinate(coordinate: number);
|
|
22
|
+
get padding(): number;
|
|
23
|
+
set padding(padding: number);
|
|
20
24
|
get bar(): DChartAxisBar<CHART>;
|
|
21
25
|
protected newBar(parser: DChartAxisBaseOptionParser<THEME>, theme: THEME, options?: OPTIONS): DChartAxisBar<CHART>;
|
|
22
26
|
get tick(): DChartAxisTickContainer<CHART>;
|
|
@@ -2,7 +2,7 @@ import { DBase } from "./d-base";
|
|
|
2
2
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
3
3
|
import { DChartAxisTickMajor } from "./d-chart-axis-tick-major";
|
|
4
4
|
import { DChartAxisTickMinor } from "./d-chart-axis-tick-minor";
|
|
5
|
-
export interface DChartAxisTickContainer<CHART extends DBase> {
|
|
5
|
+
export interface DChartAxisTickContainer<CHART extends DBase = DBase> {
|
|
6
6
|
readonly major: DChartAxisTickMajor<CHART>;
|
|
7
7
|
readonly minor: DChartAxisTickMinor<CHART>;
|
|
8
8
|
bind(container: DChartAxisContainer<CHART>, index: number): void;
|
|
@@ -2,7 +2,7 @@ import { DBase } from "./d-base";
|
|
|
2
2
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
3
3
|
import { DChartAxisTickMajorGridline } from "./d-chart-axis-tick-major-gridline";
|
|
4
4
|
import { EShape } from "./shape/e-shape";
|
|
5
|
-
export interface DChartAxisTickMajor<CHART extends DBase> {
|
|
5
|
+
export interface DChartAxisTickMajor<CHART extends DBase = DBase> {
|
|
6
6
|
readonly shapes: EShape[];
|
|
7
7
|
readonly gridline: DChartAxisTickMajorGridline<CHART>;
|
|
8
8
|
bind(container: DChartAxisContainer<CHART>, index: number): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DBase } from "./d-base";
|
|
2
2
|
import { DChartAxisContainer } from "./d-chart-axis-container";
|
|
3
3
|
import { EShape } from "./shape/e-shape";
|
|
4
|
-
export interface DChartAxisTickMinor<CHART extends DBase> {
|
|
4
|
+
export interface DChartAxisTickMinor<CHART extends DBase = DBase> {
|
|
5
5
|
readonly shapes: EShape[];
|
|
6
6
|
bind(container: DChartAxisContainer<CHART>, index: number): void;
|
|
7
7
|
unbind(): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DBase } from "./d-base";
|
|
2
2
|
import { DThemeChartAxisBase } from "./d-chart-axis-base-options";
|
|
3
3
|
import { DChartAxisX, DChartAxisXOptions } from "./d-chart-axis-x";
|
|
4
|
-
export interface DChartAxisXDatetimeOptions<THEME extends DThemeChartAxisBase> extends DChartAxisXOptions<THEME> {
|
|
4
|
+
export interface DChartAxisXDatetimeOptions<THEME extends DThemeChartAxisBase = DThemeChartAxisBase> extends DChartAxisXOptions<THEME> {
|
|
5
5
|
}
|
|
6
6
|
/**
|
|
7
7
|
* An X axis for datetimes.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DBase } from "./d-base";
|
|
2
2
|
import { DChartAxisBase } from "./d-chart-axis-base";
|
|
3
3
|
import { DChartAxisBaseOptions, DThemeChartAxisBase } from "./d-chart-axis-base-options";
|
|
4
|
-
export interface DChartAxisXOptions<THEME extends DThemeChartAxisBase> extends DChartAxisBaseOptions<THEME> {
|
|
4
|
+
export interface DChartAxisXOptions<THEME extends DThemeChartAxisBase = DThemeChartAxisBase> extends DChartAxisBaseOptions<THEME> {
|
|
5
5
|
}
|
|
6
6
|
/**
|
|
7
7
|
* An X axis.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DBase } from "./d-base";
|
|
2
2
|
import { DChartAxisBase } from "./d-chart-axis-base";
|
|
3
3
|
import { DChartAxisBaseOptions, DThemeChartAxisBase } from "./d-chart-axis-base-options";
|
|
4
|
-
export interface DChartAxisYOptions<THEME extends DThemeChartAxisBase> extends DChartAxisBaseOptions<THEME> {
|
|
4
|
+
export interface DChartAxisYOptions<THEME extends DThemeChartAxisBase = DThemeChartAxisBase> extends DChartAxisBaseOptions<THEME> {
|
|
5
5
|
}
|
|
6
6
|
/**
|
|
7
7
|
* An Y axis.
|
|
@@ -7,7 +7,9 @@ export interface DChartAxisOptions {
|
|
|
7
7
|
position?: DChartAxisPosition | keyof typeof DChartAxisPosition;
|
|
8
8
|
}
|
|
9
9
|
export interface DChartAxis<CHART extends DBase = DBase> {
|
|
10
|
-
|
|
10
|
+
position: DChartAxisPosition;
|
|
11
|
+
coordinate: number;
|
|
12
|
+
padding: number;
|
|
11
13
|
readonly bar: DChartAxisBar<CHART>;
|
|
12
14
|
readonly tick: DChartAxisTickContainer<CHART>;
|
|
13
15
|
bind(container: DChartAxisContainer<CHART>, index: number): void;
|
|
@@ -33,6 +33,7 @@ export declare abstract class DChartSeriesBase<CHART extends DBase = DBase> exte
|
|
|
33
33
|
unbind(): this;
|
|
34
34
|
abstract toDirty(): this;
|
|
35
35
|
abstract update(): this;
|
|
36
|
+
abstract onRender(): this;
|
|
36
37
|
get domain(): DChartRegionImmutable;
|
|
37
38
|
get range(): DChartRegionImmutable;
|
|
38
39
|
get container(): DChartSeriesContainer<CHART> | null;
|
|
@@ -35,6 +35,7 @@ export declare class DChartSeriesContainerImpl<CHART extends DBase = DBase> impl
|
|
|
35
35
|
get plotArea(): DChartPlotArea<CHART>;
|
|
36
36
|
get selection(): DChartSelection<CHART> | null;
|
|
37
37
|
update(): void;
|
|
38
|
+
onRender(): void;
|
|
38
39
|
add(series: DChartSeries<CHART>): void;
|
|
39
40
|
get(index: number): DChartSeries<CHART> | null;
|
|
40
41
|
indexOf(series: DChartSeries<CHART>): number;
|
|
@@ -55,7 +55,9 @@ export declare abstract class DChartSeriesLineOfAny<CHART extends DBase = DBase>
|
|
|
55
55
|
set points(points: Array<number | null>);
|
|
56
56
|
toDirty(): this;
|
|
57
57
|
update(): this;
|
|
58
|
-
|
|
58
|
+
onRender(): this;
|
|
59
|
+
protected doUpdate(render: boolean): boolean;
|
|
60
|
+
protected doUpdateLine(line: EShapeLineOfAny, xcoordinate: DChartCoordinate<CHART>, ycoordinate: DChartCoordinate<CHART>): void;
|
|
59
61
|
protected adjustLineRegion(xmin: number, xmax: number, ymin: number, ymax: number, result: DChartSeriesLineOfAnyRegion): DChartSeriesLineOfAnyRegion;
|
|
60
62
|
protected applyLine(line: EShapeLineOfAny, xcoordinate: DChartCoordinate<CHART>, ycoordinate: DChartCoordinate<CHART>, sx: number, sy: number, cx: number, cy: number, values: number[]): void;
|
|
61
63
|
protected updateRegion(): void;
|
|
@@ -35,7 +35,9 @@ export declare class DChartSeriesLine<CHART extends DBase = DBase> extends DChar
|
|
|
35
35
|
set points(points: Array<number | null>);
|
|
36
36
|
toDirty(): this;
|
|
37
37
|
update(): this;
|
|
38
|
-
|
|
38
|
+
onRender(): this;
|
|
39
|
+
protected doUpdate(render: boolean): boolean;
|
|
40
|
+
protected doUpdateLine(line: EShapeLine, xcoordinate: DChartCoordinate<CHART>, ycoordinate: DChartCoordinate<CHART>, isPointsDirty: boolean): void;
|
|
39
41
|
protected updateRegion(): void;
|
|
40
42
|
destroy(): this;
|
|
41
43
|
hitTest(x: number, y: number): boolean;
|
|
@@ -32,7 +32,9 @@ export declare class DChartSeriesLinear<CHART extends DBase = DBase> extends DCh
|
|
|
32
32
|
get parameters(): DChartSeriesLinearParameters;
|
|
33
33
|
toDirty(): this;
|
|
34
34
|
update(): this;
|
|
35
|
-
|
|
35
|
+
onRender(): this;
|
|
36
|
+
protected doUpdate(render: boolean): boolean;
|
|
37
|
+
protected doUpdateLine(line: EShapeLine, xcoordinate: DChartCoordinate<CHART>, ycoordinate: DChartCoordinate<CHART>, plotAreaSizeX: number, plotAreaSizeY: number): void;
|
|
36
38
|
protected updateRegion(): void;
|
|
37
39
|
destroy(): this;
|
|
38
40
|
hitTest(x: number, y: number): boolean;
|
|
@@ -34,6 +34,7 @@ export interface DChartSeries<CHART extends DBase = DBase> {
|
|
|
34
34
|
hide(): this;
|
|
35
35
|
isHidden(): boolean;
|
|
36
36
|
update(): this;
|
|
37
|
+
onRender(): this;
|
|
37
38
|
destroy(): this;
|
|
38
39
|
hitTest(x: number, y: number): boolean;
|
|
39
40
|
calcHitPoint(x: number, y: number, result: DChartSeriesHitResult): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"d-chart-axis-bar.js","sourceRoot":"","sources":["../../../src/main/typescript/wcardinal/ui/d-chart-axis-bar.ts"],"names":[],"mappings":"AAAA;;;GAGG","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport { DBase } from \"./d-base\";\nimport { DChartAxisContainer } from \"./d-chart-axis-container\";\nimport { EShape } from \"./shape/e-shape\";\n\nexport interface DChartAxisBar<CHART extends DBase> {\n\treadonly shape: EShape;\n\n\tbind(container: DChartAxisContainer<CHART>, index: number): void;\n\tunbind(): void;\n\tupdate(): boolean;\n\tdestroy(): void;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"d-chart-axis-bar.js","sourceRoot":"","sources":["../../../src/main/typescript/wcardinal/ui/d-chart-axis-bar.ts"],"names":[],"mappings":"AAAA;;;GAGG","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport { DBase } from \"./d-base\";\nimport { DChartAxisContainer } from \"./d-chart-axis-container\";\nimport { EShape } from \"./shape/e-shape\";\n\nexport interface DChartAxisBar<CHART extends DBase = DBase> {\n\treadonly shape: EShape;\n\n\tbind(container: DChartAxisContainer<CHART>, index: number): void;\n\tunbind(): void;\n\tupdate(): boolean;\n\tdestroy(): void;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"d-chart-axis-base-bar.js","sourceRoot":"","sources":["../../../src/main/typescript/wcardinal/ui/d-chart-axis-base-bar.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport { DBase } from \"./d-base\";\nimport { DChartAxisBar } from \"./d-chart-axis-bar\";\nimport { DChartAxisBaseOptionParser } from \"./d-chart-axis-base-options-parser\";\nimport { DChartAxisContainer } from \"./d-chart-axis-container\";\nimport { DChartAxisPosition } from \"./d-chart-axis-position\";\nimport { EShape } from \"./shape/e-shape\";\nimport { EShapePointsStyle } from \"./shape/e-shape-points-style\";\nimport { EShapeBar } from \"./shape/variant/e-shape-bar\";\nimport { EShapeBarPosition } from \"./shape/variant/e-shape-bar-position\";\n\nexport class DChartAxisBaseBar<CHART extends DBase> implements DChartAxisBar<CHART> {\n\tprotected _parser: DChartAxisBaseOptionParser;\n\tprotected _container?: DChartAxisContainer<CHART>;\n\tprotected _index: number;\n\tprotected _shape?: EShape;\n\n\tconstructor(parser: DChartAxisBaseOptionParser) {\n\t\tthis._parser = parser;\n\t\tthis._index = 0;\n\t}\n\n\tget shape(): EShape {\n\t\tlet result = this._shape;\n\t\tif (result == null) {\n\t\t\tresult = this.newShape();\n\t\t\tthis._shape = result;\n\t\t}\n\t\treturn result;\n\t}\n\n\tprotected newShape(): EShape {\n\t\tconst parser = this._parser;\n\t\tconst bar = parser.bar;\n\t\tconst result = new EShapeBar();\n\t\tresult.points.position = this.newShapePosition();\n\t\tresult.points.style = bar.style ?? EShapePointsStyle.NONE;\n\t\tresult.stroke.copy(bar.stroke);\n\t\tresult.text.copy(parser.label);\n\t\treturn result;\n\t}\n\n\tprotected newShapePosition(): EShapeBarPosition {\n\t\tswitch (this._parser.position) {\n\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\tdefault:\n\t\t\t\treturn EShapeBarPosition.LEFT;\n\t\t}\n\t}\n\n\tbind(container: DChartAxisContainer<CHART>, index: number): void {\n\t\tthis._container = container;\n\t\tthis._index = index;\n\t\tthis.shape.attach(container.container);\n\t}\n\n\tunbind(): void {\n\t\tconst shape = this._shape;\n\t\tif (shape != null) {\n\t\t\tshape.detach();\n\t\t}\n\t\tthis._index = 0;\n\t\tthis._container = undefined;\n\t}\n\n\tupdate(): boolean {\n\t\tconst container = this._container;\n\t\tconst index = this._index;\n\t\tconst shape = this._shape;\n\t\tif (shape != null && container != null) {\n\t\t\tconst plotArea = container.plotArea;\n\t\t\tconst plotAreaWidth = plotArea.width;\n\t\t\tconst plotAreaHeight = plotArea.height;\n\t\t\tconst offset = this._parser.padding * index;\n\t\t\tshape.disallowUploadedUpdate();\n\t\t\tconst position = shape.transform.position;\n\t\t\tconst size = shape.size;\n\t\t\tswitch (this._parser.position) {\n\t\t\t\tcase DChartAxisPosition.TOP:\n\t\t\t\t\tposition.set(plotAreaWidth * 0.5, 0 - offset);\n\t\t\t\t\tsize.set(plotAreaWidth, 0);\n\t\t\t\t\tbreak;\n\t\t\t\tcase DChartAxisPosition.BOTTOM:\n\t\t\t\t\tposition.set(plotAreaWidth * 0.5, plotAreaHeight + offset);\n\t\t\t\t\tsize.set(plotAreaWidth, 0);\n\t\t\t\t\tbreak;\n\t\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\t\t\tposition.set(0 - offset, plotAreaHeight * 0.5);\n\t\t\t\t\tsize.set(0, plotAreaHeight);\n\t\t\t\t\tbreak;\n\t\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\t\tposition.set(plotAreaWidth + offset, plotAreaHeight * 0.5);\n\t\t\t\t\tsize.set(0, plotAreaHeight);\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\tshape.allowUploadedUpdate();\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\tdestroy(): void {\n\t\tconst shape = this._shape;\n\t\tif (shape != null) {\n\t\t\tshape.destroy();\n\t\t}\n\t\tthis._index = 0;\n\t\tthis._container = undefined;\n\t}\n}\n"]}
|
|
1
|
+
{"version":3,"file":"d-chart-axis-base-bar.js","sourceRoot":"","sources":["../../../src/main/typescript/wcardinal/ui/d-chart-axis-base-bar.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport { DBase } from \"./d-base\";\nimport { DChartAxisBar } from \"./d-chart-axis-bar\";\nimport { DChartAxisBaseOptionParser } from \"./d-chart-axis-base-options-parser\";\nimport { DChartAxisContainer } from \"./d-chart-axis-container\";\nimport { DChartAxisPosition } from \"./d-chart-axis-position\";\nimport { EShape } from \"./shape/e-shape\";\nimport { EShapePointsStyle } from \"./shape/e-shape-points-style\";\nimport { EShapeBar } from \"./shape/variant/e-shape-bar\";\nimport { EShapeBarPosition } from \"./shape/variant/e-shape-bar-position\";\n\nexport class DChartAxisBaseBar<CHART extends DBase = DBase> implements DChartAxisBar<CHART> {\n\tprotected _parser: DChartAxisBaseOptionParser;\n\tprotected _container?: DChartAxisContainer<CHART>;\n\tprotected _index: number;\n\tprotected _shape?: EShape;\n\n\tconstructor(parser: DChartAxisBaseOptionParser) {\n\t\tthis._parser = parser;\n\t\tthis._index = 0;\n\t}\n\n\tget shape(): EShape {\n\t\tlet result = this._shape;\n\t\tif (result == null) {\n\t\t\tresult = this.newShape();\n\t\t\tthis._shape = result;\n\t\t}\n\t\treturn result;\n\t}\n\n\tprotected newShape(): EShape {\n\t\tconst parser = this._parser;\n\t\tconst bar = parser.bar;\n\t\tconst result = new EShapeBar();\n\t\tresult.points.position = this.newShapePosition();\n\t\tresult.points.style = bar.style ?? EShapePointsStyle.NONE;\n\t\tresult.stroke.copy(bar.stroke);\n\t\tresult.text.copy(parser.label);\n\t\treturn result;\n\t}\n\n\tprotected newShapePosition(): EShapeBarPosition {\n\t\tswitch (this._parser.position) {\n\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\tdefault:\n\t\t\t\treturn EShapeBarPosition.LEFT;\n\t\t}\n\t}\n\n\tbind(container: DChartAxisContainer<CHART>, index: number): void {\n\t\tthis._container = container;\n\t\tthis._index = index;\n\t\tthis.shape.attach(container.container);\n\t}\n\n\tunbind(): void {\n\t\tconst shape = this._shape;\n\t\tif (shape != null) {\n\t\t\tshape.detach();\n\t\t}\n\t\tthis._index = 0;\n\t\tthis._container = undefined;\n\t}\n\n\tupdate(): boolean {\n\t\tconst container = this._container;\n\t\tconst index = this._index;\n\t\tconst shape = this._shape;\n\t\tif (shape != null && container != null) {\n\t\t\tconst plotArea = container.plotArea;\n\t\t\tconst plotAreaWidth = plotArea.width;\n\t\t\tconst plotAreaHeight = plotArea.height;\n\t\t\tconst offset = this._parser.padding * index;\n\t\t\tshape.disallowUploadedUpdate();\n\t\t\tconst position = shape.transform.position;\n\t\t\tconst size = shape.size;\n\t\t\tswitch (this._parser.position) {\n\t\t\t\tcase DChartAxisPosition.TOP:\n\t\t\t\t\tposition.set(plotAreaWidth * 0.5, 0 - offset);\n\t\t\t\t\tsize.set(plotAreaWidth, 0);\n\t\t\t\t\tbreak;\n\t\t\t\tcase DChartAxisPosition.BOTTOM:\n\t\t\t\t\tposition.set(plotAreaWidth * 0.5, plotAreaHeight + offset);\n\t\t\t\t\tsize.set(plotAreaWidth, 0);\n\t\t\t\t\tbreak;\n\t\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\t\t\tposition.set(0 - offset, plotAreaHeight * 0.5);\n\t\t\t\t\tsize.set(0, plotAreaHeight);\n\t\t\t\t\tbreak;\n\t\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\t\tposition.set(plotAreaWidth + offset, plotAreaHeight * 0.5);\n\t\t\t\t\tsize.set(0, plotAreaHeight);\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\tshape.allowUploadedUpdate();\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\tdestroy(): void {\n\t\tconst shape = this._shape;\n\t\tif (shape != null) {\n\t\t\tshape.destroy();\n\t\t}\n\t\tthis._index = 0;\n\t\tthis._container = undefined;\n\t}\n}\n"]}
|
|
@@ -16,55 +16,13 @@ import { toEnum } from "./util/to-enum";
|
|
|
16
16
|
var DChartAxisBaseOptionParser = /** @class */ (function () {
|
|
17
17
|
function DChartAxisBaseOptionParser(theme, options) {
|
|
18
18
|
var _a, _b;
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
19
|
+
this.coordinate = (_a = options === null || options === void 0 ? void 0 : options.coordinate) !== null && _a !== void 0 ? _a : 0;
|
|
20
|
+
this.position = this.toPosition(theme, options);
|
|
21
|
+
this.tick = this.toTick(theme, options);
|
|
22
|
+
this.label = this.toLabel(theme, options);
|
|
23
|
+
this.padding = (_b = options === null || options === void 0 ? void 0 : options.padding) !== null && _b !== void 0 ? _b : theme.getPadding();
|
|
24
|
+
this.bar = this.toBar(theme, options);
|
|
25
25
|
}
|
|
26
|
-
Object.defineProperty(DChartAxisBaseOptionParser.prototype, "coordinateIndex", {
|
|
27
|
-
get: function () {
|
|
28
|
-
return this._coordinateIndex;
|
|
29
|
-
},
|
|
30
|
-
enumerable: false,
|
|
31
|
-
configurable: true
|
|
32
|
-
});
|
|
33
|
-
Object.defineProperty(DChartAxisBaseOptionParser.prototype, "padding", {
|
|
34
|
-
get: function () {
|
|
35
|
-
return this._padding;
|
|
36
|
-
},
|
|
37
|
-
enumerable: false,
|
|
38
|
-
configurable: true
|
|
39
|
-
});
|
|
40
|
-
Object.defineProperty(DChartAxisBaseOptionParser.prototype, "position", {
|
|
41
|
-
get: function () {
|
|
42
|
-
return this._position;
|
|
43
|
-
},
|
|
44
|
-
enumerable: false,
|
|
45
|
-
configurable: true
|
|
46
|
-
});
|
|
47
|
-
Object.defineProperty(DChartAxisBaseOptionParser.prototype, "bar", {
|
|
48
|
-
get: function () {
|
|
49
|
-
return this._bar;
|
|
50
|
-
},
|
|
51
|
-
enumerable: false,
|
|
52
|
-
configurable: true
|
|
53
|
-
});
|
|
54
|
-
Object.defineProperty(DChartAxisBaseOptionParser.prototype, "tick", {
|
|
55
|
-
get: function () {
|
|
56
|
-
return this._tick;
|
|
57
|
-
},
|
|
58
|
-
enumerable: false,
|
|
59
|
-
configurable: true
|
|
60
|
-
});
|
|
61
|
-
Object.defineProperty(DChartAxisBaseOptionParser.prototype, "label", {
|
|
62
|
-
get: function () {
|
|
63
|
-
return this._label;
|
|
64
|
-
},
|
|
65
|
-
enumerable: false,
|
|
66
|
-
configurable: true
|
|
67
|
-
});
|
|
68
26
|
DChartAxisBaseOptionParser.prototype.toPosition = function (theme, options) {
|
|
69
27
|
var position = options === null || options === void 0 ? void 0 : options.position;
|
|
70
28
|
if (isString(position)) {
|
|
@@ -124,7 +82,7 @@ var DChartAxisBaseOptionParser = /** @class */ (function () {
|
|
|
124
82
|
};
|
|
125
83
|
};
|
|
126
84
|
DChartAxisBaseOptionParser.prototype.toTickPosition = function (tickPosition) {
|
|
127
|
-
var position = this.
|
|
85
|
+
var position = this.position;
|
|
128
86
|
if (tickPosition === DChartAxisTickPosition.OUTSIDE || tickPosition === "OUTSIDE") {
|
|
129
87
|
switch (position) {
|
|
130
88
|
case DChartAxisPosition.TOP:
|
|
@@ -300,7 +258,7 @@ var DChartAxisBaseOptionParser = /** @class */ (function () {
|
|
|
300
258
|
};
|
|
301
259
|
DChartAxisBaseOptionParser.prototype.toTickMajorTextAlign = function (theme, options) {
|
|
302
260
|
var _a, _b;
|
|
303
|
-
var position = this.
|
|
261
|
+
var position = this.position;
|
|
304
262
|
return {
|
|
305
263
|
horizontal: (_a = options === null || options === void 0 ? void 0 : options.horizontal) !== null && _a !== void 0 ? _a : theme.getMajorTickTextAlignHorizontal(position),
|
|
306
264
|
vertical: (_b = options === null || options === void 0 ? void 0 : options.vertical) !== null && _b !== void 0 ? _b : theme.getMajorTickTextAlignVertical(position)
|
|
@@ -391,7 +349,7 @@ var DChartAxisBaseOptionParser = /** @class */ (function () {
|
|
|
391
349
|
};
|
|
392
350
|
DChartAxisBaseOptionParser.prototype.toTickMinorTextAlign = function (theme, options) {
|
|
393
351
|
var _a, _b;
|
|
394
|
-
var position = this.
|
|
352
|
+
var position = this.position;
|
|
395
353
|
return {
|
|
396
354
|
horizontal: (_a = options === null || options === void 0 ? void 0 : options.horizontal) !== null && _a !== void 0 ? _a : theme.getMinorTickTextAlignHorizontal(position),
|
|
397
355
|
vertical: (_b = options === null || options === void 0 ? void 0 : options.vertical) !== null && _b !== void 0 ? _b : theme.getMinorTickTextAlignVertical(position)
|
|
@@ -459,7 +417,7 @@ var DChartAxisBaseOptionParser = /** @class */ (function () {
|
|
|
459
417
|
};
|
|
460
418
|
DChartAxisBaseOptionParser.prototype.toLabelAlign = function (theme, options) {
|
|
461
419
|
var _a, _b;
|
|
462
|
-
var position = this.
|
|
420
|
+
var position = this.position;
|
|
463
421
|
return {
|
|
464
422
|
horizontal: (_a = options === null || options === void 0 ? void 0 : options.horizontal) !== null && _a !== void 0 ? _a : theme.getLabelAlignHorizontal(position),
|
|
465
423
|
vertical: (_b = options === null || options === void 0 ? void 0 : options.vertical) !== null && _b !== void 0 ? _b : theme.getLabelAlignVertical(position)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"d-chart-axis-base-options-parser.js","sourceRoot":"","sources":["../../../src/main/typescript/wcardinal/ui/d-chart-axis-base-options-parser.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport {\n\tDChartAxisBaseOptions,\n\tDChartAxisBaseTickOptions,\n\tDChartAxisBaseTickMajorGridlineOptions,\n\tDChartAxisBaseTickMajorOptions,\n\tDChartAxisBaseTickMinorOptions,\n\tDChartAxisBaseTextDirectionOption,\n\tDChartAxisBaseTickTextOptions,\n\tDThemeChartAxisBase,\n\tDChartAxisBaseStrokeOptions\n} from \"./d-chart-axis-base-options\";\nimport { DChartAxisPosition } from \"./d-chart-axis-position\";\nimport { DChartAxisTickPosition } from \"./d-chart-axis-tick-position\";\nimport { DChartCoordinateTickMajorStepFunction } from \"./d-chart-coordinate-tick-major-step-function\";\nimport { DChartCoordinateTickMinorStepFunction } from \"./d-chart-coordinate-tick-minor-step-function\";\nimport { EShapePointsStyle } from \"./shape/e-shape-points-style\";\nimport { EShapePointsStyleOption, EShapePointsStyles } from \"./shape/e-shape-points-styles\";\nimport { EShapeStrokeLike } from \"./shape/e-shape-stroke\";\nimport { EShapeStrokeSide } from \"./shape/e-shape-stroke-side\";\nimport { EShapeStrokeStyle } from \"./shape/e-shape-stroke-style\";\nimport { EShapeTextLike, EShapeTextStyle, EShapeTextWeight } from \"./shape/e-shape-text\";\nimport { EShapeTextAlignLike } from \"./shape/e-shape-text-align\";\nimport { EShapeTextDirection } from \"./shape/e-shape-text-direction\";\nimport { EShapeTextOffsetLike } from \"./shape/e-shape-text-offset\";\nimport { EShapeTextOutlineLike } from \"./shape/e-shape-text-outline\";\nimport { EShapeBarPosition } from \"./shape/variant/e-shape-bar-position\";\nimport { DeepPartial } from \"./util/deep-partial\";\nimport { isArray } from \"./util/is-array\";\nimport { isString } from \"./util/is-string\";\nimport { NumberFormatter } from \"./util/number-formatter\";\nimport { NumberFormatterFunction } from \"./util/number-formatter-function\";\nimport { NumberFormatters } from \"./util/number-formatters\";\nimport { toEnum } from \"./util/to-enum\";\n\nexport interface DChartAxisBaseOptionParserText {\n\t/** A format. Please refer to {@link NumberFormatter} for format details. */\n\tformat?: string | null;\n\n\t/** A formatter function. */\n\tformatter?: NumberFormatterFunction;\n\n\tcolor?: number;\n\talpha?: number;\n\tfamily?: string;\n\tsize?: number;\n\tweight?: EShapeTextWeight;\n\talign?: Partial<EShapeTextAlignLike>;\n\toffset?: Partial<EShapeTextOffsetLike>;\n\tstyle?: EShapeTextStyle;\n\toutline?: Partial<EShapeTextOutlineLike>;\n\tspacing?: Partial<EShapeTextOffsetLike>;\n\tdirection?: EShapeTextDirection;\n\tpadding?: Partial<EShapeTextOffsetLike>;\n\tclipping?: boolean;\n}\n\nexport interface DChartAxisBaseOptionParserGridline {\n\tenable: boolean;\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n}\n\nexport interface DChartAxisBaseOptionParserTickMajor {\n\tcapacity: number;\n\tcount: number;\n\tstep: number | DChartCoordinateTickMajorStepFunction | undefined;\n\tsize: number;\n\tposition: EShapeBarPosition;\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n\ttext?: DChartAxisBaseOptionParserText;\n\tformatter?: NumberFormatter;\n\n\tgridline: DChartAxisBaseOptionParserGridline;\n}\n\nexport interface DChartAxisBaseOptionParserTickMinor {\n\tcount: number;\n\tstep: number | DChartCoordinateTickMinorStepFunction | undefined;\n\tsize: number;\n\tposition: EShapeBarPosition;\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n\ttext?: DChartAxisBaseOptionParserText;\n\tformatter?: NumberFormatter;\n}\n\nexport interface DChartAxisBaseOptionParserTick {\n\tenable: boolean;\n\tmajor: DChartAxisBaseOptionParserTickMajor;\n\tminor: DChartAxisBaseOptionParserTickMinor;\n}\n\nexport interface DChartAxisBaseOptionParserBar {\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n}\n\nexport class DChartAxisBaseOptionParser<\n\tTHEME extends DThemeChartAxisBase = DThemeChartAxisBase,\n\tOPTIONS extends DChartAxisBaseOptions<THEME> = DChartAxisBaseOptions<THEME>\n> {\n\tprotected _coordinateIndex: number;\n\tprotected _position: DChartAxisPosition;\n\tprotected _tick: DChartAxisBaseOptionParserTick;\n\tprotected _label: DeepPartial<EShapeTextLike> | undefined;\n\tprotected _padding: number;\n\tprotected _bar: DChartAxisBaseOptionParserBar;\n\n\tconstructor(theme: THEME, options?: OPTIONS) {\n\t\tthis._coordinateIndex = options?.coordinate ?? 0;\n\t\tthis._position = this.toPosition(theme, options);\n\t\tthis._tick = this.toTick(theme, options);\n\t\tthis._label = this.toLabel(theme, options);\n\t\tthis._padding = options?.padding ?? theme.getPadding();\n\t\tthis._bar = this.toBar(theme, options);\n\t}\n\n\tget coordinateIndex(): number {\n\t\treturn this._coordinateIndex;\n\t}\n\n\tget padding(): number {\n\t\treturn this._padding;\n\t}\n\n\tget position(): DChartAxisPosition {\n\t\treturn this._position;\n\t}\n\n\tget bar(): DChartAxisBaseOptionParserBar {\n\t\treturn this._bar;\n\t}\n\n\tget tick(): DChartAxisBaseOptionParserTick {\n\t\treturn this._tick;\n\t}\n\n\tget label(): DeepPartial<EShapeTextLike> | undefined {\n\t\treturn this._label;\n\t}\n\n\tprotected toPosition(theme: THEME, options?: OPTIONS): DChartAxisPosition {\n\t\tconst position = options?.position;\n\t\tif (isString(position)) {\n\t\t\treturn DChartAxisPosition[position];\n\t\t} else if (position != null) {\n\t\t\treturn position;\n\t\t}\n\t\treturn theme.getPosition();\n\t}\n\n\tprotected toBar(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParserBar {\n\t\treturn {\n\t\t\tstyle: options?.style ?? theme.getStyle(),\n\t\t\tstroke: this.toBarStroke(theme, options?.stroke)\n\t\t};\n\t}\n\n\tprotected toTick(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParserTick {\n\t\tconst tick = options?.tick;\n\t\treturn {\n\t\t\tenable: tick?.enable ?? theme.getTickEnable(),\n\t\t\tmajor: this.toTickMajor(theme, tick),\n\t\t\tminor: this.toTickMinor(theme, tick)\n\t\t};\n\t}\n\n\tprotected toTickMajor(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickOptions\n\t): DChartAxisBaseOptionParserTickMajor {\n\t\tconst major = options?.major;\n\t\tconst position = major?.position ?? options?.position ?? theme.getMajorTickPosition();\n\t\tconst optionsStyle = options?.style;\n\t\tconst style = EShapePointsStyles.from(\n\t\t\tmajor?.style ?? optionsStyle ?? theme.getMajorTickStyle()\n\t\t);\n\t\tconst optionsStroke = options?.stroke;\n\t\tconst stroke = this.toTickMajorStroke(theme, major?.stroke, optionsStroke);\n\t\tconst count = major?.count ?? theme.getMajorTickCount();\n\t\tconst capacity = major?.capacity ?? theme.getMajorTickCapacity(count);\n\t\treturn {\n\t\t\tcount,\n\t\t\tcapacity,\n\t\t\tstep: major?.step ?? theme.getMajorTickStep(),\n\t\t\tsize: major?.size ?? theme.getMajorTickSize(),\n\t\t\tposition: this.toTickPosition(position),\n\t\t\tstyle,\n\t\t\tstroke,\n\t\t\ttext: this.toTickMajorText(theme, major?.text),\n\t\t\tformatter: this.toTickMajorFormatter(theme, major),\n\t\t\tgridline: this.toTickMajorGridline(theme, major?.gridline, optionsStyle, optionsStroke)\n\t\t};\n\t}\n\n\tprotected toTickMajorGridline(\n\t\ttheme: THEME,\n\t\toptions: DChartAxisBaseTickMajorGridlineOptions | undefined,\n\t\toptionsStyle: EShapePointsStyleOption | undefined,\n\t\toptionsStroke: DChartAxisBaseStrokeOptions | undefined\n\t): DChartAxisBaseOptionParserGridline {\n\t\tconst style = EShapePointsStyles.from(\n\t\t\toptions?.style ?? optionsStyle ?? theme.getMajorTickGridlineStyle()\n\t\t);\n\t\treturn {\n\t\t\tenable: options?.enable ?? theme.getMajorTickGridlineEnable(),\n\t\t\tstyle,\n\t\t\tstroke: this.toTickMajorGridlineStroke(theme, options?.stroke, optionsStroke)\n\t\t};\n\t}\n\n\tprotected toTickPosition(\n\t\ttickPosition: DChartAxisTickPosition | keyof typeof DChartAxisTickPosition\n\t): EShapeBarPosition {\n\t\tconst position = this._position;\n\t\tif (tickPosition === DChartAxisTickPosition.OUTSIDE || tickPosition === \"OUTSIDE\") {\n\t\t\tswitch (position) {\n\t\t\t\tcase DChartAxisPosition.TOP:\n\t\t\t\t\treturn EShapeBarPosition.BOTTOM;\n\t\t\t\tcase DChartAxisPosition.BOTTOM:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\t\t\treturn EShapeBarPosition.RIGHT;\n\t\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\t\treturn EShapeBarPosition.LEFT;\n\t\t\t\tdefault:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t}\n\t\t} else {\n\t\t\tswitch (position) {\n\t\t\t\tcase DChartAxisPosition.TOP:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t\tcase DChartAxisPosition.BOTTOM:\n\t\t\t\t\treturn EShapeBarPosition.BOTTOM;\n\t\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\t\t\treturn EShapeBarPosition.LEFT;\n\t\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\t\treturn EShapeBarPosition.RIGHT;\n\t\t\t\tdefault:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t}\n\t\t}\n\t}\n\n\tprotected toTickMinor(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickOptions\n\t): DChartAxisBaseOptionParserTickMinor {\n\t\tconst minor = options?.minor;\n\t\tconst position = minor?.position ?? options?.position ?? theme.getMinorTickPosition();\n\t\tconst style = EShapePointsStyles.from(\n\t\t\tminor?.style ?? options?.style ?? theme.getMinorTickStyle()\n\t\t);\n\t\treturn {\n\t\t\tcount: minor?.count ?? theme.getMinorTickCount(),\n\t\t\tstep: minor?.step ?? theme.getMinorTickStep(),\n\t\t\tsize: minor?.size ?? theme.getMinorTickSize(),\n\t\t\tposition: this.toTickPosition(position),\n\t\t\tstyle,\n\t\t\tstroke: this.toTickMinorStroke(theme, minor?.stroke, options?.stroke),\n\t\t\ttext: this.toTickMinorText(theme, minor?.text),\n\t\t\tformatter: this.toTickMinorFormatter(theme, minor)\n\t\t};\n\t}\n\n\tprotected toBarStroke(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptions,\n\t\t\tundefined,\n\t\t\ttheme.getStrokeEnable(),\n\t\t\ttheme.getStrokeColor(),\n\t\t\ttheme.getStrokeAlpha(),\n\t\t\ttheme.getStrokeWidth(),\n\t\t\ttheme.getStrokeAlign(),\n\t\t\ttheme.getStrokeSide(),\n\t\t\ttheme.getStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toTickMajorStroke(\n\t\ttheme: THEME,\n\t\toptionsA?: DChartAxisBaseStrokeOptions,\n\t\toptionsB?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptionsA,\n\t\t\toptionsB,\n\t\t\ttheme.getMajorTickStrokeEnable(),\n\t\t\ttheme.getMajorTickStrokeColor(),\n\t\t\ttheme.getMajorTickStrokeAlpha(),\n\t\t\ttheme.getMajorTickStrokeWidth(),\n\t\t\ttheme.getMajorTickStrokeAlign(),\n\t\t\ttheme.getMajorTickStrokeSide(),\n\t\t\ttheme.getMajorTickStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toTickMajorGridlineStroke(\n\t\ttheme: THEME,\n\t\toptionsA?: DChartAxisBaseStrokeOptions,\n\t\toptionsB?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptionsA,\n\t\t\toptionsB,\n\t\t\ttheme.getMajorTickGridlineStrokeEnable(),\n\t\t\ttheme.getMajorTickGridlineStrokeColor(),\n\t\t\ttheme.getMajorTickGridlineStrokeAlpha(),\n\t\t\ttheme.getMajorTickGridlineStrokeWidth(),\n\t\t\ttheme.getMajorTickGridlineStrokeAlign(),\n\t\t\ttheme.getMajorTickGridlineStrokeSide(),\n\t\t\ttheme.getMajorTickGridlineStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toTickMinorStroke(\n\t\ttheme: THEME,\n\t\toptionsA?: DChartAxisBaseStrokeOptions,\n\t\toptionsB?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptionsA,\n\t\t\toptionsB,\n\t\t\ttheme.getMinorTickStrokeEnable(),\n\t\t\ttheme.getMinorTickStrokeColor(),\n\t\t\ttheme.getMinorTickStrokeAlpha(),\n\t\t\ttheme.getMinorTickStrokeWidth(),\n\t\t\ttheme.getMinorTickStrokeAlign(),\n\t\t\ttheme.getMinorTickStrokeSide(),\n\t\t\ttheme.getMinorTickStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toStroke(\n\t\toptionsA: DChartAxisBaseStrokeOptions | undefined,\n\t\toptionsB: DChartAxisBaseStrokeOptions | undefined,\n\t\tenable: boolean | undefined,\n\t\tcolor: number | undefined,\n\t\talpha: number | undefined,\n\t\twidth: number | undefined,\n\t\talign: number | undefined,\n\t\tside: EShapeStrokeSide | undefined,\n\t\tstyle: EShapeStrokeStyle | undefined\n\t): Partial<EShapeStrokeLike> {\n\t\tif (optionsA) {\n\t\t\tif (optionsB) {\n\t\t\t\treturn {\n\t\t\t\t\tenable: optionsA.enable ?? optionsB.enable ?? enable,\n\t\t\t\t\tcolor: optionsA.color ?? optionsB.color ?? color,\n\t\t\t\t\talpha: optionsA.alpha ?? optionsB.alpha ?? alpha,\n\t\t\t\t\twidth: optionsA.width ?? optionsB.width ?? width,\n\t\t\t\t\talign: optionsA.align ?? optionsB.align ?? align,\n\t\t\t\t\tside: optionsA.side ?? optionsB.side ?? side,\n\t\t\t\t\tstyle: this.toStrokeStyle(optionsA.style ?? optionsB.style ?? style)\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\treturn {\n\t\t\t\t\tenable: optionsA.enable ?? enable,\n\t\t\t\t\tcolor: optionsA.color ?? color,\n\t\t\t\t\talpha: optionsA.alpha ?? alpha,\n\t\t\t\t\twidth: optionsA.width ?? width,\n\t\t\t\t\talign: optionsA.align ?? align,\n\t\t\t\t\tside: optionsA.side ?? side,\n\t\t\t\t\tstyle: this.toStrokeStyle(optionsA.style ?? style)\n\t\t\t\t};\n\t\t\t}\n\t\t} else if (optionsB) {\n\t\t\treturn {\n\t\t\t\tenable: optionsB.enable ?? enable,\n\t\t\t\tcolor: optionsB.color ?? color,\n\t\t\t\talpha: optionsB.alpha ?? alpha,\n\t\t\t\twidth: optionsB.width ?? width,\n\t\t\t\talign: optionsB.align ?? align,\n\t\t\t\tside: optionsB.side ?? side,\n\t\t\t\tstyle: this.toStrokeStyle(optionsB.style ?? style)\n\t\t\t};\n\t\t} else {\n\t\t\treturn {\n\t\t\t\tenable,\n\t\t\t\tcolor,\n\t\t\t\talpha,\n\t\t\t\twidth,\n\t\t\t\talign,\n\t\t\t\tside,\n\t\t\t\tstyle\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toStrokeStyle(\n\t\ttarget?:\n\t\t\t| EShapeStrokeStyle\n\t\t\t| keyof typeof EShapeStrokeStyle\n\t\t\t| Array<keyof typeof EShapeStrokeStyle>\n\t): EShapeStrokeStyle | undefined {\n\t\tif (isString(target)) {\n\t\t\treturn EShapeStrokeStyle[target];\n\t\t} else if (isArray(target)) {\n\t\t\tlet result = EShapeStrokeStyle.NONE;\n\t\t\tfor (let i = 0, imax = target.length; i < imax; ++i) {\n\t\t\t\tresult |= EShapeStrokeStyle[target[i]];\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t\treturn target;\n\t}\n\n\tprotected toTickMajorFormatter(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickMajorOptions\n\t): NumberFormatter | undefined {\n\t\tconst text = options?.text;\n\t\tif (text) {\n\t\t\tconst format = text.format;\n\t\t\tif (format === null) {\n\t\t\t\treturn undefined;\n\t\t\t} else if (format != null) {\n\t\t\t\treturn NumberFormatters.create(format);\n\t\t\t} else {\n\t\t\t\tconst formatter = text.formatter;\n\t\t\t\tif (formatter) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tformat: formatter\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tconst format = theme.getMajorTickTextFormat();\n\t\tif (format != null) {\n\t\t\treturn NumberFormatters.create(format);\n\t\t}\n\t\treturn undefined;\n\t}\n\n\tprotected toTickMajorText(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickTextOptions\n\t): DChartAxisBaseOptionParserText | undefined {\n\t\toptions = options || {};\n\t\treturn {\n\t\t\tformat: options.format,\n\t\t\tcolor: this.toTickMajorTextColor(theme, options.color),\n\t\t\talpha: options.alpha,\n\t\t\tfamily: options.family,\n\t\t\tsize: options.size,\n\t\t\tweight: toEnum(options.weight, EShapeTextWeight),\n\t\t\talign: this.toTickMajorTextAlign(theme, options.align),\n\t\t\toffset: this.toTickMajorTextOffset(theme, options.offset),\n\t\t\tstyle: toEnum(options.style, EShapeTextStyle),\n\t\t\toutline: this.toTickMajorTextOutline(theme, options.outline),\n\t\t\tspacing: this.toTickMajorTextSpacing(theme, options.spacing),\n\t\t\tdirection: this.toTickMajorTextDirection(theme, options.direction),\n\t\t\tpadding: this.toTickMajorTextPadding(theme, options.padding),\n\t\t\tclipping: options.clipping\n\t\t};\n\t}\n\n\tprotected toTickMajorTextOutline(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOutlineLike>\n\t): Partial<EShapeTextOutlineLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\tenable: options.enable,\n\t\t\t\tcolor: options.color,\n\t\t\t\talpha: options.alpha,\n\t\t\t\twidth: options.width\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMajorTextAlign(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextAlignLike>\n\t): Partial<EShapeTextAlignLike> | undefined {\n\t\tconst position = this._position;\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMajorTickTextAlignHorizontal(position),\n\t\t\tvertical: options?.vertical ?? theme.getMajorTickTextAlignVertical(position)\n\t\t};\n\t}\n\n\tprotected toTickMajorTextOffset(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMajorTextSpacing(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMajorTextPadding(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> {\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMajorTickTextPaddingHorizontal(),\n\t\t\tvertical: options?.vertical ?? theme.getMajorTickTextPaddingVertical()\n\t\t};\n\t}\n\n\tprotected toTickMajorTextDirection(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTextDirectionOption\n\t): EShapeTextDirection {\n\t\treturn toEnum(options ?? theme.getMajorTickTextDirection(), EShapeTextDirection);\n\t}\n\n\tprotected toTickMajorTextColor(theme: THEME, options?: number): number | undefined {\n\t\treturn options ?? theme.getMajorTickTextColor();\n\t}\n\n\tprotected toTickMinorFormatter(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickMinorOptions\n\t): NumberFormatter | undefined {\n\t\tconst text = options?.text;\n\t\tif (text) {\n\t\t\tconst format = text.format;\n\t\t\tif (format === null) {\n\t\t\t\treturn undefined;\n\t\t\t} else if (format != null) {\n\t\t\t\treturn NumberFormatters.create(format);\n\t\t\t} else {\n\t\t\t\tconst formatter = text.formatter;\n\t\t\t\tif (formatter) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tformat: formatter\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tconst format = theme.getMinorTickTextFormat();\n\t\tif (format != null) {\n\t\t\treturn NumberFormatters.create(format);\n\t\t}\n\t\treturn undefined;\n\t}\n\n\tprotected toTickMinorText(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickTextOptions\n\t): DChartAxisBaseOptionParserText | undefined {\n\t\toptions = options || {};\n\t\treturn {\n\t\t\tformat: options.format,\n\t\t\tcolor: this.toTickMinorTextColor(theme, options.color),\n\t\t\talpha: options.alpha,\n\t\t\tfamily: options.family,\n\t\t\tsize: options.size,\n\t\t\tweight: toEnum(options.weight, EShapeTextWeight),\n\t\t\talign: this.toTickMinorTextAlign(theme, options.align),\n\t\t\toffset: this.toTickMinorTextOffset(theme, options.offset),\n\t\t\tstyle: toEnum(options.style, EShapeTextStyle),\n\t\t\toutline: this.toTickMinorTextOutline(theme, options.outline),\n\t\t\tspacing: this.toTickMinorTextSpacing(theme, options.spacing),\n\t\t\tdirection: this.toTickMinorTextDirection(theme, options.direction),\n\t\t\tpadding: this.toTickMinorTextPadding(theme, options.padding),\n\t\t\tclipping: options.clipping\n\t\t};\n\t}\n\n\tprotected toTickMinorTextOutline(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOutlineLike>\n\t): Partial<EShapeTextOutlineLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\tenable: options.enable,\n\t\t\t\tcolor: options.color,\n\t\t\t\talpha: options.alpha,\n\t\t\t\twidth: options.width\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMinorTextAlign(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextAlignLike>\n\t): Partial<EShapeTextAlignLike> | undefined {\n\t\tconst position = this._position;\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMinorTickTextAlignHorizontal(position),\n\t\t\tvertical: options?.vertical ?? theme.getMinorTickTextAlignVertical(position)\n\t\t};\n\t}\n\n\tprotected toTickMinorTextOffset(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMinorTextSpacing(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMinorTextPadding(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> {\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMinorTickTextPaddingHorizontal(),\n\t\t\tvertical: options?.vertical ?? theme.getMinorTickTextPaddingVertical()\n\t\t};\n\t}\n\n\tprotected toTickMinorTextDirection(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTextDirectionOption\n\t): EShapeTextDirection {\n\t\treturn toEnum(options ?? theme.getMinorTickTextDirection(), EShapeTextDirection);\n\t}\n\n\tprotected toTickMinorTextColor(theme: THEME, options?: number): number | undefined {\n\t\treturn options ?? theme.getMinorTickTextColor();\n\t}\n\n\tprotected toLabel(theme: THEME, options?: OPTIONS): DeepPartial<EShapeTextLike> | undefined {\n\t\tconst label = options?.label;\n\t\tif (label) {\n\t\t\treturn {\n\t\t\t\tvalue: label.value,\n\t\t\t\tcolor: this.toLabelColor(theme, label.color),\n\t\t\t\talpha: label.alpha,\n\t\t\t\tfamily: label.family,\n\t\t\t\tsize: label.size,\n\t\t\t\tweight: toEnum(label.weight, EShapeTextWeight),\n\t\t\t\talign: this.toLabelAlign(theme, label.align),\n\t\t\t\toffset: this.toLabelOffset(theme, label.offset),\n\t\t\t\tstyle: toEnum(label.style, EShapeTextStyle),\n\t\t\t\toutline: this.toLabelOutline(theme, label.outline),\n\t\t\t\tspacing: this.toLabelSpacing(theme, label.spacing),\n\t\t\t\tdirection: this.toLabelDirection(theme, label.direction),\n\t\t\t\tpadding: this.toLabelPadding(theme, label.padding),\n\t\t\t\tclipping: label.clipping\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelOutline(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOutlineLike>\n\t): Partial<EShapeTextOutlineLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\tenable: options.enable,\n\t\t\t\tcolor: options.color,\n\t\t\t\talpha: options.alpha,\n\t\t\t\twidth: options.width\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelAlign(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextAlignLike>\n\t): Partial<EShapeTextAlignLike> | undefined {\n\t\tconst position = this._position;\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getLabelAlignHorizontal(position),\n\t\t\tvertical: options?.vertical ?? theme.getLabelAlignVertical(position)\n\t\t};\n\t}\n\n\tprotected toLabelOffset(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelSpacing(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelPadding(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> {\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getLabelPaddingHorizontal(),\n\t\t\tvertical: options?.vertical ?? theme.getLabelPaddingVertical()\n\t\t};\n\t}\n\n\tprotected toLabelDirection(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTextDirectionOption\n\t): EShapeTextDirection {\n\t\treturn toEnum(options ?? theme.getLabelDirection(), EShapeTextDirection);\n\t}\n\n\tprotected toLabelColor(theme: THEME, options?: number): number | undefined {\n\t\treturn options ?? theme.getLabelColor();\n\t}\n}\n"]}
|
|
1
|
+
{"version":3,"file":"d-chart-axis-base-options-parser.js","sourceRoot":"","sources":["../../../src/main/typescript/wcardinal/ui/d-chart-axis-base-options-parser.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nimport {\n\tDChartAxisBaseOptions,\n\tDChartAxisBaseTickOptions,\n\tDChartAxisBaseTickMajorGridlineOptions,\n\tDChartAxisBaseTickMajorOptions,\n\tDChartAxisBaseTickMinorOptions,\n\tDChartAxisBaseTextDirectionOption,\n\tDChartAxisBaseTickTextOptions,\n\tDThemeChartAxisBase,\n\tDChartAxisBaseStrokeOptions\n} from \"./d-chart-axis-base-options\";\nimport { DChartAxisPosition } from \"./d-chart-axis-position\";\nimport { DChartAxisTickPosition } from \"./d-chart-axis-tick-position\";\nimport { DChartCoordinateTickMajorStepFunction } from \"./d-chart-coordinate-tick-major-step-function\";\nimport { DChartCoordinateTickMinorStepFunction } from \"./d-chart-coordinate-tick-minor-step-function\";\nimport { EShapePointsStyle } from \"./shape/e-shape-points-style\";\nimport { EShapePointsStyleOption, EShapePointsStyles } from \"./shape/e-shape-points-styles\";\nimport { EShapeStrokeLike } from \"./shape/e-shape-stroke\";\nimport { EShapeStrokeSide } from \"./shape/e-shape-stroke-side\";\nimport { EShapeStrokeStyle } from \"./shape/e-shape-stroke-style\";\nimport { EShapeTextLike, EShapeTextStyle, EShapeTextWeight } from \"./shape/e-shape-text\";\nimport { EShapeTextAlignLike } from \"./shape/e-shape-text-align\";\nimport { EShapeTextDirection } from \"./shape/e-shape-text-direction\";\nimport { EShapeTextOffsetLike } from \"./shape/e-shape-text-offset\";\nimport { EShapeTextOutlineLike } from \"./shape/e-shape-text-outline\";\nimport { EShapeBarPosition } from \"./shape/variant/e-shape-bar-position\";\nimport { DeepPartial } from \"./util/deep-partial\";\nimport { isArray } from \"./util/is-array\";\nimport { isString } from \"./util/is-string\";\nimport { NumberFormatter } from \"./util/number-formatter\";\nimport { NumberFormatterFunction } from \"./util/number-formatter-function\";\nimport { NumberFormatters } from \"./util/number-formatters\";\nimport { toEnum } from \"./util/to-enum\";\n\nexport interface DChartAxisBaseOptionParserText {\n\t/** A format. Please refer to {@link NumberFormatter} for format details. */\n\tformat?: string | null;\n\n\t/** A formatter function. */\n\tformatter?: NumberFormatterFunction;\n\n\tcolor?: number;\n\talpha?: number;\n\tfamily?: string;\n\tsize?: number;\n\tweight?: EShapeTextWeight;\n\talign?: Partial<EShapeTextAlignLike>;\n\toffset?: Partial<EShapeTextOffsetLike>;\n\tstyle?: EShapeTextStyle;\n\toutline?: Partial<EShapeTextOutlineLike>;\n\tspacing?: Partial<EShapeTextOffsetLike>;\n\tdirection?: EShapeTextDirection;\n\tpadding?: Partial<EShapeTextOffsetLike>;\n\tclipping?: boolean;\n}\n\nexport interface DChartAxisBaseOptionParserGridline {\n\tenable: boolean;\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n}\n\nexport interface DChartAxisBaseOptionParserTickMajor {\n\tcapacity: number;\n\tcount: number;\n\tstep: number | DChartCoordinateTickMajorStepFunction | undefined;\n\tsize: number;\n\tposition: EShapeBarPosition;\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n\ttext?: DChartAxisBaseOptionParserText;\n\tformatter?: NumberFormatter;\n\n\tgridline: DChartAxisBaseOptionParserGridline;\n}\n\nexport interface DChartAxisBaseOptionParserTickMinor {\n\tcount: number;\n\tstep: number | DChartCoordinateTickMinorStepFunction | undefined;\n\tsize: number;\n\tposition: EShapeBarPosition;\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n\ttext?: DChartAxisBaseOptionParserText;\n\tformatter?: NumberFormatter;\n}\n\nexport interface DChartAxisBaseOptionParserTick {\n\tenable: boolean;\n\tmajor: DChartAxisBaseOptionParserTickMajor;\n\tminor: DChartAxisBaseOptionParserTickMinor;\n}\n\nexport interface DChartAxisBaseOptionParserBar {\n\tstyle?: EShapePointsStyle;\n\tstroke?: Partial<EShapeStrokeLike>;\n}\n\nexport class DChartAxisBaseOptionParser<\n\tTHEME extends DThemeChartAxisBase = DThemeChartAxisBase,\n\tOPTIONS extends DChartAxisBaseOptions<THEME> = DChartAxisBaseOptions<THEME>\n> {\n\tcoordinate: number;\n\tposition: DChartAxisPosition;\n\ttick: DChartAxisBaseOptionParserTick;\n\tlabel: DeepPartial<EShapeTextLike> | undefined;\n\tpadding: number;\n\tbar: DChartAxisBaseOptionParserBar;\n\n\tconstructor(theme: THEME, options?: OPTIONS) {\n\t\tthis.coordinate = options?.coordinate ?? 0;\n\t\tthis.position = this.toPosition(theme, options);\n\t\tthis.tick = this.toTick(theme, options);\n\t\tthis.label = this.toLabel(theme, options);\n\t\tthis.padding = options?.padding ?? theme.getPadding();\n\t\tthis.bar = this.toBar(theme, options);\n\t}\n\n\tprotected toPosition(theme: THEME, options?: OPTIONS): DChartAxisPosition {\n\t\tconst position = options?.position;\n\t\tif (isString(position)) {\n\t\t\treturn DChartAxisPosition[position];\n\t\t} else if (position != null) {\n\t\t\treturn position;\n\t\t}\n\t\treturn theme.getPosition();\n\t}\n\n\tprotected toBar(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParserBar {\n\t\treturn {\n\t\t\tstyle: options?.style ?? theme.getStyle(),\n\t\t\tstroke: this.toBarStroke(theme, options?.stroke)\n\t\t};\n\t}\n\n\tprotected toTick(theme: THEME, options?: OPTIONS): DChartAxisBaseOptionParserTick {\n\t\tconst tick = options?.tick;\n\t\treturn {\n\t\t\tenable: tick?.enable ?? theme.getTickEnable(),\n\t\t\tmajor: this.toTickMajor(theme, tick),\n\t\t\tminor: this.toTickMinor(theme, tick)\n\t\t};\n\t}\n\n\tprotected toTickMajor(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickOptions\n\t): DChartAxisBaseOptionParserTickMajor {\n\t\tconst major = options?.major;\n\t\tconst position = major?.position ?? options?.position ?? theme.getMajorTickPosition();\n\t\tconst optionsStyle = options?.style;\n\t\tconst style = EShapePointsStyles.from(\n\t\t\tmajor?.style ?? optionsStyle ?? theme.getMajorTickStyle()\n\t\t);\n\t\tconst optionsStroke = options?.stroke;\n\t\tconst stroke = this.toTickMajorStroke(theme, major?.stroke, optionsStroke);\n\t\tconst count = major?.count ?? theme.getMajorTickCount();\n\t\tconst capacity = major?.capacity ?? theme.getMajorTickCapacity(count);\n\t\treturn {\n\t\t\tcount,\n\t\t\tcapacity,\n\t\t\tstep: major?.step ?? theme.getMajorTickStep(),\n\t\t\tsize: major?.size ?? theme.getMajorTickSize(),\n\t\t\tposition: this.toTickPosition(position),\n\t\t\tstyle,\n\t\t\tstroke,\n\t\t\ttext: this.toTickMajorText(theme, major?.text),\n\t\t\tformatter: this.toTickMajorFormatter(theme, major),\n\t\t\tgridline: this.toTickMajorGridline(theme, major?.gridline, optionsStyle, optionsStroke)\n\t\t};\n\t}\n\n\tprotected toTickMajorGridline(\n\t\ttheme: THEME,\n\t\toptions: DChartAxisBaseTickMajorGridlineOptions | undefined,\n\t\toptionsStyle: EShapePointsStyleOption | undefined,\n\t\toptionsStroke: DChartAxisBaseStrokeOptions | undefined\n\t): DChartAxisBaseOptionParserGridline {\n\t\tconst style = EShapePointsStyles.from(\n\t\t\toptions?.style ?? optionsStyle ?? theme.getMajorTickGridlineStyle()\n\t\t);\n\t\treturn {\n\t\t\tenable: options?.enable ?? theme.getMajorTickGridlineEnable(),\n\t\t\tstyle,\n\t\t\tstroke: this.toTickMajorGridlineStroke(theme, options?.stroke, optionsStroke)\n\t\t};\n\t}\n\n\tprotected toTickPosition(\n\t\ttickPosition: DChartAxisTickPosition | keyof typeof DChartAxisTickPosition\n\t): EShapeBarPosition {\n\t\tconst position = this.position;\n\t\tif (tickPosition === DChartAxisTickPosition.OUTSIDE || tickPosition === \"OUTSIDE\") {\n\t\t\tswitch (position) {\n\t\t\t\tcase DChartAxisPosition.TOP:\n\t\t\t\t\treturn EShapeBarPosition.BOTTOM;\n\t\t\t\tcase DChartAxisPosition.BOTTOM:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\t\t\treturn EShapeBarPosition.RIGHT;\n\t\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\t\treturn EShapeBarPosition.LEFT;\n\t\t\t\tdefault:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t}\n\t\t} else {\n\t\t\tswitch (position) {\n\t\t\t\tcase DChartAxisPosition.TOP:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t\tcase DChartAxisPosition.BOTTOM:\n\t\t\t\t\treturn EShapeBarPosition.BOTTOM;\n\t\t\t\tcase DChartAxisPosition.LEFT:\n\t\t\t\t\treturn EShapeBarPosition.LEFT;\n\t\t\t\tcase DChartAxisPosition.RIGHT:\n\t\t\t\t\treturn EShapeBarPosition.RIGHT;\n\t\t\t\tdefault:\n\t\t\t\t\treturn EShapeBarPosition.TOP;\n\t\t\t}\n\t\t}\n\t}\n\n\tprotected toTickMinor(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickOptions\n\t): DChartAxisBaseOptionParserTickMinor {\n\t\tconst minor = options?.minor;\n\t\tconst position = minor?.position ?? options?.position ?? theme.getMinorTickPosition();\n\t\tconst style = EShapePointsStyles.from(\n\t\t\tminor?.style ?? options?.style ?? theme.getMinorTickStyle()\n\t\t);\n\t\treturn {\n\t\t\tcount: minor?.count ?? theme.getMinorTickCount(),\n\t\t\tstep: minor?.step ?? theme.getMinorTickStep(),\n\t\t\tsize: minor?.size ?? theme.getMinorTickSize(),\n\t\t\tposition: this.toTickPosition(position),\n\t\t\tstyle,\n\t\t\tstroke: this.toTickMinorStroke(theme, minor?.stroke, options?.stroke),\n\t\t\ttext: this.toTickMinorText(theme, minor?.text),\n\t\t\tformatter: this.toTickMinorFormatter(theme, minor)\n\t\t};\n\t}\n\n\tprotected toBarStroke(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptions,\n\t\t\tundefined,\n\t\t\ttheme.getStrokeEnable(),\n\t\t\ttheme.getStrokeColor(),\n\t\t\ttheme.getStrokeAlpha(),\n\t\t\ttheme.getStrokeWidth(),\n\t\t\ttheme.getStrokeAlign(),\n\t\t\ttheme.getStrokeSide(),\n\t\t\ttheme.getStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toTickMajorStroke(\n\t\ttheme: THEME,\n\t\toptionsA?: DChartAxisBaseStrokeOptions,\n\t\toptionsB?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptionsA,\n\t\t\toptionsB,\n\t\t\ttheme.getMajorTickStrokeEnable(),\n\t\t\ttheme.getMajorTickStrokeColor(),\n\t\t\ttheme.getMajorTickStrokeAlpha(),\n\t\t\ttheme.getMajorTickStrokeWidth(),\n\t\t\ttheme.getMajorTickStrokeAlign(),\n\t\t\ttheme.getMajorTickStrokeSide(),\n\t\t\ttheme.getMajorTickStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toTickMajorGridlineStroke(\n\t\ttheme: THEME,\n\t\toptionsA?: DChartAxisBaseStrokeOptions,\n\t\toptionsB?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptionsA,\n\t\t\toptionsB,\n\t\t\ttheme.getMajorTickGridlineStrokeEnable(),\n\t\t\ttheme.getMajorTickGridlineStrokeColor(),\n\t\t\ttheme.getMajorTickGridlineStrokeAlpha(),\n\t\t\ttheme.getMajorTickGridlineStrokeWidth(),\n\t\t\ttheme.getMajorTickGridlineStrokeAlign(),\n\t\t\ttheme.getMajorTickGridlineStrokeSide(),\n\t\t\ttheme.getMajorTickGridlineStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toTickMinorStroke(\n\t\ttheme: THEME,\n\t\toptionsA?: DChartAxisBaseStrokeOptions,\n\t\toptionsB?: DChartAxisBaseStrokeOptions\n\t): Partial<EShapeStrokeLike> {\n\t\treturn this.toStroke(\n\t\t\toptionsA,\n\t\t\toptionsB,\n\t\t\ttheme.getMinorTickStrokeEnable(),\n\t\t\ttheme.getMinorTickStrokeColor(),\n\t\t\ttheme.getMinorTickStrokeAlpha(),\n\t\t\ttheme.getMinorTickStrokeWidth(),\n\t\t\ttheme.getMinorTickStrokeAlign(),\n\t\t\ttheme.getMinorTickStrokeSide(),\n\t\t\ttheme.getMinorTickStrokeStyle()\n\t\t);\n\t}\n\n\tprotected toStroke(\n\t\toptionsA: DChartAxisBaseStrokeOptions | undefined,\n\t\toptionsB: DChartAxisBaseStrokeOptions | undefined,\n\t\tenable: boolean | undefined,\n\t\tcolor: number | undefined,\n\t\talpha: number | undefined,\n\t\twidth: number | undefined,\n\t\talign: number | undefined,\n\t\tside: EShapeStrokeSide | undefined,\n\t\tstyle: EShapeStrokeStyle | undefined\n\t): Partial<EShapeStrokeLike> {\n\t\tif (optionsA) {\n\t\t\tif (optionsB) {\n\t\t\t\treturn {\n\t\t\t\t\tenable: optionsA.enable ?? optionsB.enable ?? enable,\n\t\t\t\t\tcolor: optionsA.color ?? optionsB.color ?? color,\n\t\t\t\t\talpha: optionsA.alpha ?? optionsB.alpha ?? alpha,\n\t\t\t\t\twidth: optionsA.width ?? optionsB.width ?? width,\n\t\t\t\t\talign: optionsA.align ?? optionsB.align ?? align,\n\t\t\t\t\tside: optionsA.side ?? optionsB.side ?? side,\n\t\t\t\t\tstyle: this.toStrokeStyle(optionsA.style ?? optionsB.style ?? style)\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\treturn {\n\t\t\t\t\tenable: optionsA.enable ?? enable,\n\t\t\t\t\tcolor: optionsA.color ?? color,\n\t\t\t\t\talpha: optionsA.alpha ?? alpha,\n\t\t\t\t\twidth: optionsA.width ?? width,\n\t\t\t\t\talign: optionsA.align ?? align,\n\t\t\t\t\tside: optionsA.side ?? side,\n\t\t\t\t\tstyle: this.toStrokeStyle(optionsA.style ?? style)\n\t\t\t\t};\n\t\t\t}\n\t\t} else if (optionsB) {\n\t\t\treturn {\n\t\t\t\tenable: optionsB.enable ?? enable,\n\t\t\t\tcolor: optionsB.color ?? color,\n\t\t\t\talpha: optionsB.alpha ?? alpha,\n\t\t\t\twidth: optionsB.width ?? width,\n\t\t\t\talign: optionsB.align ?? align,\n\t\t\t\tside: optionsB.side ?? side,\n\t\t\t\tstyle: this.toStrokeStyle(optionsB.style ?? style)\n\t\t\t};\n\t\t} else {\n\t\t\treturn {\n\t\t\t\tenable,\n\t\t\t\tcolor,\n\t\t\t\talpha,\n\t\t\t\twidth,\n\t\t\t\talign,\n\t\t\t\tside,\n\t\t\t\tstyle\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toStrokeStyle(\n\t\ttarget?:\n\t\t\t| EShapeStrokeStyle\n\t\t\t| keyof typeof EShapeStrokeStyle\n\t\t\t| Array<keyof typeof EShapeStrokeStyle>\n\t): EShapeStrokeStyle | undefined {\n\t\tif (isString(target)) {\n\t\t\treturn EShapeStrokeStyle[target];\n\t\t} else if (isArray(target)) {\n\t\t\tlet result = EShapeStrokeStyle.NONE;\n\t\t\tfor (let i = 0, imax = target.length; i < imax; ++i) {\n\t\t\t\tresult |= EShapeStrokeStyle[target[i]];\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t\treturn target;\n\t}\n\n\tprotected toTickMajorFormatter(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickMajorOptions\n\t): NumberFormatter | undefined {\n\t\tconst text = options?.text;\n\t\tif (text) {\n\t\t\tconst format = text.format;\n\t\t\tif (format === null) {\n\t\t\t\treturn undefined;\n\t\t\t} else if (format != null) {\n\t\t\t\treturn NumberFormatters.create(format);\n\t\t\t} else {\n\t\t\t\tconst formatter = text.formatter;\n\t\t\t\tif (formatter) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tformat: formatter\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tconst format = theme.getMajorTickTextFormat();\n\t\tif (format != null) {\n\t\t\treturn NumberFormatters.create(format);\n\t\t}\n\t\treturn undefined;\n\t}\n\n\tprotected toTickMajorText(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickTextOptions\n\t): DChartAxisBaseOptionParserText | undefined {\n\t\toptions = options || {};\n\t\treturn {\n\t\t\tformat: options.format,\n\t\t\tcolor: this.toTickMajorTextColor(theme, options.color),\n\t\t\talpha: options.alpha,\n\t\t\tfamily: options.family,\n\t\t\tsize: options.size,\n\t\t\tweight: toEnum(options.weight, EShapeTextWeight),\n\t\t\talign: this.toTickMajorTextAlign(theme, options.align),\n\t\t\toffset: this.toTickMajorTextOffset(theme, options.offset),\n\t\t\tstyle: toEnum(options.style, EShapeTextStyle),\n\t\t\toutline: this.toTickMajorTextOutline(theme, options.outline),\n\t\t\tspacing: this.toTickMajorTextSpacing(theme, options.spacing),\n\t\t\tdirection: this.toTickMajorTextDirection(theme, options.direction),\n\t\t\tpadding: this.toTickMajorTextPadding(theme, options.padding),\n\t\t\tclipping: options.clipping\n\t\t};\n\t}\n\n\tprotected toTickMajorTextOutline(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOutlineLike>\n\t): Partial<EShapeTextOutlineLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\tenable: options.enable,\n\t\t\t\tcolor: options.color,\n\t\t\t\talpha: options.alpha,\n\t\t\t\twidth: options.width\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMajorTextAlign(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextAlignLike>\n\t): Partial<EShapeTextAlignLike> | undefined {\n\t\tconst position = this.position;\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMajorTickTextAlignHorizontal(position),\n\t\t\tvertical: options?.vertical ?? theme.getMajorTickTextAlignVertical(position)\n\t\t};\n\t}\n\n\tprotected toTickMajorTextOffset(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMajorTextSpacing(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMajorTextPadding(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> {\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMajorTickTextPaddingHorizontal(),\n\t\t\tvertical: options?.vertical ?? theme.getMajorTickTextPaddingVertical()\n\t\t};\n\t}\n\n\tprotected toTickMajorTextDirection(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTextDirectionOption\n\t): EShapeTextDirection {\n\t\treturn toEnum(options ?? theme.getMajorTickTextDirection(), EShapeTextDirection);\n\t}\n\n\tprotected toTickMajorTextColor(theme: THEME, options?: number): number | undefined {\n\t\treturn options ?? theme.getMajorTickTextColor();\n\t}\n\n\tprotected toTickMinorFormatter(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickMinorOptions\n\t): NumberFormatter | undefined {\n\t\tconst text = options?.text;\n\t\tif (text) {\n\t\t\tconst format = text.format;\n\t\t\tif (format === null) {\n\t\t\t\treturn undefined;\n\t\t\t} else if (format != null) {\n\t\t\t\treturn NumberFormatters.create(format);\n\t\t\t} else {\n\t\t\t\tconst formatter = text.formatter;\n\t\t\t\tif (formatter) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tformat: formatter\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tconst format = theme.getMinorTickTextFormat();\n\t\tif (format != null) {\n\t\t\treturn NumberFormatters.create(format);\n\t\t}\n\t\treturn undefined;\n\t}\n\n\tprotected toTickMinorText(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTickTextOptions\n\t): DChartAxisBaseOptionParserText | undefined {\n\t\toptions = options || {};\n\t\treturn {\n\t\t\tformat: options.format,\n\t\t\tcolor: this.toTickMinorTextColor(theme, options.color),\n\t\t\talpha: options.alpha,\n\t\t\tfamily: options.family,\n\t\t\tsize: options.size,\n\t\t\tweight: toEnum(options.weight, EShapeTextWeight),\n\t\t\talign: this.toTickMinorTextAlign(theme, options.align),\n\t\t\toffset: this.toTickMinorTextOffset(theme, options.offset),\n\t\t\tstyle: toEnum(options.style, EShapeTextStyle),\n\t\t\toutline: this.toTickMinorTextOutline(theme, options.outline),\n\t\t\tspacing: this.toTickMinorTextSpacing(theme, options.spacing),\n\t\t\tdirection: this.toTickMinorTextDirection(theme, options.direction),\n\t\t\tpadding: this.toTickMinorTextPadding(theme, options.padding),\n\t\t\tclipping: options.clipping\n\t\t};\n\t}\n\n\tprotected toTickMinorTextOutline(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOutlineLike>\n\t): Partial<EShapeTextOutlineLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\tenable: options.enable,\n\t\t\t\tcolor: options.color,\n\t\t\t\talpha: options.alpha,\n\t\t\t\twidth: options.width\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMinorTextAlign(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextAlignLike>\n\t): Partial<EShapeTextAlignLike> | undefined {\n\t\tconst position = this.position;\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMinorTickTextAlignHorizontal(position),\n\t\t\tvertical: options?.vertical ?? theme.getMinorTickTextAlignVertical(position)\n\t\t};\n\t}\n\n\tprotected toTickMinorTextOffset(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMinorTextSpacing(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toTickMinorTextPadding(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> {\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getMinorTickTextPaddingHorizontal(),\n\t\t\tvertical: options?.vertical ?? theme.getMinorTickTextPaddingVertical()\n\t\t};\n\t}\n\n\tprotected toTickMinorTextDirection(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTextDirectionOption\n\t): EShapeTextDirection {\n\t\treturn toEnum(options ?? theme.getMinorTickTextDirection(), EShapeTextDirection);\n\t}\n\n\tprotected toTickMinorTextColor(theme: THEME, options?: number): number | undefined {\n\t\treturn options ?? theme.getMinorTickTextColor();\n\t}\n\n\tprotected toLabel(theme: THEME, options?: OPTIONS): DeepPartial<EShapeTextLike> | undefined {\n\t\tconst label = options?.label;\n\t\tif (label) {\n\t\t\treturn {\n\t\t\t\tvalue: label.value,\n\t\t\t\tcolor: this.toLabelColor(theme, label.color),\n\t\t\t\talpha: label.alpha,\n\t\t\t\tfamily: label.family,\n\t\t\t\tsize: label.size,\n\t\t\t\tweight: toEnum(label.weight, EShapeTextWeight),\n\t\t\t\talign: this.toLabelAlign(theme, label.align),\n\t\t\t\toffset: this.toLabelOffset(theme, label.offset),\n\t\t\t\tstyle: toEnum(label.style, EShapeTextStyle),\n\t\t\t\toutline: this.toLabelOutline(theme, label.outline),\n\t\t\t\tspacing: this.toLabelSpacing(theme, label.spacing),\n\t\t\t\tdirection: this.toLabelDirection(theme, label.direction),\n\t\t\t\tpadding: this.toLabelPadding(theme, label.padding),\n\t\t\t\tclipping: label.clipping\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelOutline(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOutlineLike>\n\t): Partial<EShapeTextOutlineLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\tenable: options.enable,\n\t\t\t\tcolor: options.color,\n\t\t\t\talpha: options.alpha,\n\t\t\t\twidth: options.width\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelAlign(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextAlignLike>\n\t): Partial<EShapeTextAlignLike> | undefined {\n\t\tconst position = this.position;\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getLabelAlignHorizontal(position),\n\t\t\tvertical: options?.vertical ?? theme.getLabelAlignVertical(position)\n\t\t};\n\t}\n\n\tprotected toLabelOffset(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelSpacing(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> | undefined {\n\t\tif (options) {\n\t\t\treturn {\n\t\t\t\thorizontal: options.horizontal,\n\t\t\t\tvertical: options.vertical\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected toLabelPadding(\n\t\ttheme: THEME,\n\t\toptions?: Partial<EShapeTextOffsetLike>\n\t): Partial<EShapeTextOffsetLike> {\n\t\treturn {\n\t\t\thorizontal: options?.horizontal ?? theme.getLabelPaddingHorizontal(),\n\t\t\tvertical: options?.vertical ?? theme.getLabelPaddingVertical()\n\t\t};\n\t}\n\n\tprotected toLabelDirection(\n\t\ttheme: THEME,\n\t\toptions?: DChartAxisBaseTextDirectionOption\n\t): EShapeTextDirection {\n\t\treturn toEnum(options ?? theme.getLabelDirection(), EShapeTextDirection);\n\t}\n\n\tprotected toLabelColor(theme: THEME, options?: number): number | undefined {\n\t\treturn options ?? theme.getLabelColor();\n\t}\n}\n"]}
|