@univerjs-pro/engine-chart 1.0.0-alpha.7 → 1.0.0-alpha.8
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/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/facade.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/chart-builder/candlestick-inline-table.d.ts +4 -0
- package/lib/types/chart-builder/chart-builder-adapter.d.ts +3 -3
- package/lib/types/chart-builder/chart-builder.d.ts +3 -3
- package/lib/types/chart-builder/chart-starter-data.d.ts +3 -0
- package/lib/types/chart-builder/chart-types.d.ts +71 -57
- package/lib/types/chart-builder/configuration/assertions.d.ts +1 -0
- package/lib/types/chart-builder/configuration/candlestick.d.ts +9 -0
- package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +3 -0
- package/lib/types/chart-builder/configuration/histogram.d.ts +11 -0
- package/lib/types/chart-builder/configuration/index.d.ts +4 -0
- package/lib/types/chart-builder/configuration/point-mapping.d.ts +3 -0
- package/lib/types/chart-builder/configuration/treemap.d.ts +8 -0
- package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +7 -3
- package/lib/types/chart-builder/conversion/chart-context-patch.d.ts +5 -0
- package/lib/types/chart-builder/conversion/chart-model-fields.d.ts +6 -0
- package/lib/types/chart-builder/conversion/resolve-chart-model-data.d.ts +3 -3
- package/lib/types/chart-builder/index.d.ts +4 -1
- package/lib/types/chart-builder/internal/host-builder-runtime.d.ts +0 -2
- package/lib/types/chart-text-measure-canvas.d.ts +6 -0
- package/lib/types/enum.d.ts +34 -1
- package/lib/types/facade/builders/f-candlestick-chart-builder.d.ts +133 -0
- package/lib/types/facade/builders/f-histogram-chart-builder.d.ts +74 -0
- package/lib/types/facade/builders/f-treemap-chart-builder.d.ts +34 -0
- package/lib/types/facade/builders/index.d.ts +3 -0
- package/lib/types/facade/chart-builder-type-map.d.ts +4 -1
- package/lib/types/facade/f-chart-base.d.ts +2 -2
- package/lib/types/index.d.ts +9 -8
- package/lib/types/models/chart-data-operators/histogram-data.d.ts +10 -0
- package/lib/types/models/chart-data-operators/index.d.ts +1 -0
- package/lib/types/models/chart-data-operators/operators.d.ts +7 -1
- package/lib/types/models/chart-data-operators/treemap-data.d.ts +3 -0
- package/lib/types/models/chart-locale-texts.d.ts +15 -1
- package/lib/types/models/chart-model.d.ts +215 -29
- package/lib/types/models/constants/default-chart-style.d.ts +43 -0
- package/lib/types/models/constants/histogram-defaults.d.ts +4 -0
- package/lib/types/models/constants/treemap.d.ts +1 -0
- package/lib/types/models/data-context-transformers/candlestick-data-context-transformer.d.ts +4 -0
- package/lib/types/models/data-context-transformers/histogram-data-context-transformer.d.ts +7 -0
- package/lib/types/models/data-context-transformers/treemap-data-context-transformer.d.ts +11 -0
- package/lib/types/models/echart-render-model.d.ts +10 -7
- package/lib/types/models/mode-converter/converters/boxplot-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/bubble-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/candlestick-chart-converter.d.ts +5 -0
- package/lib/types/models/mode-converter/converters/combination-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/funnel-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/heatmap-chart-convert.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/histogram-chart-converter.d.ts +4 -0
- package/lib/types/models/mode-converter/converters/pareto-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/pie-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/radar-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/relation-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/sankey-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/scatter-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/treemap-chart-converter.d.ts +4 -0
- package/lib/types/models/mode-converter/converters/waterfall-chart-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/converters/word-cloud-converter.d.ts +3 -2
- package/lib/types/models/mode-converter/render-spec-operators/tool-tip-operator.d.ts +8 -2
- package/lib/types/models/mode-converter/render-spec-operators/tools.d.ts +3 -2
- package/lib/types/types.d.ts +133 -8
- package/lib/types/util.d.ts +1 -7
- package/lib/types/wordcloud-chart/canvas.d.ts +3 -3
- package/lib/types/wordcloud-chart/core/layout/word-shrink.d.ts +5 -8
- package/lib/types/wordcloud-chart/core/text/formatter.d.ts +2 -2
- package/lib/types/wordcloud-chart/core/text/normalize.d.ts +2 -2
- package/lib/types/wordcloud-chart/defaults.d.ts +2 -2
- package/lib/types/wordcloud-chart/index.d.ts +1 -1
- package/lib/types/wordcloud-chart/types.d.ts +0 -3
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +4 -4
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { EChartsOption } from '../../../utils/echarts';
|
|
2
|
+
import type { ChartDirection, ChartStyle, EChartRenderSpecOperator, IChartConfig } from '../../../types';
|
|
2
3
|
import { InvalidValueType } from '../../../enum';
|
|
3
4
|
interface ITooltipFormatterDataContext {
|
|
4
5
|
category: IChartConfig['category'];
|
|
@@ -14,6 +15,11 @@ interface ITooltipFormatterDataContext {
|
|
|
14
15
|
maxText: string;
|
|
15
16
|
wordText: string;
|
|
16
17
|
frequencyText: string;
|
|
18
|
+
candlestickCategoryText: string;
|
|
19
|
+
candlestickOpenText: string;
|
|
20
|
+
candlestickHighText: string;
|
|
21
|
+
candlestickLowText: string;
|
|
22
|
+
candlestickCloseText: string;
|
|
17
23
|
isDateAxis: boolean | undefined;
|
|
18
24
|
allSeriesStyle: ChartStyle['allSeriesStyle'];
|
|
19
25
|
seriesStyleMap: ChartStyle['seriesStyleMap'];
|
|
@@ -29,7 +35,7 @@ interface ITooltipFormatters {
|
|
|
29
35
|
wordCloud: (params: any) => string;
|
|
30
36
|
}
|
|
31
37
|
export declare function excelDateToUnixMilliseconds(excelDate: number, useDefault1900DateSystem?: boolean): number;
|
|
32
|
-
export declare function createTooltipFormatterDataContext(spec:
|
|
38
|
+
export declare function createTooltipFormatterDataContext(spec: EChartsOption, style: ChartStyle, config: IChartConfig): ITooltipFormatterDataContext;
|
|
33
39
|
export declare function createLTRTooltipFormatters(context: ITooltipFormatterDataContext, config: IChartConfig): ITooltipFormatters;
|
|
34
40
|
export declare function createRTLTooltipFormatters(context: ITooltipFormatterDataContext, config: IChartConfig): ITooltipFormatters;
|
|
35
41
|
export declare function createTooltipFormatters(context: ITooltipFormatterDataContext, config: IChartConfig, direction: ChartDirection): ITooltipFormatters;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { EChartsOption } from '../../../utils/echarts';
|
|
2
|
+
import type { ChartStyle, EChartSeriesItem, ILabelStyle } from '../../../types';
|
|
2
3
|
import type { ISpecGrid } from './operator-types';
|
|
3
4
|
type PartialLabelStyle = Partial<Pick<ILabelStyle, 'visible' | 'color' | 'fontSize' | 'family' | 'italic' | 'bold' | 'underline' | 'strikethrough' | 'showMaxLabel' | 'showMinLabel'>>;
|
|
4
5
|
export declare function applyLabelStyle(spec: Record<string, any>, path: string, labelStyle: PartialLabelStyle): void;
|
|
5
6
|
export declare function applyLineStyle(spec: Record<string, any>, path: string, labelStyle: PartialLabelStyle): void;
|
|
6
7
|
export declare function toArray<T = unknown>(value: T | T[]): T[];
|
|
7
|
-
export declare function seriesForEach(series:
|
|
8
|
+
export declare function seriesForEach(series: EChartsOption['series'], func: (item: EChartSeriesItem, index: number) => void): void;
|
|
8
9
|
export declare function toPercentage(value: number, fixed?: number): string;
|
|
9
10
|
export declare const getCategoryLabelVertical: (gridInfo: ISpecGrid, style: ChartStyle) => number;
|
|
10
11
|
export declare const getCategoryLabelHorizontal: (gridInfo: ISpecGrid, style: ChartStyle, seriesCount: number, axisLabelMaxWidth?: number) => number;
|
package/lib/types/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { IDisposable, Nullable } from '@univerjs/core';
|
|
2
2
|
import type { Observable } from 'rxjs';
|
|
3
3
|
import type { ChartColor, IChartLinearGradient } from './chart-builder/chart-color';
|
|
4
|
-
import type { AreaLineStyle, AxisAlignEnum, AxisValueType, BarShape, CategoryType, ChartAxisDimension, ChartBorderDashType, ChartMarkLineLabelPosition, ChartSemanticAxis, ChartSourceDataTypeEnum, ChartTrendlineType, ChartTypeBits, ChartWaterfallPointRole, DataOrientation, InvalidValueType, IRuntimeAxisPosition, IRuntimeAxisPriority, LabelAlignEnum, LegendPositionEnum, LinePointShape, PieLabelPosition, RadarShape, RelationChartLayoutEnum, SelectModeEnum, SeriesLabelPosition, TitlePositionEnum, WaterfallSeriesTypeEnum, WaterfallStackTypeEnum, WordCloudShapeEnum } from './enum';
|
|
4
|
+
import type { AreaLineStyle, AxisAlignEnum, AxisValueType, BarShape, CategoryType, ChartAxisDimension, ChartBorderDashType, ChartHistogramBinKind, ChartMarkLineLabelPosition, ChartSemanticAxis, ChartSourceDataTypeEnum, ChartTrendlineType, ChartTypeBits, ChartWaterfallPointRole, DataOrientation, HistogramBinningMode, InvalidValueType, IRuntimeAxisPosition, IRuntimeAxisPriority, LabelAlignEnum, LabelContentType, LegendPositionEnum, LinePointShape, PieLabelPosition, RadarShape, RelationChartLayoutEnum, SelectModeEnum, SeriesLabelPosition, TitlePositionEnum, TreemapParentLabelLayout, WaterfallSeriesTypeEnum, WaterfallStackTypeEnum, WordCloudShapeEnum } from './enum';
|
|
5
5
|
import type { ICartesianPointData } from './models/chart-data-operators/cartesian-point-data';
|
|
6
6
|
import type { IChartLocaleTexts } from './models/chart-locale-texts';
|
|
7
7
|
import type { IEchartTheme } from './models/constants/build-in-theme';
|
|
@@ -10,6 +10,10 @@ import type { IWordCloudRenderConfig } from './wordcloud-chart/word-cloud-render
|
|
|
10
10
|
export type DeepPartial<T> = T extends IChartLinearGradient ? T : T extends Record<string, any> ? T extends any[] ? T : {
|
|
11
11
|
[key in keyof T]+?: DeepPartial<T[key]>;
|
|
12
12
|
} : T;
|
|
13
|
+
/** Recursive patch shape that permits `null` at every field and treats arrays as atomic values. */
|
|
14
|
+
export type DeepNullish<T> = T extends (...args: never[]) => unknown ? T : T extends readonly unknown[] ? T : T extends object ? {
|
|
15
|
+
[K in keyof T]?: DeepNullish<T[K]> | null;
|
|
16
|
+
} : T;
|
|
13
17
|
export type ChartDirection = 'ltr' | 'rtl';
|
|
14
18
|
export interface IChartDataSource {
|
|
15
19
|
data$: Observable<IUniverDataSet>;
|
|
@@ -28,8 +32,7 @@ export interface IDimensionDefinition {
|
|
|
28
32
|
}
|
|
29
33
|
export type DimensionDefinitionLoose = IDimensionDefinition['name'] | IDimensionDefinition;
|
|
30
34
|
export type OptionDataValue = string | number | Date | null | undefined;
|
|
31
|
-
export type
|
|
32
|
-
export type ChartDataSourceValues = ChartDataSourceValue[][];
|
|
35
|
+
export type ChartDataSourceValues = OptionDataValue[][];
|
|
33
36
|
/**
|
|
34
37
|
* Canonical chart dataset used by chart context operators and chart-data builders.
|
|
35
38
|
*
|
|
@@ -47,10 +50,93 @@ export interface IUniverDataSet {
|
|
|
47
50
|
sourceType?: ChartSourceDataTypeEnum[][];
|
|
48
51
|
sourceLabels?: string[][];
|
|
49
52
|
}
|
|
53
|
+
/** Ordered field names that define the persisted Candlestick OHLC mapping contract. */
|
|
54
|
+
export declare const CHART_CANDLESTICK_MAPPING_FIELDS: readonly ["openIndex", "highIndex", "lowIndex", "closeIndex"];
|
|
55
|
+
/** Required semantic OHLC source fields for one Candlestick series. */
|
|
56
|
+
export interface IChartCandlestickMappingSpec {
|
|
57
|
+
openIndex: number;
|
|
58
|
+
highIndex: number;
|
|
59
|
+
lowIndex: number;
|
|
60
|
+
closeIndex: number;
|
|
61
|
+
}
|
|
62
|
+
/** Semantic body and wick appearance for one Candlestick state. */
|
|
63
|
+
export interface IChartCandlestickStateStyleSpec {
|
|
64
|
+
color?: string;
|
|
65
|
+
fillOpacity?: number;
|
|
66
|
+
border?: {
|
|
67
|
+
color?: string;
|
|
68
|
+
width?: number;
|
|
69
|
+
opacity?: number;
|
|
70
|
+
};
|
|
71
|
+
hollow?: boolean;
|
|
72
|
+
}
|
|
73
|
+
/** Semantic Candlestick style overrides persisted by the chart model. */
|
|
74
|
+
export interface IChartCandlestickSpec {
|
|
75
|
+
rising?: IChartCandlestickStateStyleSpec;
|
|
76
|
+
falling?: IChartCandlestickStateStyleSpec;
|
|
77
|
+
doji?: IChartCandlestickStateStyleSpec;
|
|
78
|
+
candleWidth?: number;
|
|
79
|
+
}
|
|
80
|
+
/** Histogram bin sizing configuration persisted by the semantic chart model. */
|
|
81
|
+
export type IChartHistogramBinningSpec = {
|
|
82
|
+
mode: typeof HistogramBinningMode.Count;
|
|
83
|
+
count: number;
|
|
84
|
+
} | {
|
|
85
|
+
mode: typeof HistogramBinningMode.Width;
|
|
86
|
+
width: number;
|
|
87
|
+
};
|
|
88
|
+
/** Persisted Histogram data-processing options. Omission selects Scott Auto binning. */
|
|
89
|
+
export interface IChartHistogramDataSpec {
|
|
90
|
+
binning?: IChartHistogramBinningSpec;
|
|
91
|
+
underflowThreshold?: number;
|
|
92
|
+
overflowThreshold?: number;
|
|
93
|
+
}
|
|
94
|
+
/** Persisted Histogram appearance options. */
|
|
95
|
+
export interface IChartHistogramStyleSpec {
|
|
96
|
+
/** Gap ratio between adjacent bins. Effective values are from 0 through 0.9. */
|
|
97
|
+
binGap?: number;
|
|
98
|
+
}
|
|
99
|
+
/** Public Histogram semantic configuration. */
|
|
100
|
+
export interface IChartHistogramSpec extends IChartHistogramDataSpec, IChartHistogramStyleSpec {
|
|
101
|
+
}
|
|
102
|
+
/** Persisted leaf-label style supported by Treemap charts. */
|
|
103
|
+
export interface IChartTreemapLabelSpec {
|
|
104
|
+
visible?: boolean;
|
|
105
|
+
contentType?: LabelContentType;
|
|
106
|
+
color?: string;
|
|
107
|
+
fontSize?: number;
|
|
108
|
+
bold?: boolean;
|
|
109
|
+
italic?: boolean;
|
|
110
|
+
family?: string;
|
|
111
|
+
}
|
|
112
|
+
/** Public Treemap semantic style configuration. */
|
|
113
|
+
export interface IChartTreemapSpec {
|
|
114
|
+
parentLabelLayout?: TreemapParentLabelLayout;
|
|
115
|
+
label?: IChartTreemapLabelSpec;
|
|
116
|
+
}
|
|
117
|
+
/** Runtime-only renderer-independent Treemap node. */
|
|
118
|
+
export interface IChartTreemapNode {
|
|
119
|
+
id: string;
|
|
120
|
+
name: string;
|
|
121
|
+
path: string[];
|
|
122
|
+
value: number;
|
|
123
|
+
selfValue: number;
|
|
124
|
+
children?: IChartTreemapNode[];
|
|
125
|
+
}
|
|
126
|
+
/** Runtime-only Treemap data prepared from the canonical flat mapping. */
|
|
127
|
+
export interface IChartTreemapData {
|
|
128
|
+
valueFieldName: string;
|
|
129
|
+
nodes: IChartTreemapNode[];
|
|
130
|
+
/** Runtime-only top-level first-source order used for stable palette assignment. */
|
|
131
|
+
paletteOrder?: string[];
|
|
132
|
+
diagnostic?: string;
|
|
133
|
+
}
|
|
50
134
|
export interface IChartContext {
|
|
51
135
|
headers?: string[];
|
|
52
136
|
categoryType?: CategoryType;
|
|
53
137
|
categoryIndex?: number;
|
|
138
|
+
/** Ordered root-to-leaf hierarchy field indexes. Historical payloads omit it. */
|
|
139
|
+
hierarchyIndexes?: number[];
|
|
54
140
|
/**
|
|
55
141
|
* the flag to indicate whether the chart use date axis, only all category data is date type, the chart will use date axis, if there are some string type data, the chart will use category axis even the flag is true.
|
|
56
142
|
*/
|
|
@@ -67,6 +153,8 @@ export interface IChartContext {
|
|
|
67
153
|
scatterLabelIndex?: number;
|
|
68
154
|
bubbleSizeIndex?: number;
|
|
69
155
|
bubbleSeriesIndex?: number;
|
|
156
|
+
candlestick?: IChartCandlestickMappingSpec;
|
|
157
|
+
histogram?: IChartHistogramDataSpec;
|
|
70
158
|
}
|
|
71
159
|
export interface IRelationNodes {
|
|
72
160
|
id: string;
|
|
@@ -94,6 +182,9 @@ export interface IChartData {
|
|
|
94
182
|
*/
|
|
95
183
|
dataset?: IUniverDataSet;
|
|
96
184
|
cartesianPoint?: ICartesianPointData;
|
|
185
|
+
candlestickData?: IChartCandlestickData;
|
|
186
|
+
histogramData?: IChartHistogramData;
|
|
187
|
+
treemapData?: IChartTreemapData;
|
|
97
188
|
heatmapData?: {
|
|
98
189
|
xData: string[];
|
|
99
190
|
yData: string[];
|
|
@@ -118,6 +209,38 @@ export interface IChartData {
|
|
|
118
209
|
isCircular: boolean;
|
|
119
210
|
};
|
|
120
211
|
}
|
|
212
|
+
/** One semantic OHLC point. Renderer tuple order is intentionally absent. */
|
|
213
|
+
export interface IChartCandlestickPoint {
|
|
214
|
+
open: number;
|
|
215
|
+
high: number;
|
|
216
|
+
low: number;
|
|
217
|
+
close: number;
|
|
218
|
+
labels: {
|
|
219
|
+
open: string;
|
|
220
|
+
high: string;
|
|
221
|
+
low: string;
|
|
222
|
+
close: string;
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
/** One aligned semantic Candlestick series. */
|
|
226
|
+
export interface IChartCandlestickData {
|
|
227
|
+
name: string;
|
|
228
|
+
items: Array<IChartCandlestickPoint | null>;
|
|
229
|
+
}
|
|
230
|
+
/** Numeric semantic Histogram bin. Renderer labels are intentionally absent. */
|
|
231
|
+
export interface IChartHistogramBin {
|
|
232
|
+
kind: ChartHistogramBinKind;
|
|
233
|
+
lowerBound?: number;
|
|
234
|
+
upperBound?: number;
|
|
235
|
+
count: number;
|
|
236
|
+
}
|
|
237
|
+
/** Derived runtime-only Histogram data. */
|
|
238
|
+
export interface IChartHistogramData {
|
|
239
|
+
sourceIndex: number;
|
|
240
|
+
name: string;
|
|
241
|
+
validSampleCount: number;
|
|
242
|
+
bins: IChartHistogramBin[];
|
|
243
|
+
}
|
|
121
244
|
export interface ISankeyNode {
|
|
122
245
|
name: string;
|
|
123
246
|
}
|
|
@@ -439,6 +562,9 @@ export interface IChartStyle {
|
|
|
439
562
|
unit?: string;
|
|
440
563
|
label?: ISeriesLabelStyle;
|
|
441
564
|
};
|
|
565
|
+
candlestick: IChartCandlestickSpec;
|
|
566
|
+
histogram: IChartHistogramStyleSpec;
|
|
567
|
+
treemap: IChartTreemapSpec;
|
|
442
568
|
}
|
|
443
569
|
export interface IRelationForceOptions {
|
|
444
570
|
repulsion?: number;
|
|
@@ -457,7 +583,7 @@ export interface IChartSnapshot {
|
|
|
457
583
|
id: string;
|
|
458
584
|
chartType: ChartTypeBits;
|
|
459
585
|
orient?: DataOrientation;
|
|
460
|
-
context?: Pick<IChartContext, 'categoryIndex' | 'seriesIndexes' | 'transform'>;
|
|
586
|
+
context?: Pick<IChartContext, 'categoryIndex' | 'hierarchyIndexes' | 'seriesIndexes' | 'transform' | 'candlestick' | 'histogram'>;
|
|
461
587
|
style?: ChartStyle;
|
|
462
588
|
dataAggregation?: IChartDataAggregation;
|
|
463
589
|
}
|
|
@@ -662,13 +788,12 @@ export interface IChartInstanceConstructor<Spec> {
|
|
|
662
788
|
}
|
|
663
789
|
export type OptionalDataValue = number | string | null | undefined;
|
|
664
790
|
export type ExtractArrayItem<T> = T extends Array<infer U> ? U : never;
|
|
665
|
-
export type
|
|
666
|
-
export type EChartSeriesItem = ExtractArrayItem<EChartSpec['series']> & {
|
|
791
|
+
export type EChartSeriesItem = ExtractArrayItem<EChartsOption['series']> & {
|
|
667
792
|
rawData?: number[];
|
|
668
793
|
seriesId: string;
|
|
669
794
|
};
|
|
670
|
-
export type EChartInstance = IChartInstance<
|
|
671
|
-
export type EChartRenderSpecOperator = RenderSpecOperator<
|
|
795
|
+
export type EChartInstance = IChartInstance<EChartsOption>;
|
|
796
|
+
export type EChartRenderSpecOperator = RenderSpecOperator<EChartsOption>;
|
|
672
797
|
export interface IChartHostRect {
|
|
673
798
|
width: number;
|
|
674
799
|
height: number;
|
package/lib/types/util.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare const chartBitsUtils: {
|
|
|
3
3
|
has(bit: number, attribute: number): boolean;
|
|
4
4
|
baseOn(bit: number, base: number): boolean;
|
|
5
5
|
remove(bit: number, attribute: number): number;
|
|
6
|
-
chartBitToString(bit: ChartTypeBits): "" | "line" | "bar" | "wordCloud" | "scatter" | "pie" | "radar" | "graph" | "funnel" | "sankey" | "boxplot" | "heatmap" | "combination";
|
|
6
|
+
chartBitToString(bit: ChartTypeBits): "" | "line" | "bar" | "wordCloud" | "candlestick" | "scatter" | "pie" | "radar" | "treemap" | "graph" | "funnel" | "sankey" | "boxplot" | "heatmap" | "combination";
|
|
7
7
|
};
|
|
8
8
|
export declare function mergeChartConfig<T extends object>(current: T | undefined, update: Partial<T>): T;
|
|
9
9
|
export declare const setProperty: (data: Record<string, any>, propertyPath: string, value: any) => void;
|
|
@@ -14,11 +14,6 @@ export declare const getProperty: <T = any>(data: Record<string, any> | undefine
|
|
|
14
14
|
*/
|
|
15
15
|
export declare const setGraphicToSpec: (spec: Record<string, any>, graphicElements: unknown[]) => void;
|
|
16
16
|
export declare const translateAngleToRadian: (angle: number) => number;
|
|
17
|
-
interface ISize {
|
|
18
|
-
width: number;
|
|
19
|
-
height: number;
|
|
20
|
-
}
|
|
21
|
-
export declare const calcPosition: (text: string, font: string) => ISize;
|
|
22
17
|
/**
|
|
23
18
|
* We define the chart type can use trend line. In excel it also can use for combined chart ro bar chart.
|
|
24
19
|
* @param {ChartTypeBits} chartType The test chart type.
|
|
@@ -26,4 +21,3 @@ export declare const calcPosition: (text: string, font: string) => ISize;
|
|
|
26
21
|
*/
|
|
27
22
|
export declare const chartTypeCanUseTrendLine: (chartType: ChartTypeBits) => boolean;
|
|
28
23
|
export declare function isNegativeRedCached(fmt: string): boolean | undefined;
|
|
29
|
-
export {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { IWordCloudLayoutMask, IWordCloudLayoutOptions, IWordCloudLayoutResult, IWordCloudMaskGrid,
|
|
1
|
+
import type { IWordCloudLayoutMask, IWordCloudLayoutOptions, IWordCloudLayoutResult, IWordCloudMaskGrid, IWordCloudProtocolSpec, IWordCloudTextMeasurer } from './types';
|
|
2
2
|
export interface IWordCloudLayoutRuntime {
|
|
3
3
|
measurer: IWordCloudTextMeasurer;
|
|
4
4
|
mask?: IWordCloudLayoutMask;
|
|
5
5
|
maskGrid?: IWordCloudMaskGrid;
|
|
6
6
|
}
|
|
7
|
-
export declare function layoutWordCloudChart(spec:
|
|
8
|
-
export declare function resolveLayoutOptions(spec:
|
|
7
|
+
export declare function layoutWordCloudChart(spec: IWordCloudProtocolSpec, runtime: IWordCloudLayoutRuntime): IWordCloudLayoutResult;
|
|
8
|
+
export declare function resolveLayoutOptions(spec: IWordCloudProtocolSpec): IWordCloudLayoutOptions;
|
|
@@ -4,19 +4,16 @@ export interface IWordShrinkCandidate {
|
|
|
4
4
|
readonly ratio: number;
|
|
5
5
|
readonly isDynamicShrink: boolean;
|
|
6
6
|
}
|
|
7
|
-
export type WordShrinkCandidate = IWordShrinkCandidate;
|
|
8
7
|
export interface IWordShrinkStats {
|
|
9
8
|
readonly initialRatio: number;
|
|
10
9
|
readonly finalDynamicRatio: number;
|
|
11
10
|
readonly dynamicShrinkCount: number;
|
|
12
11
|
}
|
|
13
|
-
export type WordShrinkStats = IWordShrinkStats;
|
|
14
12
|
export interface IWordShrinkSessionOptions {
|
|
15
13
|
readonly initialRatio: number;
|
|
16
14
|
readonly fontSizeLimitMin: number;
|
|
17
15
|
readonly maxProbeCount?: number;
|
|
18
16
|
}
|
|
19
|
-
export type WordShrinkSessionOptions = IWordShrinkSessionOptions;
|
|
20
17
|
export declare const MAX_DYNAMIC_SHRINK_PROBE_COUNT = 16;
|
|
21
18
|
export declare class WordShrinkSession {
|
|
22
19
|
private readonly _initialRatio;
|
|
@@ -26,14 +23,14 @@ export declare class WordShrinkSession {
|
|
|
26
23
|
private _previousPlacedDesignSize;
|
|
27
24
|
private _previousPlacedActualSize;
|
|
28
25
|
private _dynamicShrinkCount;
|
|
29
|
-
constructor(options:
|
|
30
|
-
resolveInitialCandidate(designSize: number):
|
|
26
|
+
constructor(options: IWordShrinkSessionOptions);
|
|
27
|
+
resolveInitialCandidate(designSize: number): IWordShrinkCandidate;
|
|
31
28
|
iterDynamicCandidates(params: {
|
|
32
29
|
readonly designSize: number;
|
|
33
30
|
readonly currentActualSize: number;
|
|
34
|
-
}): IterableIterator<
|
|
35
|
-
commitPlaced(candidate:
|
|
31
|
+
}): IterableIterator<IWordShrinkCandidate>;
|
|
32
|
+
commitPlaced(candidate: IWordShrinkCandidate): void;
|
|
36
33
|
getDynamicRatio(): number;
|
|
37
|
-
getStats():
|
|
34
|
+
getStats(): IWordShrinkStats;
|
|
38
35
|
}
|
|
39
36
|
export declare function resolveMinShrinkRatio(value: unknown, fallback: number): number;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { INormalizedWordCloudDatum, IWordCloudEncodedWord,
|
|
2
|
-
export declare function encodeWordCloudWords(words: INormalizedWordCloudDatum[], spec:
|
|
1
|
+
import type { INormalizedWordCloudDatum, IWordCloudEncodedWord, IWordCloudProtocolSpec } from '../../types';
|
|
2
|
+
export declare function encodeWordCloudWords(words: INormalizedWordCloudDatum[], spec: IWordCloudProtocolSpec): IWordCloudEncodedWord[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { INormalizedWordCloudDatum,
|
|
2
|
-
export declare function normalizeWordCloudData(spec:
|
|
1
|
+
import type { INormalizedWordCloudDatum, IWordCloudProtocolSpec } from '../../types';
|
|
2
|
+
export declare function normalizeWordCloudData(spec: IWordCloudProtocolSpec): INormalizedWordCloudDatum[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { IResolvedWordCloudSpec,
|
|
1
|
+
import type { IResolvedWordCloudSpec, IWordCloudProtocolSpec } from './types';
|
|
2
2
|
export declare const DEFAULT_WORD_CLOUD_CHART_SPEC: {
|
|
3
3
|
type: "wordcloud";
|
|
4
4
|
data: {
|
|
@@ -67,4 +67,4 @@ export declare const DEFAULT_WORD_CLOUD_CHART_SPEC: {
|
|
|
67
67
|
fields: never[];
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
|
-
export declare function resolveWordCloudSpec(spec:
|
|
70
|
+
export declare function resolveWordCloudSpec(spec: IWordCloudProtocolSpec): IResolvedWordCloudSpec;
|
|
@@ -6,7 +6,7 @@ export { createBuiltinMaskGrid, createMaskGridFromShape, createTextMaskGrid, nor
|
|
|
6
6
|
export { encodeWordCloudWords } from './core/text/formatter';
|
|
7
7
|
export { normalizeWordCloudData } from './core/text/normalize';
|
|
8
8
|
export { DEFAULT_WORD_CLOUD_CHART_SPEC, resolveWordCloudSpec } from './defaults';
|
|
9
|
-
export type { INormalizedWordCloudDatum, IResolvedWordCloudSpec, IWordCloudBounds, IWordCloudChartSpec, IWordCloudDataSource, IWordCloudEChartsMaskSource, IWordCloudEChartsSeriesDataItem, IWordCloudEChartsSeriesOption, IWordCloudEncodedWord, IWordCloudEncoding, IWordCloudFieldMapping, IWordCloudLayoutMask, IWordCloudLayoutOptions, IWordCloudLayoutResult, IWordCloudMaskGrid, IWordCloudMaskShapeSpec, IWordCloudPlacedWord, IWordCloudProtocolSpec, IWordCloudSegmentationRegion, IWordCloudSegmentationResult,
|
|
9
|
+
export type { INormalizedWordCloudDatum, IResolvedWordCloudSpec, IWordCloudBounds, IWordCloudChartSpec, IWordCloudDataSource, IWordCloudEChartsMaskSource, IWordCloudEChartsSeriesDataItem, IWordCloudEChartsSeriesOption, IWordCloudEncodedWord, IWordCloudEncoding, IWordCloudFieldMapping, IWordCloudLayoutMask, IWordCloudLayoutOptions, IWordCloudLayoutResult, IWordCloudMaskGrid, IWordCloudMaskShapeSpec, IWordCloudPlacedWord, IWordCloudProtocolSpec, IWordCloudSegmentationRegion, IWordCloudSegmentationResult, IWordCloudTextMarkAttrs, IWordCloudTextMarkSpec, IWordCloudTextMeasurer, IWordCloudTextSprite, WordCloudFontSizeRange, WordCloudShape, } from './types';
|
|
10
10
|
export { DEFAULT_WORD_CLOUD_SHAPE, normalizeWordCloudShape, SUPPORTED_WORD_CLOUD_SHAPES } from './types';
|
|
11
11
|
export { DEFAULT_WORD_CLOUD_RENDER_CONFIG, resolveWordCloudRenderConfig, } from './word-cloud-render-config';
|
|
12
12
|
export type { IResolvedWordCloudRenderConfig, IWordCloudRenderConfig, } from './word-cloud-render-config';
|
|
@@ -60,9 +60,6 @@ export interface IWordCloudEChartsSeriesOption {
|
|
|
60
60
|
minShrinkRatio?: number;
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
|
-
export type IWordCloudSpecBase = IWordCloudProtocolSpec;
|
|
64
|
-
export type IWordCloudSeriesDataItem = IWordCloudEChartsSeriesDataItem;
|
|
65
|
-
export type IWordCloudSeriesOption = IWordCloudEChartsSeriesOption;
|
|
66
63
|
export interface IWordCloudDataSource {
|
|
67
64
|
id?: string;
|
|
68
65
|
values: Array<Record<string, unknown>>;
|
package/lib/umd/facade.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0xb2fb(){const _0x5b39c3=['setWordCloudShape','setIncludeZeroValues','\x20has\x20an\x20invalid\x20data-point\x20index.','clearXAxis','FRelationChartBuilder','setLegend','removeTrendline','resetStackType','length','resetFunnelGap','_compose','Positive','8960832PKLFEY','clearRelationForce','AreaLineStyle','resetInvalidValueStrategy','clearAggregation','setValueSuffix','toPrimitive','clearRightYAxisTitle','clearMaskImage','FWordCloudChartBuilder','clearParetoBarStyle','ColumnPercentStacked','resetIncludeZeroValues','setAreaLineStyle','series','resetRelationLayout','setUseAbsoluteValue','BarPercentStacked','FLineChartBuilder','ChartWaterfallPointRole','setDecimalPlaces','setXAxisTitle','setCombinationSeriesType','resetRosePie','string','56oGldVC','builder','resetExplosion','resetRadarShape','Subtotal','Chart\x20builder\x20is\x20not\x20registered:\x20','_builder','ChartSeriesAxis','ChartSeriesClearTarget','@univerjs-pro/engine-chart','resetWordCloudRepeat','setSeries','clearYAxisTitle','clearLineStyle','FAxisChartBuilder','ChartAggregationTarget','184iEKpoO','setEmphasisEnabled','Line','resetUseSubtotal','clearConnector','48HlGjId','_record','ChartVisualMapType','setSliceBorderColor','setCellLabel','Radar','InvalidValueType','Module','setCumulativeLineStyle','setMarkLines','setValueUnit','FEnum','commit','527849QNyxIY','setTheme','1838028StEKgU','resetPaddingAngleEnabled','set','27bDdqxW','clearAreaLineStyle','ChartAxisTarget','clearRightYAxis','resetRepeat','resetAutoGradientFill','setAggregation','HostBuilderComposer','FCartesianChartBuilder','setUseSubtotal','BarStacked','FHeatmapChartBuilder','clearValueSuffix','setConnector','setDoughnutHole','setShape','FChartBase','resetSeriesAxis','setFunnelGap','resetRelationNodeShape','isInteger','getId','setLayout','Boxplot','clearTheme','SeriesLabelPosition','setAllSeriesStyle','extend','setAxisPointer','getChartBuilderConstructor','create','ChartAxisName','waterfall','setWordCloudRepeat','setSubtotalStyle','constructor','clearCumulativeLineStyle','2BzDXSy','setParetoBarStyle','FScatterChartBuilder','values','clearWaterfallConnector','resetCombinationSeriesType','setNegativeStyle','setPieLabel','resetUseDateAxis','resetCircularLabelRotation','FFunnelChartBuilder','Pareto','FCombinationChartBuilder','setBar','setPointRoles','setBubbleMapping','clearAxisTitle','iterator','clearNegativeStyle','Funnel','setFill','clearCategoryField','ChartSeriesTypeString','resetShape','UniverCoreFacade','setRelationNodeShape','resetSeriesType','setCategoryField','apply','setRepeat','ChartAxisPointerTarget','setYAxisTitle','clearBubbleMapping','Column','ChartSemanticAxis','clearValueFields','ChartAllSeriesStyleTarget','resetCombinationSeriesAxis','object','setExplosion','resetUseAbsoluteValue','get','clearValueUnit','resetNodeShape','setPositiveStyle','setNodeShape','ChartTypeString','Bubble','clearAxisPointer','Donut','forEach','setWaterfallStyle','AreaStacked','setYAxis','Waterfall','clearLegend','clearAllSeriesStyle','clearSliceBorderColor','@univerjs/core/facade','5657900nvgsiq','setTitle','clearCellLabel','setRelationForce','ChartTrendlineType','clearBarStyle','setSeriesAxis','clearMarkLines','function','setValueRange','TitlePositionEnum','clearWaterfallStyle','compose','exportImage','_setType','FBoxplotChartBuilder','clearXAxisTitle','defineProperty','clearYAxis','FBubbleChartBuilder','setPaddingAngleEnabled','setVisualMapType','describe','mergePending','setStackType','setHalfPie','clearTitle','Pie','dataPointIndex','setUseValueAsSymbolSize','resetUseValueAsSymbolSize','resetHalfPie','getChartBuilderPendingConfig','WaterfallStackTypeEnum','setTrendline','UniverProEngineChartFacade','6481585RfimQX','ChartAppearanceTarget','setAxisTitle','ChartWaterfallStyleTarget','FWaterfallChartBuilder','RelationChartLayoutEnum','toStringTag','LabelAlignEnum','ChartAxisDimension','adapter','clearScatterMapping','resolveData','clearSubtitle','setForce','163406gUaMuv','FPieChartBuilder','symbol','WordCloudShapeEnum','setMaskImage','ChartAxisTickPosition','resetDecimalPlaces','call','resetGap','name','clearPieLabel','getPointRoles','_context','setScatterMapping','clearBar','resetEmphasisEnabled','resetVisualMapType','ChartMarkLineLabelPosition','RightY','setWaterfallConnector','entries','setSeriesType','clearPalette','clearSeries','setSliceStyle','resetValueScale','resetLabelLineVisible','setXAxis','FChartBuilderBase','Relation','setValueFields','ChartWordCloudShapeSource','setRelationLayout','setPalette','setLabelLineVisible','default','FChartsBase','161740flpXBO','resetRadarFill','setValueScale','setRosePie','setType','PieLabelPosition','wrap','clearTrendlines','Sankey','clearValueRange','_cache','clearSliceStyle','amd','LinePointShape','setAppearance','setRightYAxis','resetFill','pointRoles.','SelectModeEnum'];_0xb2fb=function(){return _0x5b39c3;};return _0xb2fb();}function _0x2707(_0x4c8dec,_0x2a6755){_0x4c8dec=_0x4c8dec-0xf8;const _0xb2fb53=_0xb2fb();let _0x270767=_0xb2fb53[_0x4c8dec];return _0x270767;}(function(_0x259fb5,_0xf78110){const _0x3301f3=_0x2707,_0x5ed499=_0x259fb5();while(!![]){try{const _0x522ca2=parseInt(_0x3301f3(0x11c))/0x1*(parseInt(_0x3301f3(0x189))/0x2)+parseInt(_0x3301f3(0x20a))/0x3+parseInt(_0x3301f3(0x1f6))/0x4*(parseInt(_0x3301f3(0x1ae))/0x5)+-parseInt(_0x3301f3(0x1cd))/0x6+-parseInt(_0x3301f3(0x208))/0x7*(parseInt(_0x3301f3(0x1e6))/0x8)+-parseInt(_0x3301f3(0x20d))/0x9*(parseInt(_0x3301f3(0x157))/0xa)+-parseInt(_0x3301f3(0x17b))/0xb*(-parseInt(_0x3301f3(0x1fb))/0xc);if(_0x522ca2===_0xf78110)break;else _0x5ed499['push'](_0x5ed499['shift']());}catch(_0x4dec70){_0x5ed499['push'](_0x5ed499['shift']());}}}(_0xb2fb,0xdc4c3),function(_0x4bdc0a,_0x5d9c2a){const _0x34980c=_0x2707;typeof exports==_0x34980c(0x142)&&typeof module<'u'?_0x5d9c2a(exports,require('@univerjs-pro/engine-chart'),require('@univerjs/core/facade')):typeof define==_0x34980c(0x15f)&&define[_0x34980c(0x1ba)]?define(['exports',_0x34980c(0x1ef),_0x34980c(0x156)],_0x5d9c2a):(_0x4bdc0a=typeof globalThis<'u'?globalThis:_0x4bdc0a||self,_0x5d9c2a(_0x4bdc0a[_0x34980c(0x17a)]={},_0x4bdc0a['UniverProEngineChart'],_0x4bdc0a[_0x34980c(0x134)]));}(this,function(_0x5b86b3,_0xcc4c1f,_0x4cbd6c){const _0x5234a1=_0x2707;Object[_0x5234a1(0x168)](_0x5b86b3,Symbol[_0x5234a1(0x181)],{'value':_0x5234a1(0x202)});let _0x5cf6ca=new Map();function _0x28c367(_0x1e5036,_0x2b1539){const _0xb16d88=_0x5234a1;_0x5cf6ca[_0xb16d88(0x20c)](_0x1e5036,_0x2b1539);}function _0x57cfef(_0x4bba8b){const _0x5d89f6=_0x5234a1;let _0x2ceb2f=_0x5cf6ca[_0x5d89f6(0x145)](_0x4bba8b);if(!_0x2ceb2f)throw Error(_0x5d89f6(0x1eb)+String(_0x4bba8b));return _0x2ceb2f;}let _0xf6f5a8=Symbol('ChartBuilderFacadeContextAccess');function _0x5bd5b6(_0x421398){const _0x326cd1=_0x5234a1;return _0x421398[_0xf6f5a8][_0x326cd1(0x1e7)]['getPendingConfig']();}function _0x179e64(_0x519abb){'@babel/helpers - typeof';const _0x525789=_0x5234a1;return _0x179e64=typeof Symbol==_0x525789(0x15f)&&typeof Symbol[_0x525789(0x12d)]==_0x525789(0x18b)?function(_0x2feef4){return typeof _0x2feef4;}:function(_0x4fa3cf){const _0x41f614=_0x525789;return _0x4fa3cf&&typeof Symbol==_0x41f614(0x15f)&&_0x4fa3cf[_0x41f614(0x11a)]===Symbol&&_0x4fa3cf!==Symbol['prototype']?'symbol':typeof _0x4fa3cf;},_0x179e64(_0x519abb);}function _0x15ca9f(_0x11a68a,_0x3a9b50){const _0x52b0e7=_0x5234a1;if(_0x179e64(_0x11a68a)!=_0x52b0e7(0x142)||!_0x11a68a)return _0x11a68a;var _0x55e663=_0x11a68a[Symbol[_0x52b0e7(0x1d3)]];if(_0x55e663!==void 0x0){var _0xa455af=_0x55e663[_0x52b0e7(0x190)](_0x11a68a,_0x3a9b50||_0x52b0e7(0x1ac));if(_0x179e64(_0xa455af)!='object')return _0xa455af;throw TypeError('@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.');}return(_0x3a9b50===_0x52b0e7(0x1e5)?String:Number)(_0x11a68a);}function _0xc5cd0c(_0x4a22d1){const _0x39659d=_0x5234a1;var _0x30c7c8=_0x15ca9f(_0x4a22d1,_0x39659d(0x1e5));return _0x179e64(_0x30c7c8)==_0x39659d(0x18b)?_0x30c7c8:_0x30c7c8+'';}function _0x4663bc(_0x3b7d90,_0xdfda46,_0x5c84a4){const _0x12bb3f=_0x5234a1;return(_0xdfda46=_0xc5cd0c(_0xdfda46))in _0x3b7d90?Object[_0x12bb3f(0x168)](_0x3b7d90,_0xdfda46,{'value':_0x5c84a4,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x3b7d90[_0xdfda46]=_0x5c84a4,_0x3b7d90;}var _0x17fe30=class{constructor(_0x22b203){const _0x30099b=_0x5234a1;this[_0x30099b(0x195)]=_0x22b203,_0x4663bc(this,_0x30099b(0x1ec),void 0x0),this['_builder']=_0x22b203[_0x30099b(0x1e7)];}get[_0xf6f5a8](){const _0x56cc3b=_0x5234a1;return this[_0x56cc3b(0x195)];}[_0x5234a1(0x10c)](){return this['_builder']['id'];}['describe'](){const _0x101b19=_0x5234a1;return this[_0x101b19(0x1ec)][_0x101b19(0x16d)]();}[_0x5234a1(0x186)](){return this['_builder']['resolveData']();}['commit'](){const _0x2dda23=_0x5234a1;return this[_0x2dda23(0x1ec)][_0x2dda23(0x207)](),this;}[_0x5234a1(0x164)](_0x167da7){const _0x53c14=_0x5234a1;return this[_0x53c14(0x1ec)][_0x53c14(0x184)][_0x53c14(0x164)](_0x167da7);}},_0x340484=class extends _0x17fe30{[_0x5234a1(0x1fc)](_0x5f3c8b){const _0x2d9b5a=_0x5234a1;return this['_builder'][_0x2d9b5a(0x16e)](_0x5f3c8b),this;}[_0x5234a1(0x158)](_0x9a55f){const _0x5bcb61=_0x5234a1;return this['_builder'][_0x5bcb61(0x138)]((0x0,_0xcc4c1f[_0x5bcb61(0x158)])(_0x9a55f)),this;}[_0x5234a1(0x171)](){const _0xf3b99e=_0x5234a1;return this['_builder'][_0xf3b99e(0x138)]((0x0,_0xcc4c1f['clearTitle'])()),this;}['setSubtitle'](_0x4dcfac){const _0x70fc3e=_0x5234a1;return this[_0x70fc3e(0x1ec)][_0x70fc3e(0x138)]((0x0,_0xcc4c1f['setSubtitle'])(_0x4dcfac)),this;}[_0x5234a1(0x187)](){const _0x1dd428=_0x5234a1;return this[_0x1dd428(0x1ec)][_0x1dd428(0x138)]((0x0,_0xcc4c1f['clearSubtitle'])()),this;}[_0x5234a1(0x1c6)](_0x11d32b){const _0x4025ed=_0x5234a1;return this[_0x4025ed(0x1ec)][_0x4025ed(0x138)]((0x0,_0xcc4c1f[_0x4025ed(0x1c6)])(_0x11d32b)),this;}[_0x5234a1(0x153)](){const _0x50605c=_0x5234a1;return this[_0x50605c(0x1ec)][_0x50605c(0x138)]((0x0,_0xcc4c1f[_0x50605c(0x153)])()),this;}['setTheme'](_0x4c4ae0){const _0x1c1e23=_0x5234a1;return this['_builder'][_0x1c1e23(0x138)]((0x0,_0xcc4c1f[_0x1c1e23(0x209)])(_0x4c4ae0)),this;}[_0x5234a1(0x10f)](){const _0x20b5b9=_0x5234a1;return this[_0x20b5b9(0x1ec)][_0x20b5b9(0x138)]((0x0,_0xcc4c1f[_0x20b5b9(0x10f)])()),this;}[_0x5234a1(0x1aa)](_0x494e03){const _0x223d60=_0x5234a1;return this['_builder']['apply']((0x0,_0xcc4c1f[_0x223d60(0x1aa)])(_0x494e03)),this;}[_0x5234a1(0x19f)](){const _0x332b35=_0x5234a1;return this[_0x332b35(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x332b35(0x19f)])()),this;}[_0x5234a1(0x1bc)](_0x5ee2aa){const _0x53a589=_0x5234a1;return this['_builder'][_0x53a589(0x138)]((0x0,_0xcc4c1f['setAppearance'])(_0x5ee2aa)),this;}['clearAppearance'](_0x51199b){const _0x43340c=_0x5234a1;return this[_0x43340c(0x1ec)]['apply']((0x0,_0xcc4c1f['clearAppearance'])(_0x51199b)),this;}['setAutoGradientFill'](_0x3c7c09){const _0x1a2890=_0x5234a1;return this[_0x1a2890(0x1ec)][_0x1a2890(0x138)]((0x0,_0xcc4c1f['setAutoGradientFill'])(_0x3c7c09)),this;}[_0x5234a1(0xfc)](){const _0x5603c7=_0x5234a1;return this[_0x5603c7(0x1ec)][_0x5603c7(0x138)]((0x0,_0xcc4c1f[_0x5603c7(0xfc)])()),this;}['setInvalidValueStrategy'](_0x5b9290){const _0x9723c7=_0x5234a1;return this[_0x9723c7(0x1ec)]['apply']((0x0,_0xcc4c1f['setInvalidValueStrategy'])(_0x5b9290)),this;}[_0x5234a1(0x1d0)](){const _0x3e454c=_0x5234a1;return this[_0x3e454c(0x1ec)][_0x3e454c(0x138)]((0x0,_0xcc4c1f['resetInvalidValueStrategy'])()),this;}[_0x5234a1(0x137)](_0x5a491c){const _0x4554b8=_0x5234a1;return this['_builder']['apply']((0x0,_0xcc4c1f[_0x4554b8(0x137)])(_0x5a491c)),this;}[_0x5234a1(0x131)](){const _0xba5107=_0x5234a1;return this[_0xba5107(0x1ec)]['apply']((0x0,_0xcc4c1f[_0xba5107(0x131)])()),this;}[_0x5234a1(0x1a7)](_0x517819){const _0x1bbea9=_0x5234a1;return this[_0x1bbea9(0x1ec)][_0x1bbea9(0x138)]((0x0,_0xcc4c1f[_0x1bbea9(0x1a7)])(_0x517819)),this;}[_0x5234a1(0x13f)](){const _0xa71ad0=_0x5234a1;return this[_0xa71ad0(0x1ec)]['apply']((0x0,_0xcc4c1f[_0xa71ad0(0x13f)])()),this;}[_0x5234a1(0xfd)](_0x11d122){const _0x2775e2=_0x5234a1;return this[_0x2775e2(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x2775e2(0xfd)])(_0x11d122)),this;}[_0x5234a1(0x1d1)](_0x153a53){const _0x1f33d7=_0x5234a1;return this['_builder'][_0x1f33d7(0x138)]((0x0,_0xcc4c1f[_0x1f33d7(0x1d1)])(_0x153a53)),this;}[_0x5234a1(0x1b2)](_0x393a8c){const _0x3be013=_0x5234a1;this[_0x3be013(0x165)](_0x393a8c);let _0x1e95ce=_0x57cfef(_0x393a8c);return this['_context'][_0x3be013(0x1b4)](_0x1e95ce);}[_0x5234a1(0x165)](_0x54ae86){const _0x16e35b=_0x5234a1;this[_0x16e35b(0x1ec)][_0x16e35b(0x1b2)](_0x54ae86);}},_0x2222a3=class extends _0x340484{[_0x5234a1(0x204)](_0x58dbbe){const _0x50e37d=_0x5234a1;return this[_0x50e37d(0x1ec)][_0x50e37d(0x138)]((0x0,_0xcc4c1f[_0x50e37d(0x204)])(_0x58dbbe)),this;}[_0x5234a1(0x15e)](){const _0xd0f520=_0x5234a1;return this[_0xd0f520(0x1ec)][_0xd0f520(0x138)]((0x0,_0xcc4c1f[_0xd0f520(0x15e)])()),this;}['setXAxis'](_0x564feb){const _0x456036=_0x5234a1;return this[_0x456036(0x1ec)][_0x456036(0x138)]((0x0,_0xcc4c1f[_0x456036(0x1a4)])(_0x564feb)),this;}[_0x5234a1(0x1c4)](_0x32e53c){const _0x246413=_0x5234a1;return this[_0x246413(0x1ec)][_0x246413(0x138)]((0x0,_0xcc4c1f[_0x246413(0x1c4)])(_0x32e53c)),this;}[_0x5234a1(0x151)](_0x3a9be7){const _0x4e3845=_0x5234a1;return this[_0x4e3845(0x1ec)][_0x4e3845(0x138)]((0x0,_0xcc4c1f[_0x4e3845(0x151)])(_0x3a9be7)),this;}[_0x5234a1(0x169)](_0x1f89ce){const _0x15f246=_0x5234a1;return this[_0x15f246(0x1ec)][_0x15f246(0x138)]((0x0,_0xcc4c1f[_0x15f246(0x169)])(_0x1f89ce)),this;}[_0x5234a1(0x1bd)](_0x3840d6){const _0xd88437=_0x5234a1;return this[_0xd88437(0x1ec)]['apply']((0x0,_0xcc4c1f[_0xd88437(0x1bd)])(_0x3840d6)),this;}['clearRightYAxis'](_0x22a76){const _0x31f1dc=_0x5234a1;return this[_0x31f1dc(0x1ec)][_0x31f1dc(0x138)]((0x0,_0xcc4c1f[_0x31f1dc(0xfa)])(_0x22a76)),this;}[_0x5234a1(0x1e2)](_0x34d3b2){const _0x5d0ecb=_0x5234a1;return this[_0x5d0ecb(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x5d0ecb(0x17d)])(_0xcc4c1f[_0x5d0ecb(0x116)]['X'],_0x34d3b2)),this;}[_0x5234a1(0x167)](){const _0x1712d0=_0x5234a1;return this[_0x1712d0(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x1712d0(0x12c)])(_0xcc4c1f[_0x1712d0(0x116)]['X'])),this;}[_0x5234a1(0x13b)](_0x5ad506){const _0xca9fe=_0x5234a1;return this[_0xca9fe(0x1ec)][_0xca9fe(0x138)]((0x0,_0xcc4c1f['setAxisTitle'])(_0xcc4c1f[_0xca9fe(0x116)]['Y'],_0x5ad506)),this;}[_0x5234a1(0x1f2)](){const _0x2070ca=_0x5234a1;return this[_0x2070ca(0x1ec)][_0x2070ca(0x138)]((0x0,_0xcc4c1f[_0x2070ca(0x12c)])(_0xcc4c1f['ChartAxisName']['Y'])),this;}['setRightYAxisTitle'](_0x251041){const _0x2793c3=_0x5234a1;return this[_0x2793c3(0x1ec)][_0x2793c3(0x138)]((0x0,_0xcc4c1f['setAxisTitle'])(_0xcc4c1f['ChartAxisName'][_0x2793c3(0x19b)],_0x251041)),this;}[_0x5234a1(0x1d4)](){const _0x927d21=_0x5234a1;return this[_0x927d21(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x927d21(0x12c)])(_0xcc4c1f[_0x927d21(0x116)]['RightY'])),this;}['setUseDateAxis'](_0x5bd432){const _0xd1d8d0=_0x5234a1;return this['_builder'][_0xd1d8d0(0x138)]((0x0,_0xcc4c1f['setUseDateAxis'])(_0x5bd432)),this;}['resetUseDateAxis'](){const _0x328b9b=_0x5234a1;return this[_0x328b9b(0x1ec)][_0x328b9b(0x138)]((0x0,_0xcc4c1f[_0x328b9b(0x124)])()),this;}},_0x2c11d5=class extends _0x2222a3{[_0x5234a1(0x129)](_0x139906){const _0x4a51c3=_0x5234a1;return this['_builder'][_0x4a51c3(0x138)]((0x0,_0xcc4c1f[_0x4a51c3(0x129)])(_0x139906)),this;}['clearBar'](){const _0x59a52d=_0x5234a1;return this[_0x59a52d(0x1ec)][_0x59a52d(0x138)]((0x0,_0xcc4c1f[_0x59a52d(0x197)])()),this;}[_0x5234a1(0x1f1)](_0x53e10b,_0x4d9379){const _0x10ca3d=_0x5234a1;return this['_builder'][_0x10ca3d(0x138)]((0x0,_0xcc4c1f[_0x10ca3d(0x1f1)])(_0x53e10b,_0x4d9379)),this;}[_0x5234a1(0x1a0)](_0x3b8979,_0x2bfa2e){const _0x4dbbe3=_0x5234a1;return this[_0x4dbbe3(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x4dbbe3(0x1a0)])(_0x3b8979,_0x2bfa2e)),this;}[_0x5234a1(0x111)](_0xcb9cfd){const _0x7a5423=_0x5234a1;return this[_0x7a5423(0x1ec)][_0x7a5423(0x138)]((0x0,_0xcc4c1f[_0x7a5423(0x111)])(_0xcb9cfd)),this;}['clearAllSeriesStyle'](_0x96568c){const _0x215ecb=_0x5234a1;return this[_0x215ecb(0x1ec)][_0x215ecb(0x138)]((0x0,_0xcc4c1f[_0x215ecb(0x154)])(_0x96568c)),this;}[_0x5234a1(0x179)](_0x380d39,_0x1cc844){const _0x2db540=_0x5234a1;return this['_builder']['apply']((0x0,_0xcc4c1f[_0x2db540(0x179)])(_0x380d39,_0x1cc844)),this;}[_0x5234a1(0x1c7)](_0x527234,_0x282eb2){const _0x4d9e9a=_0x5234a1;return this['_builder'][_0x4d9e9a(0x138)]((0x0,_0xcc4c1f['removeTrendline'])(this[_0x4d9e9a(0x1ec)][_0x4d9e9a(0x16d)](),_0x527234,_0x282eb2)),this;}[_0x5234a1(0x1b5)](_0x4715ff){const _0x2eb892=_0x5234a1;return this[_0x2eb892(0x1ec)][_0x2eb892(0x138)]((0x0,_0xcc4c1f[_0x2eb892(0x1b5)])(this[_0x2eb892(0x1ec)][_0x2eb892(0x16d)](),_0x4715ff)),this;}['setAxisPointer'](_0x2c5171){const _0x589fee=_0x5234a1;return this[_0x589fee(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x589fee(0x113)])(_0x2c5171)),this;}[_0x5234a1(0x14c)](_0x520c68){const _0x354ae9=_0x5234a1;return this[_0x354ae9(0x1ec)][_0x354ae9(0x138)]((0x0,_0xcc4c1f[_0x354ae9(0x14c)])(_0x520c68)),this;}},_0x3c3bca=class extends _0x2c11d5{['setAreaLineStyle'](_0x591c91){const _0x2834f8=_0x5234a1;return this[_0x2834f8(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x2834f8(0x1da)])(_0x591c91)),this;}[_0x5234a1(0xf8)](){const _0x4f4ae6=_0x5234a1;return this['_builder'][_0x4f4ae6(0x138)]((0x0,_0xcc4c1f[_0x4f4ae6(0xf8)])()),this;}},_0x164e36=class extends _0x2c11d5{},_0x40ef99=class extends _0x2c11d5{['setBubbleMapping'](_0x4593c1){const _0x322295=_0x5234a1;return this[_0x322295(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x322295(0x12b)])(_0x4593c1)),this;}['clearBubbleMapping'](){const _0x2f4610=_0x5234a1;return this[_0x2f4610(0x1ec)][_0x2f4610(0x138)]((0x0,_0xcc4c1f[_0x2f4610(0x13c)])()),this;}},_0x3f23a2=class extends _0x2c11d5{[_0x5234a1(0x19e)](_0x1e8766,_0x3fcd50){const _0x31dbd1=_0x5234a1;return this['_builder']['apply']((0x0,_0xcc4c1f[_0x31dbd1(0x1e3)])(_0x1e8766,_0x3fcd50)),this;}[_0x5234a1(0x136)](_0x1ba965){const _0x29a2ea=_0x5234a1;return this[_0x29a2ea(0x1ec)][_0x29a2ea(0x138)]((0x0,_0xcc4c1f[_0x29a2ea(0x121)])(_0x1ba965)),this;}[_0x5234a1(0x15d)](_0x3c57c0,_0x43ad6b){const _0x5bafe1=_0x5234a1;return this[_0x5bafe1(0x1ec)][_0x5bafe1(0x138)]((0x0,_0xcc4c1f['setCombinationSeriesAxis'])(_0x3c57c0,_0x43ad6b)),this;}[_0x5234a1(0x108)](_0x2c3429){const _0x9916de=_0x5234a1;return this[_0x9916de(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x9916de(0x141)])(_0x2c3429)),this;}},_0x51e045=class extends _0x340484{['setGap'](_0x47a579){const _0xd55d53=_0x5234a1;return this[_0xd55d53(0x1ec)][_0xd55d53(0x138)]((0x0,_0xcc4c1f[_0xd55d53(0x109)])(_0x47a579)),this;}[_0x5234a1(0x191)](){const _0x1f1dc5=_0x5234a1;return this['_builder'][_0x1f1dc5(0x138)]((0x0,_0xcc4c1f[_0x1f1dc5(0x1ca)])()),this;}[_0x5234a1(0x1dd)](_0x4e8d24){const _0x5679bf=_0x5234a1;return this[_0x5679bf(0x1ec)]['apply']((0x0,_0xcc4c1f['setUseAbsoluteValue'])(_0x4e8d24)),this;}[_0x5234a1(0x144)](){const _0x371375=_0x5234a1;return this[_0x371375(0x1ec)]['apply']((0x0,_0xcc4c1f['resetUseAbsoluteValue'])()),this;}},_0xad25af=class extends _0x2222a3{['setVisualMapType'](_0x130381){const _0x279f49=_0x5234a1;return this['_builder']['apply']((0x0,_0xcc4c1f[_0x279f49(0x16c)])(_0x130381)),this;}[_0x5234a1(0x199)](){const _0x2a73c2=_0x5234a1;return this[_0x2a73c2(0x1ec)][_0x2a73c2(0x138)]((0x0,_0xcc4c1f[_0x2a73c2(0x199)])()),this;}[_0x5234a1(0x160)](_0x24363e,_0x559c19){const _0x1fdf02=_0x5234a1;return this[_0x1fdf02(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x1fdf02(0x160)])(_0x24363e,_0x559c19)),this;}['clearValueRange'](){const _0x5bdebc=_0x5234a1;return this[_0x5bdebc(0x1ec)][_0x5bdebc(0x138)]((0x0,_0xcc4c1f[_0x5bdebc(0x1b7)])()),this;}[_0x5234a1(0x1ff)](_0x2c29a3){const _0x267fd8=_0x5234a1;return this[_0x267fd8(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x267fd8(0x1ff)])(_0x2c29a3)),this;}[_0x5234a1(0x159)](){const _0x1edaa3=_0x5234a1;return this[_0x1edaa3(0x1ec)][_0x1edaa3(0x138)]((0x0,_0xcc4c1f[_0x1edaa3(0x159)])()),this;}[_0x5234a1(0x205)](_0x41ee35){const _0x4bb697=_0x5234a1;return this[_0x4bb697(0x1ec)]['apply']((0x0,_0xcc4c1f['setValueUnit'])(_0x41ee35)),this;}[_0x5234a1(0x146)](){const _0x58c59a=_0x5234a1;return this[_0x58c59a(0x1ec)][_0x58c59a(0x138)]((0x0,_0xcc4c1f['clearValueUnit'])()),this;}},_0x4fe75d=class extends _0x2c11d5{['setLineStyle'](_0x1f9b74){const _0x2b4b5a=_0x5234a1;return this[_0x2b4b5a(0x1ec)][_0x2b4b5a(0x138)]((0x0,_0xcc4c1f['setLineStyle'])(_0x1f9b74)),this;}[_0x5234a1(0x1f3)](){const _0x20ef40=_0x5234a1;return this[_0x20ef40(0x1ec)][_0x20ef40(0x138)]((0x0,_0xcc4c1f['clearLineStyle'])()),this;}},_0x1cf22e=class extends _0x2c11d5{['setBarStyle'](_0x3cf5f5){const _0x19ce6c=_0x5234a1;return this['_builder']['apply']((0x0,_0xcc4c1f[_0x19ce6c(0x11d)])(_0x3cf5f5)),this;}[_0x5234a1(0x15c)](){const _0x47d609=_0x5234a1;return this['_builder'][_0x47d609(0x138)]((0x0,_0xcc4c1f[_0x47d609(0x1d7)])()),this;}['setCumulativeLineStyle'](_0x3bc460){const _0x18969f=_0x5234a1;return this[_0x18969f(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x18969f(0x203)])(_0x3bc460)),this;}[_0x5234a1(0x11b)](){const _0x5c53aa=_0x5234a1;return this[_0x5c53aa(0x1ec)][_0x5c53aa(0x138)]((0x0,_0xcc4c1f[_0x5c53aa(0x11b)])()),this;}[_0x5234a1(0x1c2)](_0x5d52e9){const _0x211540=_0x5234a1;return this['_builder'][_0x211540(0x138)]((0x0,_0xcc4c1f['setIncludeZeroValues'])(_0x5d52e9)),this;}['resetIncludeZeroValues'](){const _0x46ac84=_0x5234a1;return this[_0x46ac84(0x1ec)][_0x46ac84(0x138)]((0x0,_0xcc4c1f[_0x46ac84(0x1d9)])()),this;}},_0x5eb309=class extends _0x340484{[_0x5234a1(0x1a1)](_0x18a674,_0x3a1ed8){const _0x16116f=_0x5234a1;return this[_0x16116f(0x1ec)]['apply']((0x0,_0xcc4c1f['setSliceStyle'])(_0x18a674,_0x3a1ed8)),this;}[_0x5234a1(0x1b9)](_0x5248e6){const _0xc7727c=_0x5234a1;return this['_builder'][_0xc7727c(0x138)]((0x0,_0xcc4c1f[_0xc7727c(0x1b9)])(_0x5248e6)),this;}['setDoughnutHole'](_0x4d9684){const _0x275d0a=_0x5234a1;return this[_0x275d0a(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x275d0a(0x105)])(_0x4d9684)),this;}['clearDoughnutHole'](){const _0x3df388=_0x5234a1;return this[_0x3df388(0x1ec)]['apply']((0x0,_0xcc4c1f['clearDoughnutHole'])()),this;}[_0x5234a1(0x143)](_0x4a5d7c){const _0x3e5d3d=_0x5234a1;return this['_builder'][_0x3e5d3d(0x138)]((0x0,_0xcc4c1f[_0x3e5d3d(0x143)])(_0x4a5d7c)),this;}[_0x5234a1(0x1e8)](){const _0x54db6b=_0x5234a1;return this['_builder'][_0x54db6b(0x138)]((0x0,_0xcc4c1f[_0x54db6b(0x1e8)])()),this;}[_0x5234a1(0x1fe)](_0x43b490){const _0xd4ae8c=_0x5234a1;return this[_0xd4ae8c(0x1ec)][_0xd4ae8c(0x138)]((0x0,_0xcc4c1f[_0xd4ae8c(0x1fe)])(_0x43b490)),this;}[_0x5234a1(0x155)](){const _0x33f80a=_0x5234a1;return this[_0x33f80a(0x1ec)][_0x33f80a(0x138)]((0x0,_0xcc4c1f[_0x33f80a(0x155)])()),this;}[_0x5234a1(0x16b)](_0x1a5fe7){const _0x49aa03=_0x5234a1;return this[_0x49aa03(0x1ec)][_0x49aa03(0x138)]((0x0,_0xcc4c1f[_0x49aa03(0x16b)])(_0x1a5fe7)),this;}['resetPaddingAngleEnabled'](){const _0x261cb2=_0x5234a1;return this['_builder'][_0x261cb2(0x138)]((0x0,_0xcc4c1f[_0x261cb2(0x20b)])()),this;}['setHalfPie'](_0x49a634){const _0x55edb7=_0x5234a1;return this[_0x55edb7(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x55edb7(0x170)])(_0x49a634)),this;}['resetHalfPie'](){const _0xf61d2f=_0x5234a1;return this[_0xf61d2f(0x1ec)]['apply']((0x0,_0xcc4c1f[_0xf61d2f(0x176)])()),this;}['setRosePie'](_0x51109a){const _0xc7c881=_0x5234a1;return this[_0xc7c881(0x1ec)][_0xc7c881(0x138)]((0x0,_0xcc4c1f[_0xc7c881(0x1b1)])(_0x51109a)),this;}[_0x5234a1(0x1e4)](){const _0x58bb64=_0x5234a1;return this[_0x58bb64(0x1ec)][_0x58bb64(0x138)]((0x0,_0xcc4c1f[_0x58bb64(0x1e4)])()),this;}['setLabelLineVisible'](_0x44456a){const _0xdcac14=_0x5234a1;return this[_0xdcac14(0x1ec)][_0xdcac14(0x138)]((0x0,_0xcc4c1f[_0xdcac14(0x1ab)])(_0x44456a)),this;}[_0x5234a1(0x1a3)](){const _0x4a47bd=_0x5234a1;return this['_builder'][_0x4a47bd(0x138)]((0x0,_0xcc4c1f[_0x4a47bd(0x1a3)])()),this;}[_0x5234a1(0x1b0)](_0x2e39b1){const _0x2d9e3a=_0x5234a1;return this[_0x2d9e3a(0x1ec)][_0x2d9e3a(0x138)]((0x0,_0xcc4c1f[_0x2d9e3a(0x1b0)])(_0x2e39b1)),this;}[_0x5234a1(0x1a2)](){const _0x1873f4=_0x5234a1;return this[_0x1873f4(0x1ec)][_0x1873f4(0x138)]((0x0,_0xcc4c1f[_0x1873f4(0x1a2)])()),this;}[_0x5234a1(0x1d2)](_0x3f7cf5){const _0x28cb2b=_0x5234a1;return this[_0x28cb2b(0x1ec)][_0x28cb2b(0x138)]((0x0,_0xcc4c1f[_0x28cb2b(0x1d2)])(_0x3f7cf5)),this;}['clearValueSuffix'](){const _0xcdb459=_0x5234a1;return this[_0xcdb459(0x1ec)]['apply']((0x0,_0xcc4c1f[_0xcdb459(0x103)])()),this;}[_0x5234a1(0x1e1)](_0x36b616){const _0x510e5f=_0x5234a1;return this[_0x510e5f(0x1ec)][_0x510e5f(0x138)]((0x0,_0xcc4c1f['setDecimalPlaces'])(_0x36b616)),this;}[_0x5234a1(0x18f)](){const _0x492eec=_0x5234a1;return this[_0x492eec(0x1ec)][_0x492eec(0x138)]((0x0,_0xcc4c1f[_0x492eec(0x18f)])()),this;}[_0x5234a1(0x123)](_0xe6b26f){const _0x4f2fa7=_0x5234a1;return this[_0x4f2fa7(0x1ec)][_0x4f2fa7(0x138)]((0x0,_0xcc4c1f['setPieLabel'])(_0xe6b26f)),this;}[_0x5234a1(0x193)](){const _0x4b5793=_0x5234a1;return this[_0x4b5793(0x1ec)][_0x4b5793(0x138)]((0x0,_0xcc4c1f[_0x4b5793(0x193)])()),this;}},_0x519a1c=class extends _0x340484{[_0x5234a1(0x106)](_0x5c0ca4){const _0x2e9bcf=_0x5234a1;return this[_0x2e9bcf(0x1ec)][_0x2e9bcf(0x138)]((0x0,_0xcc4c1f['setRadarShape'])(_0x5c0ca4)),this;}[_0x5234a1(0x133)](){const _0x2cf5bb=_0x5234a1;return this[_0x2cf5bb(0x1ec)][_0x2cf5bb(0x138)]((0x0,_0xcc4c1f[_0x2cf5bb(0x1e9)])()),this;}[_0x5234a1(0x130)](_0x592483){const _0x3650f9=_0x5234a1;return this[_0x3650f9(0x1ec)][_0x3650f9(0x138)]((0x0,_0xcc4c1f['setRadarFill'])(_0x592483)),this;}[_0x5234a1(0x1be)](){const _0x9d79ee=_0x5234a1;return this[_0x9d79ee(0x1ec)][_0x9d79ee(0x138)]((0x0,_0xcc4c1f[_0x9d79ee(0x1af)])()),this;}},_0x1efb23=class extends _0x340484{[_0x5234a1(0x10d)](_0x2478a4){const _0x3e7081=_0x5234a1;return this[_0x3e7081(0x1ec)][_0x3e7081(0x138)]((0x0,_0xcc4c1f[_0x3e7081(0x1a9)])(_0x2478a4)),this;}['resetLayout'](){const _0x4e9c86=_0x5234a1;return this[_0x4e9c86(0x1ec)][_0x4e9c86(0x138)]((0x0,_0xcc4c1f[_0x4e9c86(0x1dc)])()),this;}[_0x5234a1(0x174)](_0x9a0adf){const _0x5d70eb=_0x5234a1;return this['_builder'][_0x5d70eb(0x138)]((0x0,_0xcc4c1f[_0x5d70eb(0x174)])(_0x9a0adf)),this;}[_0x5234a1(0x175)](){const _0x3e093d=_0x5234a1;return this[_0x3e093d(0x1ec)][_0x3e093d(0x138)]((0x0,_0xcc4c1f['resetUseValueAsSymbolSize'])()),this;}[_0x5234a1(0x1f7)](_0x114acc){const _0x4a4d2b=_0x5234a1;return this[_0x4a4d2b(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x4a4d2b(0x1f7)])(_0x114acc)),this;}[_0x5234a1(0x198)](){const _0x3d0345=_0x5234a1;return this[_0x3d0345(0x1ec)][_0x3d0345(0x138)]((0x0,_0xcc4c1f[_0x3d0345(0x198)])()),this;}[_0x5234a1(0x188)](_0x461cdb){const _0x3ec83f=_0x5234a1;return this['_builder'][_0x3ec83f(0x138)]((0x0,_0xcc4c1f[_0x3ec83f(0x15a)])(_0x461cdb)),this;}['clearForce'](){const _0x29b94d=_0x5234a1;return this[_0x29b94d(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x29b94d(0x1ce)])()),this;}['setCircularLabelRotation'](_0x4f5836){return this['_builder']['apply']((0x0,_0xcc4c1f['setCircularLabelRotation'])(_0x4f5836)),this;}[_0x5234a1(0x125)](){const _0xee8fa8=_0x5234a1;return this[_0xee8fa8(0x1ec)]['apply']((0x0,_0xcc4c1f['resetCircularLabelRotation'])()),this;}[_0x5234a1(0x149)](_0x534f75){const _0x4c6dc1=_0x5234a1;return this[_0x4c6dc1(0x1ec)][_0x4c6dc1(0x138)]((0x0,_0xcc4c1f[_0x4c6dc1(0x135)])(_0x534f75)),this;}[_0x5234a1(0x147)](){const _0x523ce5=_0x5234a1;return this[_0x523ce5(0x1ec)][_0x523ce5(0x138)]((0x0,_0xcc4c1f[_0x523ce5(0x10a)])()),this;}},_0x998603=class extends _0x2c11d5{[_0x5234a1(0x196)](_0x4206fc){const _0x1bf8da=_0x5234a1;return this[_0x1bf8da(0x1ec)][_0x1bf8da(0x138)]((0x0,_0xcc4c1f[_0x1bf8da(0x196)])(_0x4206fc)),this;}[_0x5234a1(0x185)](){const _0x229f0a=_0x5234a1;return this[_0x229f0a(0x1ec)][_0x229f0a(0x138)]((0x0,_0xcc4c1f[_0x229f0a(0x185)])()),this;}},_0x6f5062=class extends _0x2c11d5{[_0x5234a1(0x194)](){const _0x2a5631=_0x5234a1;var _0x75925e,_0x2a3329;return(_0x75925e=(_0x2a3329=this[_0x2a5631(0x16d)]()[_0x2a5631(0x117)])==null?void 0x0:_0x2a3329['pointRoles'])==null?[]:_0x75925e;}[_0x5234a1(0x12a)](_0x1588b9){const _0x4bdbf0=_0x5234a1;let _0x560bb9=this[_0x4bdbf0(0x16d)]()['series'],_0x38dce4=new Map();_0x1588b9[_0x4bdbf0(0x14e)]((_0x493798,_0x2dd761)=>{const _0x4111c2=_0x4bdbf0;if(!Number[_0x4111c2(0x10b)](_0x493798[_0x4111c2(0x173)])||_0x493798['dataPointIndex']<0x0)throw Error(_0x4111c2(0x1bf)+_0x2dd761+_0x4111c2(0x1c3));let _0x33ed7d=typeof _0x493798[_0x4111c2(0x1db)]=='number'?_0x9290e1(_0x493798[_0x4111c2(0x1db)],_0x2dd761):_0x2fe518(_0x493798['series'][_0x4111c2(0x192)],_0x560bb9,_0x2dd761);_0x38dce4[_0x4111c2(0x20c)](_0x33ed7d+':'+_0x493798['dataPointIndex'],{..._0x493798,'series':_0x33ed7d});});let _0x1b36a6=[..._0x38dce4[_0x4bdbf0(0x11f)]()]['sort']((_0x17c3be,_0x13d611)=>_0x17c3be[_0x4bdbf0(0x1db)]-_0x13d611[_0x4bdbf0(0x1db)]||_0x17c3be['dataPointIndex']-_0x13d611['dataPointIndex']);return this[_0x4bdbf0(0x1ec)][_0x4bdbf0(0x138)]((0x0,_0xcc4c1f['setWaterfallPointRoles'])(_0x1b36a6)),this;}[_0x5234a1(0x104)](_0x53e353){const _0x4033b0=_0x5234a1;return this[_0x4033b0(0x1ec)][_0x4033b0(0x138)]((0x0,_0xcc4c1f[_0x4033b0(0x19c)])(_0x53e353)),this;}[_0x5234a1(0x1fa)](){const _0xe1bc73=_0x5234a1;return this[_0xe1bc73(0x1ec)][_0xe1bc73(0x138)]((0x0,_0xcc4c1f[_0xe1bc73(0x120)])()),this;}[_0x5234a1(0x16f)](_0x5c47b8){const _0x17e8a=_0x5234a1;return this[_0x17e8a(0x1ec)][_0x17e8a(0x138)]((0x0,_0xcc4c1f['setWaterfallStackType'])(_0x5c47b8)),this;}[_0x5234a1(0x1c8)](){const _0x4e6aca=_0x5234a1;return this[_0x4e6aca(0x1ec)]['apply']((0x0,_0xcc4c1f['resetWaterfallStackType'])()),this;}[_0x5234a1(0x100)](_0x20a69d){const _0x3db961=_0x5234a1;return this['_builder'][_0x3db961(0x138)]((0x0,_0xcc4c1f[_0x3db961(0x100)])(_0x20a69d)),this;}[_0x5234a1(0x1f9)](){const _0x48d647=_0x5234a1;return this[_0x48d647(0x1ec)]['apply']((0x0,_0xcc4c1f[_0x48d647(0x1f9)])()),this;}[_0x5234a1(0x148)](_0x364257,_0x9a7691){const _0x5ec21e=_0x5234a1;return this[_0x5ec21e(0x1ec)][_0x5ec21e(0x138)]((0x0,_0xcc4c1f[_0x5ec21e(0x14f)])(_0x364257,_0xcc4c1f[_0x5ec21e(0x17e)][_0x5ec21e(0x1cc)],_0x9a7691)),this;}['clearPositiveStyle'](_0x1b7e93){const _0x343dab=_0x5234a1;return this[_0x343dab(0x1ec)][_0x343dab(0x138)]((0x0,_0xcc4c1f[_0x343dab(0x162)])(_0x1b7e93,_0xcc4c1f[_0x343dab(0x17e)][_0x343dab(0x1cc)])),this;}[_0x5234a1(0x122)](_0xb7c628,_0x4545ea){const _0x437929=_0x5234a1;return this[_0x437929(0x1ec)]['apply']((0x0,_0xcc4c1f['setWaterfallStyle'])(_0xb7c628,_0xcc4c1f[_0x437929(0x17e)]['Negative'],_0x4545ea)),this;}[_0x5234a1(0x12e)](_0x535aef){const _0x5c3629=_0x5234a1;return this[_0x5c3629(0x1ec)][_0x5c3629(0x138)]((0x0,_0xcc4c1f['clearWaterfallStyle'])(_0x535aef,_0xcc4c1f[_0x5c3629(0x17e)]['Negative'])),this;}[_0x5234a1(0x119)](_0x1979b2,_0x13fe94){const _0x452fd6=_0x5234a1;return this[_0x452fd6(0x1ec)][_0x452fd6(0x138)]((0x0,_0xcc4c1f['setWaterfallStyle'])(_0x1979b2,_0xcc4c1f[_0x452fd6(0x17e)][_0x452fd6(0x1ea)],_0x13fe94)),this;}['clearSubtotalStyle'](_0x237255){const _0x1ad74f=_0x5234a1;return this['_builder'][_0x1ad74f(0x138)]((0x0,_0xcc4c1f[_0x1ad74f(0x162)])(_0x237255,_0xcc4c1f['ChartWaterfallStyleTarget'][_0x1ad74f(0x1ea)])),this;}};function _0x9290e1(_0x45888a,_0x208be1){const _0x1b3029=_0x5234a1;if(!Number['isInteger'](_0x45888a)||_0x45888a<0x0)throw Error(_0x1b3029(0x1bf)+_0x208be1+'\x20has\x20an\x20invalid\x20series\x20index.');return _0x45888a;}function _0x2fe518(_0xedebed,_0x251b81,_0x50056e){const _0x411872=_0x5234a1;let _0x84c6c6=Object[_0x411872(0x19d)](_0x251b81)['filter'](([,_0x242835])=>(_0x242835==null?void 0x0:_0x242835[_0x411872(0x192)])===_0xedebed);if(_0x84c6c6[_0x411872(0x1c9)]!==0x1)throw Error(_0x411872(0x1bf)+_0x50056e+'\x20must\x20resolve\x20to\x20exactly\x20one\x20series\x20named\x20\x22'+_0xedebed+'\x22.');return Number(_0x84c6c6[0x0][0x0]);}var _0x1034e5=class extends _0x340484{['setShape'](_0x5f5453){const _0x397c6c=_0x5234a1;return this['_builder'][_0x397c6c(0x138)]((0x0,_0xcc4c1f[_0x397c6c(0x1c1)])(_0x5f5453)),this;}[_0x5234a1(0x133)](){return this['_builder']['apply']((0x0,_0xcc4c1f['resetWordCloudShape'])()),this;}[_0x5234a1(0x18d)](_0x3c1fe5){const _0x3e65ae=_0x5234a1;return this['_builder'][_0x3e65ae(0x138)]((0x0,_0xcc4c1f[_0x3e65ae(0x18d)])(_0x3c1fe5)),this;}[_0x5234a1(0x1d5)](){const _0x34fcf0=_0x5234a1;return this['_builder'][_0x34fcf0(0x138)]((0x0,_0xcc4c1f[_0x34fcf0(0x1d5)])()),this;}[_0x5234a1(0x139)](_0x2f9568){const _0x1e9b6f=_0x5234a1;return this[_0x1e9b6f(0x1ec)][_0x1e9b6f(0x138)]((0x0,_0xcc4c1f[_0x1e9b6f(0x118)])(_0x2f9568)),this;}[_0x5234a1(0xfb)](){const _0x10eb79=_0x5234a1;return this[_0x10eb79(0x1ec)][_0x10eb79(0x138)]((0x0,_0xcc4c1f[_0x10eb79(0x1f0)])()),this;}};let _0xf30553={[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x1f8)]]:_0x4fe75d,[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x13d)]]:_0x2c11d5,[_0xcc4c1f[_0x5234a1(0x14a)]['ColumnStacked']]:_0x2c11d5,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x1d8)]]:_0x2c11d5,[_0xcc4c1f[_0x5234a1(0x14a)]['Bar']]:_0x2c11d5,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x101)]]:_0x2c11d5,[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x1de)]]:_0x2c11d5,[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x172)]]:_0x5eb309,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x14d)]]:_0x5eb309,[_0xcc4c1f[_0x5234a1(0x14a)]['Area']]:_0x3c3bca,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x150)]]:_0x3c3bca,[_0xcc4c1f[_0x5234a1(0x14a)]['AreaPercentStacked']]:_0x3c3bca,[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x200)]]:_0x519a1c,[_0xcc4c1f['ChartTypeString']['Scatter']]:_0x998603,[_0xcc4c1f[_0x5234a1(0x14a)]['Combination']]:_0x3f23a2,[_0xcc4c1f[_0x5234a1(0x14a)]['WordCloud']]:_0x1034e5,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x12f)]]:_0x51e045,[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x14b)]]:_0x40ef99,[_0xcc4c1f['ChartTypeString'][_0x5234a1(0x1a6)]]:_0x1efb23,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x152)]]:_0x6f5062,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x127)]]:_0x1cf22e,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x1b6)]]:_0x340484,[_0xcc4c1f[_0x5234a1(0x14a)]['Heatmap']]:_0xad25af,[_0xcc4c1f[_0x5234a1(0x14a)][_0x5234a1(0x10e)]]:_0x164e36};for(let _0x1e0006 of Object['keys'](_0xf30553))_0x28c367(_0x1e0006,_0xf30553[_0x1e0006]);var _0x57196d=class extends _0x4cbd6c[_0x5234a1(0x206)]{get[_0x5234a1(0x1f5)](){return _0xcc4c1f['ChartAggregationTarget'];}get[_0x5234a1(0x183)](){return _0xcc4c1f['ChartAxisDimension'];}get[_0x5234a1(0x15b)](){return _0xcc4c1f['ChartTrendlineType'];}get[_0x5234a1(0x17c)](){const _0x16e81b=_0x5234a1;return _0xcc4c1f[_0x16e81b(0x17c)];}get['ChartAxisName'](){const _0x3086ba=_0x5234a1;return _0xcc4c1f[_0x3086ba(0x116)];}get['ChartAxisPointerTarget'](){const _0x32f3fd=_0x5234a1;return _0xcc4c1f[_0x32f3fd(0x13a)];}get[_0x5234a1(0xf9)](){const _0x1e3353=_0x5234a1;return _0xcc4c1f[_0x1e3353(0xf9)];}get[_0x5234a1(0x18e)](){return _0xcc4c1f['ChartAxisTickPosition'];}get[_0x5234a1(0x19a)](){return _0xcc4c1f['ChartMarkLineLabelPosition'];}get['ChartSemanticAxis'](){const _0x344752=_0x5234a1;return _0xcc4c1f[_0x344752(0x13e)];}get[_0x5234a1(0x1ed)](){const _0x4b9f7e=_0x5234a1;return _0xcc4c1f[_0x4b9f7e(0x1ed)];}get[_0x5234a1(0x1ee)](){const _0x571006=_0x5234a1;return _0xcc4c1f[_0x571006(0x1ee)];}get[_0x5234a1(0x140)](){const _0x2a5d74=_0x5234a1;return _0xcc4c1f[_0x2a5d74(0x140)];}get[_0x5234a1(0x132)](){const _0x51fb4e=_0x5234a1;return _0xcc4c1f[_0x51fb4e(0x132)];}get[_0x5234a1(0x14a)](){const _0xb840fe=_0x5234a1;return _0xcc4c1f[_0xb840fe(0x14a)];}get[_0x5234a1(0x1fd)](){const _0x4b81d0=_0x5234a1;return _0xcc4c1f[_0x4b81d0(0x1fd)];}get['ChartWaterfallStyleTarget'](){const _0x44d70a=_0x5234a1;return _0xcc4c1f[_0x44d70a(0x17e)];}get['ChartWaterfallPointRole'](){const _0x907ecb=_0x5234a1;return _0xcc4c1f[_0x907ecb(0x1e0)];}get[_0x5234a1(0x1a8)](){const _0x303293=_0x5234a1;return _0xcc4c1f[_0x303293(0x1a8)];}get[_0x5234a1(0x1cf)](){const _0x5e8689=_0x5234a1;return _0xcc4c1f[_0x5e8689(0x1cf)];}get[_0x5234a1(0x201)](){const _0x16de18=_0x5234a1;return _0xcc4c1f[_0x16de18(0x201)];}get[_0x5234a1(0x182)](){const _0x5a4300=_0x5234a1;return _0xcc4c1f[_0x5a4300(0x182)];}get['LegendPositionEnum'](){return _0xcc4c1f['LegendPositionEnum'];}get[_0x5234a1(0x1bb)](){const _0x51b835=_0x5234a1;return _0xcc4c1f[_0x51b835(0x1bb)];}get[_0x5234a1(0x1b3)](){const _0x3fbf97=_0x5234a1;return _0xcc4c1f[_0x3fbf97(0x1b3)];}get['RadarShape'](){return _0xcc4c1f['RadarShape'];}get[_0x5234a1(0x180)](){return _0xcc4c1f['RelationChartLayoutEnum'];}get[_0x5234a1(0x1c0)](){return _0xcc4c1f['SelectModeEnum'];}get[_0x5234a1(0x110)](){const _0x37401a=_0x5234a1;return _0xcc4c1f[_0x37401a(0x110)];}get[_0x5234a1(0x161)](){return _0xcc4c1f['TitlePositionEnum'];}get[_0x5234a1(0x178)](){return _0xcc4c1f['WaterfallStackTypeEnum'];}get['WordCloudShapeEnum'](){const _0x43b961=_0x5234a1;return _0xcc4c1f[_0x43b961(0x18c)];}};_0x4cbd6c[_0x5234a1(0x206)][_0x5234a1(0x112)](_0x57196d);var _0x46297c=class{},_0x7a199d=class{constructor(_0x1e9a1d){const _0x28e3be=_0x5234a1;this[_0x28e3be(0x1cb)]=_0x1e9a1d,_0x4663bc(this,_0x28e3be(0x1b8),new WeakMap());}[_0x5234a1(0x163)](_0x53e56b){const _0x380865=_0x5234a1;let _0x45ee46=this[_0x380865(0x1b8)][_0x380865(0x145)](_0x53e56b);if(_0x45ee46)return _0x45ee46;let _0x504ae7=this[_0x380865(0x1cb)](_0x53e56b);return this[_0x380865(0x1b8)][_0x380865(0x20c)](_0x53e56b,_0x504ae7),_0x504ae7;}[_0x5234a1(0x115)](_0x5d1785,_0x5a46d6){const _0x2e7a9c=_0x5234a1;let _0xe478dc={'builder':_0x5d1785,'wrap':_0xf5d1b=>new(this['compose'](_0xf5d1b))(_0xe478dc)};return new(this[_0x2e7a9c(0x163)](_0x5a46d6))(_0xe478dc);}};_0x5b86b3['CHART_FACADE_RANDOM_ID_LENGTH']=0x6,_0x5b86b3['FAreaChartBuilder']=_0x3c3bca,_0x5b86b3[_0x5234a1(0x1f4)]=_0x2222a3,_0x5b86b3[_0x5234a1(0x166)]=_0x164e36,_0x5b86b3[_0x5234a1(0x16a)]=_0x40ef99,_0x5b86b3[_0x5234a1(0xff)]=_0x2c11d5,_0x5b86b3[_0x5234a1(0x107)]=_0x17fe30,_0x5b86b3[_0x5234a1(0x1a5)]=_0x340484,_0x5b86b3[_0x5234a1(0x1ad)]=_0x46297c,_0x5b86b3[_0x5234a1(0x128)]=_0x3f23a2,_0x5b86b3[_0x5234a1(0x126)]=_0x51e045,_0x5b86b3[_0x5234a1(0x102)]=_0xad25af,_0x5b86b3[_0x5234a1(0x1df)]=_0x4fe75d,_0x5b86b3['FParetoChartBuilder']=_0x1cf22e,_0x5b86b3[_0x5234a1(0x18a)]=_0x5eb309,_0x5b86b3['FRadarChartBuilder']=_0x519a1c,_0x5b86b3[_0x5234a1(0x1c5)]=_0x1efb23,_0x5b86b3[_0x5234a1(0x11e)]=_0x998603,_0x5b86b3[_0x5234a1(0x17f)]=_0x6f5062,_0x5b86b3[_0x5234a1(0x1d6)]=_0x1034e5,_0x5b86b3[_0x5234a1(0xfe)]=_0x7a199d,_0x5b86b3[_0x5234a1(0x114)]=_0x57cfef,_0x5b86b3[_0x5234a1(0x177)]=_0x5bd5b6;}));
|
|
1
|
+
(function(_0x419c00,_0x53b9f7){const _0x197834=_0x5b18,_0xf122d6=_0x419c00();while(!![]){try{const _0xcb1bf5=parseInt(_0x197834(0x24c))/0x1+parseInt(_0x197834(0x145))/0x2*(parseInt(_0x197834(0x192))/0x3)+-parseInt(_0x197834(0x14a))/0x4*(-parseInt(_0x197834(0x23e))/0x5)+-parseInt(_0x197834(0x202))/0x6+parseInt(_0x197834(0x176))/0x7+-parseInt(_0x197834(0x229))/0x8*(parseInt(_0x197834(0x1ea))/0x9)+-parseInt(_0x197834(0x248))/0xa*(parseInt(_0x197834(0x1b0))/0xb);if(_0xcb1bf5===_0x53b9f7)break;else _0xf122d6['push'](_0xf122d6['shift']());}catch(_0x51b086){_0xf122d6['push'](_0xf122d6['shift']());}}}(_0x9641,0xb8b3c),function(_0xe5bfd8,_0x4de96d){const _0x152615=_0x5b18;typeof exports=='object'&&typeof module<'u'?_0x4de96d(exports,require('@univerjs-pro/engine-chart'),require('@univerjs/core/facade')):typeof define==_0x152615(0x1a0)&&define[_0x152615(0x1d2)]?define(['exports','@univerjs-pro/engine-chart',_0x152615(0x1d0)],_0x4de96d):(_0xe5bfd8=typeof globalThis<'u'?globalThis:_0xe5bfd8||self,_0x4de96d(_0xe5bfd8[_0x152615(0x244)]={},_0xe5bfd8['UniverProEngineChart'],_0xe5bfd8['UniverCoreFacade']));}(this,function(_0x436761,_0x218efc,_0x460d41){const _0x208701=_0x5b18;Object['defineProperty'](_0x436761,Symbol['toStringTag'],{'value':'Module'});let _0x31d0e9=new Map();function _0x3d4746(_0x17bc10,_0x6bedbc){_0x31d0e9['set'](_0x17bc10,_0x6bedbc);}function _0x464bf6(_0x4d3711){const _0x108cb0=_0x5b18;let _0x38469a=_0x31d0e9[_0x108cb0(0x1e3)](_0x4d3711);if(!_0x38469a)throw Error(_0x108cb0(0x213)+String(_0x4d3711));return _0x38469a;}let _0x1dfcd4=Symbol(_0x208701(0x1ef));function _0x355d48(_0x512af5){return _0x512af5[_0x1dfcd4]['builder']['getPendingConfig']();}function _0x4e3320(_0x5080a3){'@babel/helpers - typeof';const _0x1de1fb=_0x208701;return _0x4e3320=typeof Symbol==_0x1de1fb(0x1a0)&&typeof Symbol[_0x1de1fb(0x21f)]=='symbol'?function(_0x44fb4b){return typeof _0x44fb4b;}:function(_0x14afe2){const _0x518e09=_0x1de1fb;return _0x14afe2&&typeof Symbol==_0x518e09(0x1a0)&&_0x14afe2[_0x518e09(0x214)]===Symbol&&_0x14afe2!==Symbol[_0x518e09(0x1e4)]?_0x518e09(0x1e6):typeof _0x14afe2;},_0x4e3320(_0x5080a3);}function _0x4e0395(_0x5348ce,_0x47410b){const _0x37e08d=_0x208701;if(_0x4e3320(_0x5348ce)!='object'||!_0x5348ce)return _0x5348ce;var _0xd499d9=_0x5348ce[Symbol[_0x37e08d(0x207)]];if(_0xd499d9!==void 0x0){var _0x405acf=_0xd499d9[_0x37e08d(0x133)](_0x5348ce,_0x47410b||_0x37e08d(0x138));if(_0x4e3320(_0x405acf)!='object')return _0x405acf;throw TypeError(_0x37e08d(0x22b));}return(_0x47410b==='string'?String:Number)(_0x5348ce);}function _0x386ffb(_0x2b8b2d){const _0xda9eea=_0x208701;var _0x2bcda4=_0x4e0395(_0x2b8b2d,_0xda9eea(0x19c));return _0x4e3320(_0x2bcda4)==_0xda9eea(0x1e6)?_0x2bcda4:_0x2bcda4+'';}function _0x17743f(_0x218d85,_0x1c7f34,_0x19aee7){const _0x28d5ac=_0x208701;return(_0x1c7f34=_0x386ffb(_0x1c7f34))in _0x218d85?Object[_0x28d5ac(0x13c)](_0x218d85,_0x1c7f34,{'value':_0x19aee7,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x218d85[_0x1c7f34]=_0x19aee7,_0x218d85;}var _0x35b891=class{constructor(_0x1ccd0d){const _0x56cb2c=_0x208701;this['_context']=_0x1ccd0d,_0x17743f(this,_0x56cb2c(0x256),void 0x0),this[_0x56cb2c(0x256)]=_0x1ccd0d[_0x56cb2c(0x1bf)];}get[_0x1dfcd4](){return this['_context'];}['getId'](){const _0x2fc8bf=_0x208701;return this[_0x2fc8bf(0x256)]['id'];}[_0x208701(0x1a3)](){const _0x1d51d6=_0x208701;return this['_builder'][_0x1d51d6(0x1a3)]();}[_0x208701(0x1cc)](){const _0x2df4f2=_0x208701;return this[_0x2df4f2(0x256)]['resolveData']();}['commit'](){const _0x21f8c8=_0x208701;return this[_0x21f8c8(0x256)][_0x21f8c8(0x18a)](),this;}[_0x208701(0x23b)](_0x974d22){const _0xbc1ffe=_0x208701;return this[_0xbc1ffe(0x256)][_0xbc1ffe(0x157)][_0xbc1ffe(0x23b)](_0x974d22);}},_0x3715ce=class extends _0x35b891{['_record'](_0x41b624){const _0x20d5d8=_0x208701;return this[_0x20d5d8(0x256)]['mergePending'](_0x41b624),this;}[_0x208701(0x232)](_0x4d3a8c){const _0x93a31c=_0x208701;return this[_0x93a31c(0x256)][_0x93a31c(0x224)]((0x0,_0x218efc[_0x93a31c(0x232)])(_0x4d3a8c)),this;}[_0x208701(0x128)](){const _0x3625be=_0x208701;return this['_builder'][_0x3625be(0x224)]((0x0,_0x218efc['clearTitle'])()),this;}[_0x208701(0x175)](_0x45396f){const _0x33dffb=_0x208701;return this[_0x33dffb(0x256)][_0x33dffb(0x224)]((0x0,_0x218efc[_0x33dffb(0x175)])(_0x45396f)),this;}[_0x208701(0x1ca)](){const _0x122955=_0x208701;return this[_0x122955(0x256)][_0x122955(0x224)]((0x0,_0x218efc[_0x122955(0x1ca)])()),this;}[_0x208701(0x25b)](_0x19a06a){const _0x56616e=_0x208701;return this['_builder'][_0x56616e(0x224)]((0x0,_0x218efc[_0x56616e(0x25b)])(_0x19a06a)),this;}[_0x208701(0x170)](){const _0x24255a=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x24255a(0x170)])()),this;}[_0x208701(0x16a)](_0x127bd7){const _0x50f078=_0x208701;return this['_builder'][_0x50f078(0x224)]((0x0,_0x218efc['setTheme'])(_0x127bd7)),this;}[_0x208701(0x1e0)](){const _0x1527ca=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x1527ca(0x1e0)])()),this;}[_0x208701(0x1ab)](_0x16201f){const _0x27ad15=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x27ad15(0x1ab)])(_0x16201f)),this;}[_0x208701(0x220)](){const _0x4c0f97=_0x208701;return this[_0x4c0f97(0x256)][_0x4c0f97(0x224)]((0x0,_0x218efc[_0x4c0f97(0x220)])()),this;}['setAppearance'](_0x4ab78f){const _0x47aa0e=_0x208701;return this['_builder'][_0x47aa0e(0x224)]((0x0,_0x218efc[_0x47aa0e(0x1e2)])(_0x4ab78f)),this;}[_0x208701(0x25c)](_0x3d2c89){const _0x27d781=_0x208701;return this[_0x27d781(0x256)]['apply']((0x0,_0x218efc[_0x27d781(0x25c)])(_0x3d2c89)),this;}['setAutoGradientFill'](_0x104e64){const _0x362d00=_0x208701;return this['_builder'][_0x362d00(0x224)]((0x0,_0x218efc['setAutoGradientFill'])(_0x104e64)),this;}[_0x208701(0x252)](){const _0x54b1a1=_0x208701;return this[_0x54b1a1(0x256)][_0x54b1a1(0x224)]((0x0,_0x218efc[_0x54b1a1(0x252)])()),this;}[_0x208701(0x163)](_0x3e102e){const _0x1db5cb=_0x208701;return this['_builder'][_0x1db5cb(0x224)]((0x0,_0x218efc[_0x1db5cb(0x163)])(_0x3e102e)),this;}['resetInvalidValueStrategy'](){const _0x2a82e5=_0x208701;return this[_0x2a82e5(0x256)][_0x2a82e5(0x224)]((0x0,_0x218efc['resetInvalidValueStrategy'])()),this;}[_0x208701(0x17a)](_0x1a424a){const _0x16129e=_0x208701;return this[_0x16129e(0x256)][_0x16129e(0x224)]((0x0,_0x218efc[_0x16129e(0x17a)])(_0x1a424a)),this;}[_0x208701(0x1ba)](){const _0x3cb0fe=_0x208701;return this[_0x3cb0fe(0x256)][_0x3cb0fe(0x224)]((0x0,_0x218efc[_0x3cb0fe(0x1ba)])()),this;}[_0x208701(0x1f1)](_0x5949e2){const _0x2005e3=_0x208701;return this[_0x2005e3(0x256)][_0x2005e3(0x224)]((0x0,_0x218efc[_0x2005e3(0x1f1)])(_0x5949e2)),this;}[_0x208701(0x20e)](){const _0x5c9cc8=_0x208701;return this['_builder'][_0x5c9cc8(0x224)]((0x0,_0x218efc[_0x5c9cc8(0x20e)])()),this;}[_0x208701(0x1d8)](_0x14bd2c){const _0x43e1c2=_0x208701;return this[_0x43e1c2(0x256)][_0x43e1c2(0x224)]((0x0,_0x218efc['setAggregation'])(_0x14bd2c)),this;}[_0x208701(0x216)](_0x3589fd){const _0x305009=_0x208701;return this[_0x305009(0x256)][_0x305009(0x224)]((0x0,_0x218efc[_0x305009(0x216)])(_0x3589fd)),this;}[_0x208701(0x254)](_0x415b49){const _0x1a9f34=_0x208701;this[_0x1a9f34(0x1d1)](_0x415b49);let _0xee9b34=_0x464bf6(_0x415b49);return this['_context'][_0x1a9f34(0x228)](_0xee9b34);}[_0x208701(0x1d1)](_0x5b8c7d){const _0x5acc14=_0x208701;this[_0x5acc14(0x256)][_0x5acc14(0x254)](_0x5b8c7d);}},_0xfc5d97=class extends _0x3715ce{['setMarkLines'](_0x235b6f){const _0x38b43e=_0x208701;return this[_0x38b43e(0x256)]['apply']((0x0,_0x218efc['setMarkLines'])(_0x235b6f)),this;}[_0x208701(0x182)](){const _0x593f57=_0x208701;return this['_builder'][_0x593f57(0x224)]((0x0,_0x218efc[_0x593f57(0x182)])()),this;}[_0x208701(0x13b)](_0x4341eb){const _0x549bb6=_0x208701;return this[_0x549bb6(0x256)][_0x549bb6(0x224)]((0x0,_0x218efc[_0x549bb6(0x13b)])(_0x4341eb)),this;}[_0x208701(0x23a)](_0x39bbd9){const _0xd43d6=_0x208701;return this['_builder'][_0xd43d6(0x224)]((0x0,_0x218efc['clearXAxis'])(_0x39bbd9)),this;}[_0x208701(0x1b4)](_0xa99b9e){const _0x4616ef=_0x208701;return this[_0x4616ef(0x256)][_0x4616ef(0x224)]((0x0,_0x218efc[_0x4616ef(0x1b4)])(_0xa99b9e)),this;}[_0x208701(0x1e7)](_0x106c1f){const _0x1c2e4c=_0x208701;return this[_0x1c2e4c(0x256)][_0x1c2e4c(0x224)]((0x0,_0x218efc[_0x1c2e4c(0x1e7)])(_0x106c1f)),this;}[_0x208701(0x24d)](_0x289553){const _0x204969=_0x208701;return this[_0x204969(0x256)][_0x204969(0x224)]((0x0,_0x218efc['setRightYAxis'])(_0x289553)),this;}[_0x208701(0x1de)](_0x356ffa){const _0x402c43=_0x208701;return this[_0x402c43(0x256)][_0x402c43(0x224)]((0x0,_0x218efc[_0x402c43(0x1de)])(_0x356ffa)),this;}[_0x208701(0x21d)](_0x45f998){const _0x3a5613=_0x208701;return this[_0x3a5613(0x256)][_0x3a5613(0x224)]((0x0,_0x218efc[_0x3a5613(0x155)])(_0x218efc[_0x3a5613(0x14f)]['X'],_0x45f998)),this;}[_0x208701(0x165)](){const _0x3228be=_0x208701;return this[_0x3228be(0x256)]['apply']((0x0,_0x218efc[_0x3228be(0x231)])(_0x218efc[_0x3228be(0x14f)]['X'])),this;}[_0x208701(0x1b5)](_0x439937){const _0x5d9107=_0x208701;return this[_0x5d9107(0x256)][_0x5d9107(0x224)]((0x0,_0x218efc[_0x5d9107(0x155)])(_0x218efc[_0x5d9107(0x14f)]['Y'],_0x439937)),this;}[_0x208701(0x144)](){const _0x2ea221=_0x208701;return this[_0x2ea221(0x256)][_0x2ea221(0x224)]((0x0,_0x218efc[_0x2ea221(0x231)])(_0x218efc[_0x2ea221(0x14f)]['Y'])),this;}[_0x208701(0x169)](_0x35ad8e){const _0x4a954f=_0x208701;return this[_0x4a954f(0x256)]['apply']((0x0,_0x218efc['setAxisTitle'])(_0x218efc[_0x4a954f(0x14f)][_0x4a954f(0x236)],_0x35ad8e)),this;}[_0x208701(0x13e)](){const _0x165e59=_0x208701;return this[_0x165e59(0x256)][_0x165e59(0x224)]((0x0,_0x218efc[_0x165e59(0x231)])(_0x218efc[_0x165e59(0x14f)][_0x165e59(0x236)])),this;}[_0x208701(0x185)](_0x542ee7){const _0x494e25=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x494e25(0x185)])(_0x542ee7)),this;}[_0x208701(0x18b)](){const _0x421567=_0x208701;return this['_builder'][_0x421567(0x224)]((0x0,_0x218efc[_0x421567(0x18b)])()),this;}},_0x1a5d15=class extends _0xfc5d97{[_0x208701(0x210)](_0x5b85bc){return this['_builder']['apply']((0x0,_0x218efc['setBar'])(_0x5b85bc)),this;}[_0x208701(0x131)](){const _0x335350=_0x208701;return this[_0x335350(0x256)]['apply']((0x0,_0x218efc['clearBar'])()),this;}[_0x208701(0x23f)](_0x273f98,_0x58674d){const _0x33cd4b=_0x208701;return this['_builder'][_0x33cd4b(0x224)]((0x0,_0x218efc['setSeries'])(_0x273f98,_0x58674d)),this;}[_0x208701(0x1df)](_0x27f7c9,_0x134735){const _0x207b49=_0x208701;return this[_0x207b49(0x256)]['apply']((0x0,_0x218efc[_0x207b49(0x1df)])(_0x27f7c9,_0x134735)),this;}[_0x208701(0x14d)](_0xf2e45e){const _0x5751bd=_0x208701;return this['_builder'][_0x5751bd(0x224)]((0x0,_0x218efc['setAllSeriesStyle'])(_0xf2e45e)),this;}[_0x208701(0x16d)](_0xfa1d9e){const _0x5ea74d=_0x208701;return this['_builder'][_0x5ea74d(0x224)]((0x0,_0x218efc[_0x5ea74d(0x16d)])(_0xfa1d9e)),this;}['setTrendline'](_0xff1341,_0x2c48f1){const _0x496c47=_0x208701;return this['_builder'][_0x496c47(0x224)]((0x0,_0x218efc['setTrendline'])(_0xff1341,_0x2c48f1)),this;}[_0x208701(0x151)](_0x230cf0,_0x455a4c){const _0x59ece2=_0x208701;return this['_builder'][_0x59ece2(0x224)]((0x0,_0x218efc[_0x59ece2(0x151)])(this[_0x59ece2(0x256)][_0x59ece2(0x1a3)](),_0x230cf0,_0x455a4c)),this;}[_0x208701(0x20a)](_0x4b3643){const _0x7af33b=_0x208701;return this[_0x7af33b(0x256)][_0x7af33b(0x224)]((0x0,_0x218efc[_0x7af33b(0x20a)])(this[_0x7af33b(0x256)][_0x7af33b(0x1a3)](),_0x4b3643)),this;}['setAxisPointer'](_0x7c72a9){const _0x189d56=_0x208701;return this[_0x189d56(0x256)][_0x189d56(0x224)]((0x0,_0x218efc[_0x189d56(0x177)])(_0x7c72a9)),this;}['clearAxisPointer'](_0xf11245){const _0x2b0061=_0x208701;return this[_0x2b0061(0x256)]['apply']((0x0,_0x218efc['clearAxisPointer'])(_0xf11245)),this;}},_0x1a6231=class extends _0x1a5d15{[_0x208701(0x251)](_0xd99bf1){const _0xd07de4=_0x208701;return this['_builder'][_0xd07de4(0x224)]((0x0,_0x218efc[_0xd07de4(0x251)])(_0xd99bf1)),this;}[_0x208701(0x18c)](){const _0x5a94a3=_0x208701;return this[_0x5a94a3(0x256)]['apply']((0x0,_0x218efc[_0x5a94a3(0x18c)])()),this;}},_0x509ec1=class extends _0x1a5d15{},_0x57f043=class extends _0x1a5d15{[_0x208701(0x197)](_0x32fe23){const _0x49323d=_0x208701;return this[_0x49323d(0x256)][_0x49323d(0x224)]((0x0,_0x218efc[_0x49323d(0x197)])(_0x32fe23)),this;}[_0x208701(0x148)](){const _0x8d1c97=_0x208701;return this['_builder'][_0x8d1c97(0x224)]((0x0,_0x218efc[_0x8d1c97(0x148)])()),this;}},_0x135d7e=class extends _0xfc5d97{['setCandlestickFields'](_0x3cbb8e){const _0x2db0b5=_0x208701;return this['_builder'][_0x2db0b5(0x224)]((0x0,_0x218efc[_0x2db0b5(0x1e9)])(_0x3cbb8e)),this;}['clearCandlestickFields'](){const _0x488e67=_0x208701;return this[_0x488e67(0x256)][_0x488e67(0x224)]((0x0,_0x218efc[_0x488e67(0x132)])()),this;}[_0x208701(0x1aa)](_0x3f9ff1){const _0x29dd35=_0x208701;return this[_0x29dd35(0x256)][_0x29dd35(0x224)]((0x0,_0x218efc[_0x29dd35(0x1aa)])(_0x3f9ff1)),this;}[_0x208701(0x1bd)](){return this['_builder']['apply']((0x0,_0x218efc['clearRisingStyle'])()),this;}[_0x208701(0x143)](_0x245087){const _0x38d3ee=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x38d3ee(0x143)])(_0x245087)),this;}['clearFallingStyle'](){const _0x5d420e=_0x208701;return this[_0x5d420e(0x256)][_0x5d420e(0x224)]((0x0,_0x218efc[_0x5d420e(0x194)])()),this;}[_0x208701(0x205)](_0xea7918){const _0x48585b=_0x208701;return this[_0x48585b(0x256)][_0x48585b(0x224)]((0x0,_0x218efc[_0x48585b(0x205)])(_0xea7918)),this;}[_0x208701(0x1d5)](){const _0x179426=_0x208701;return this[_0x179426(0x256)]['apply']((0x0,_0x218efc['clearDojiStyle'])()),this;}['setCandleWidth'](_0x2487b5){const _0x252366=_0x208701;return this[_0x252366(0x256)][_0x252366(0x224)]((0x0,_0x218efc[_0x252366(0x1eb)])(_0x2487b5)),this;}[_0x208701(0x161)](){const _0x4dbfc4=_0x208701;return this[_0x4dbfc4(0x256)][_0x4dbfc4(0x224)]((0x0,_0x218efc[_0x4dbfc4(0x161)])()),this;}},_0x4f75dc=class extends _0x1a5d15{['setSeriesType'](_0x1bf11b,_0x4b6d23){const _0x83f924=_0x208701;return this[_0x83f924(0x256)]['apply']((0x0,_0x218efc[_0x83f924(0x139)])(_0x1bf11b,_0x4b6d23)),this;}[_0x208701(0x20c)](_0x9a2cb5){const _0x592be3=_0x208701;return this[_0x592be3(0x256)][_0x592be3(0x224)]((0x0,_0x218efc[_0x592be3(0x1f7)])(_0x9a2cb5)),this;}[_0x208701(0x1b7)](_0x182361,_0x604d69){const _0x1f868e=_0x208701;return this['_builder'][_0x1f868e(0x224)]((0x0,_0x218efc['setCombinationSeriesAxis'])(_0x182361,_0x604d69)),this;}[_0x208701(0x17b)](_0x570e42){const _0x523030=_0x208701;return this[_0x523030(0x256)][_0x523030(0x224)]((0x0,_0x218efc[_0x523030(0x186)])(_0x570e42)),this;}},_0xfc3e3d=class extends _0x3715ce{[_0x208701(0x1cd)](_0x49e304){const _0x116566=_0x208701;return this[_0x116566(0x256)][_0x116566(0x224)]((0x0,_0x218efc['setFunnelGap'])(_0x49e304)),this;}[_0x208701(0x208)](){const _0x246c48=_0x208701;return this[_0x246c48(0x256)][_0x246c48(0x224)]((0x0,_0x218efc[_0x246c48(0x1a8)])()),this;}[_0x208701(0x1c5)](_0x5d4f52){const _0x2d6cc6=_0x208701;return this['_builder'][_0x2d6cc6(0x224)]((0x0,_0x218efc['setUseAbsoluteValue'])(_0x5d4f52)),this;}[_0x208701(0x24b)](){const _0x259b96=_0x208701;return this[_0x259b96(0x256)]['apply']((0x0,_0x218efc[_0x259b96(0x24b)])()),this;}},_0x38cc6d=class extends _0xfc5d97{[_0x208701(0x22f)](_0x523ddc){const _0x167cbc=_0x208701;return this['_builder'][_0x167cbc(0x224)]((0x0,_0x218efc['setVisualMapType'])(_0x523ddc)),this;}[_0x208701(0x179)](){const _0x2f28c1=_0x208701;return this[_0x2f28c1(0x256)]['apply']((0x0,_0x218efc[_0x2f28c1(0x179)])()),this;}[_0x208701(0x1c7)](_0x34049c,_0x4c784c){const _0x28ca7f=_0x208701;return this[_0x28ca7f(0x256)][_0x28ca7f(0x224)]((0x0,_0x218efc[_0x28ca7f(0x1c7)])(_0x34049c,_0x4c784c)),this;}[_0x208701(0x240)](){const _0x409915=_0x208701;return this[_0x409915(0x256)][_0x409915(0x224)]((0x0,_0x218efc[_0x409915(0x240)])()),this;}[_0x208701(0x1ae)](_0xf124cf){const _0x20371f=_0x208701;return this[_0x20371f(0x256)][_0x20371f(0x224)]((0x0,_0x218efc[_0x20371f(0x1ae)])(_0xf124cf)),this;}['clearCellLabel'](){const _0xf5555d=_0x208701;return this[_0xf5555d(0x256)]['apply']((0x0,_0x218efc[_0xf5555d(0x171)])()),this;}['setValueUnit'](_0x262259){const _0xbfea0a=_0x208701;return this[_0xbfea0a(0x256)][_0xbfea0a(0x224)]((0x0,_0x218efc[_0xbfea0a(0x1fc)])(_0x262259)),this;}['clearValueUnit'](){const _0x7ecbda=_0x208701;return this[_0x7ecbda(0x256)][_0x7ecbda(0x224)]((0x0,_0x218efc[_0x7ecbda(0x15f)])()),this;}},_0x5e634d=class extends _0x1a5d15{[_0x208701(0x25d)](_0x1aa0f3){const _0x3ac98a=_0x208701;return this[_0x3ac98a(0x256)][_0x3ac98a(0x224)]((0x0,_0x218efc[_0x3ac98a(0x25d)])(_0x1aa0f3)),this;}[_0x208701(0x1f8)](){const _0x3b222b=_0x208701;return this[_0x3b222b(0x256)][_0x3b222b(0x224)]((0x0,_0x218efc['clearHistogramField'])()),this;}[_0x208701(0x140)](_0x5701be){const _0x131846=_0x208701;return Number[_0x131846(0x159)](_0x5701be)&&this[_0x131846(0x256)][_0x131846(0x224)]((0x0,_0x218efc[_0x131846(0x238)])(_0x5701be)),this;}[_0x208701(0x1a9)](_0x44d057){const _0x2f99d6=_0x208701;return Number['isFinite'](_0x44d057)&&this[_0x2f99d6(0x256)][_0x2f99d6(0x224)]((0x0,_0x218efc[_0x2f99d6(0x1fe)])(_0x44d057)),this;}[_0x208701(0x13f)](){const _0x516e65=_0x208701;return this['_builder'][_0x516e65(0x224)]((0x0,_0x218efc['resetHistogramBinning'])()),this;}[_0x208701(0x1dd)](_0x3aa6c5){const _0x2ece6b=_0x208701;return Number[_0x2ece6b(0x159)](_0x3aa6c5)&&this[_0x2ece6b(0x256)][_0x2ece6b(0x224)]((0x0,_0x218efc[_0x2ece6b(0x1da)])(_0x3aa6c5)),this;}[_0x208701(0x237)](){const _0x3c3f37=_0x208701;return this[_0x3c3f37(0x256)][_0x3c3f37(0x224)]((0x0,_0x218efc[_0x3c3f37(0x1f9)])()),this;}[_0x208701(0x230)](_0x1808c7){const _0x40e604=_0x208701;return Number[_0x40e604(0x159)](_0x1808c7)&&this[_0x40e604(0x256)]['apply']((0x0,_0x218efc['setHistogramOverflowThreshold'])(_0x1808c7)),this;}[_0x208701(0x125)](){const _0x40a1a5=_0x208701;return this[_0x40a1a5(0x256)][_0x40a1a5(0x224)]((0x0,_0x218efc[_0x40a1a5(0x15c)])()),this;}['setBinGap'](_0xede98b){const _0x3a5b53=_0x208701;return Number[_0x3a5b53(0x159)](_0xede98b)&&this[_0x3a5b53(0x256)]['apply']((0x0,_0x218efc[_0x3a5b53(0x1c2)])(_0xede98b)),this;}['resetBinGap'](){const _0x5e9cd5=_0x208701;return this[_0x5e9cd5(0x256)][_0x5e9cd5(0x224)]((0x0,_0x218efc[_0x5e9cd5(0x152)])()),this;}},_0x5dc892=class extends _0x1a5d15{[_0x208701(0x225)](_0x59bebe){const _0x52ba10=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x52ba10(0x225)])(_0x59bebe)),this;}[_0x208701(0x16e)](){const _0x32291f=_0x208701;return this[_0x32291f(0x256)]['apply']((0x0,_0x218efc['clearLineStyle'])()),this;}},_0x360a97=class extends _0x1a5d15{[_0x208701(0x23d)](_0x284478){return this['_builder']['apply']((0x0,_0x218efc['setParetoBarStyle'])(_0x284478)),this;}['clearBarStyle'](){const _0xc44586=_0x208701;return this[_0xc44586(0x256)]['apply']((0x0,_0x218efc[_0xc44586(0x160)])()),this;}['setCumulativeLineStyle'](_0x32957e){const _0x4f1cad=_0x208701;return this[_0x4f1cad(0x256)]['apply']((0x0,_0x218efc[_0x4f1cad(0x196)])(_0x32957e)),this;}[_0x208701(0x21a)](){const _0x46a9c8=_0x208701;return this[_0x46a9c8(0x256)]['apply']((0x0,_0x218efc['clearCumulativeLineStyle'])()),this;}[_0x208701(0x168)](_0x10498b){const _0x16e91c=_0x208701;return this[_0x16e91c(0x256)][_0x16e91c(0x224)]((0x0,_0x218efc[_0x16e91c(0x168)])(_0x10498b)),this;}[_0x208701(0x172)](){const _0x13b270=_0x208701;return this[_0x13b270(0x256)][_0x13b270(0x224)]((0x0,_0x218efc[_0x13b270(0x172)])()),this;}},_0x1b9c7e=class extends _0x3715ce{[_0x208701(0x136)](_0x4ebb51,_0x788e92){const _0x143887=_0x208701;return this[_0x143887(0x256)]['apply']((0x0,_0x218efc[_0x143887(0x136)])(_0x4ebb51,_0x788e92)),this;}[_0x208701(0x1d3)](_0x2e5bf9){const _0x4b6357=_0x208701;return this[_0x4b6357(0x256)][_0x4b6357(0x224)]((0x0,_0x218efc[_0x4b6357(0x1d3)])(_0x2e5bf9)),this;}[_0x208701(0x17c)](_0x108e6a){const _0x248d22=_0x208701;return this[_0x248d22(0x256)][_0x248d22(0x224)]((0x0,_0x218efc[_0x248d22(0x17c)])(_0x108e6a)),this;}['clearDoughnutHole'](){const _0x524573=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x524573(0x18f)])()),this;}[_0x208701(0x16c)](_0x2ebed4){const _0x541f65=_0x208701;return this[_0x541f65(0x256)][_0x541f65(0x224)]((0x0,_0x218efc[_0x541f65(0x16c)])(_0x2ebed4)),this;}[_0x208701(0x13d)](){const _0x466344=_0x208701;return this[_0x466344(0x256)]['apply']((0x0,_0x218efc['resetExplosion'])()),this;}[_0x208701(0x203)](_0x31d912){const _0x1bfd32=_0x208701;return this[_0x1bfd32(0x256)][_0x1bfd32(0x224)]((0x0,_0x218efc[_0x1bfd32(0x203)])(_0x31d912)),this;}[_0x208701(0x22c)](){const _0x4d1e4c=_0x208701;return this[_0x4d1e4c(0x256)]['apply']((0x0,_0x218efc[_0x4d1e4c(0x22c)])()),this;}[_0x208701(0x178)](_0x151438){const _0x3b596d=_0x208701;return this['_builder'][_0x3b596d(0x224)]((0x0,_0x218efc[_0x3b596d(0x178)])(_0x151438)),this;}[_0x208701(0x217)](){const _0x5ef445=_0x208701;return this[_0x5ef445(0x256)][_0x5ef445(0x224)]((0x0,_0x218efc['resetPaddingAngleEnabled'])()),this;}[_0x208701(0x1f5)](_0x5e71ae){const _0x56bbe0=_0x208701;return this[_0x56bbe0(0x256)][_0x56bbe0(0x224)]((0x0,_0x218efc[_0x56bbe0(0x1f5)])(_0x5e71ae)),this;}['resetHalfPie'](){const _0x40e524=_0x208701;return this[_0x40e524(0x256)][_0x40e524(0x224)]((0x0,_0x218efc[_0x40e524(0x218)])()),this;}[_0x208701(0x1e5)](_0x53b03c){const _0x50241b=_0x208701;return this[_0x50241b(0x256)][_0x50241b(0x224)]((0x0,_0x218efc[_0x50241b(0x1e5)])(_0x53b03c)),this;}[_0x208701(0x188)](){const _0x4a3e17=_0x208701;return this[_0x4a3e17(0x256)][_0x4a3e17(0x224)]((0x0,_0x218efc['resetRosePie'])()),this;}[_0x208701(0x1dc)](_0x277624){const _0x4135f9=_0x208701;return this[_0x4135f9(0x256)][_0x4135f9(0x224)]((0x0,_0x218efc[_0x4135f9(0x1dc)])(_0x277624)),this;}[_0x208701(0x234)](){const _0x544bc1=_0x208701;return this['_builder'][_0x544bc1(0x224)]((0x0,_0x218efc['resetLabelLineVisible'])()),this;}[_0x208701(0x130)](_0x429d49){const _0xa30944=_0x208701;return this[_0xa30944(0x256)][_0xa30944(0x224)]((0x0,_0x218efc[_0xa30944(0x130)])(_0x429d49)),this;}[_0x208701(0x16f)](){return this['_builder']['apply']((0x0,_0x218efc['resetValueScale'])()),this;}['setValueSuffix'](_0xab8b8a){const _0x507781=_0x208701;return this[_0x507781(0x256)]['apply']((0x0,_0x218efc[_0x507781(0x22e)])(_0xab8b8a)),this;}['clearValueSuffix'](){const _0x4be5b6=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x4be5b6(0x1b9)])()),this;}[_0x208701(0x227)](_0x290a8a){const _0x1c7269=_0x208701;return this[_0x1c7269(0x256)][_0x1c7269(0x224)]((0x0,_0x218efc['setDecimalPlaces'])(_0x290a8a)),this;}['resetDecimalPlaces'](){const _0x354927=_0x208701;return this[_0x354927(0x256)][_0x354927(0x224)]((0x0,_0x218efc['resetDecimalPlaces'])()),this;}[_0x208701(0x174)](_0x193a6f){const _0x2bf1cf=_0x208701;return this[_0x2bf1cf(0x256)][_0x2bf1cf(0x224)]((0x0,_0x218efc[_0x2bf1cf(0x174)])(_0x193a6f)),this;}[_0x208701(0x1f6)](){const _0x592524=_0x208701;return this[_0x592524(0x256)][_0x592524(0x224)]((0x0,_0x218efc['clearPieLabel'])()),this;}},_0x791cdf=class extends _0x3715ce{['setShape'](_0x51aefd){const _0x14809d=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x14809d(0x181)])(_0x51aefd)),this;}[_0x208701(0x189)](){const _0x2d0bac=_0x208701;return this[_0x2d0bac(0x256)][_0x2d0bac(0x224)]((0x0,_0x218efc['resetRadarShape'])()),this;}[_0x208701(0x1b3)](_0x5aba20){const _0x368dfc=_0x208701;return this['_builder'][_0x368dfc(0x224)]((0x0,_0x218efc[_0x368dfc(0x223)])(_0x5aba20)),this;}[_0x208701(0x1d6)](){const _0x4a3216=_0x208701;return this[_0x4a3216(0x256)][_0x4a3216(0x224)]((0x0,_0x218efc[_0x4a3216(0x1a7)])()),this;}},_0x324711=class extends _0x3715ce{[_0x208701(0x201)](_0x4be261){const _0x38f018=_0x208701;return this['_builder'][_0x38f018(0x224)]((0x0,_0x218efc[_0x38f018(0x199)])(_0x4be261)),this;}[_0x208701(0x149)](){const _0x4516eb=_0x208701;return this[_0x4516eb(0x256)]['apply']((0x0,_0x218efc[_0x4516eb(0x1f0)])()),this;}[_0x208701(0x14b)](_0x5aeed9){const _0x3b3abb=_0x208701;return this[_0x3b3abb(0x256)][_0x3b3abb(0x224)]((0x0,_0x218efc[_0x3b3abb(0x14b)])(_0x5aeed9)),this;}[_0x208701(0x22a)](){const _0x35c1b2=_0x208701;return this[_0x35c1b2(0x256)][_0x35c1b2(0x224)]((0x0,_0x218efc[_0x35c1b2(0x22a)])()),this;}[_0x208701(0x12c)](_0x381b6c){const _0x64e869=_0x208701;return this[_0x64e869(0x256)][_0x64e869(0x224)]((0x0,_0x218efc[_0x64e869(0x12c)])(_0x381b6c)),this;}[_0x208701(0x1ff)](){const _0xbaa0e1=_0x208701;return this[_0xbaa0e1(0x256)]['apply']((0x0,_0x218efc[_0xbaa0e1(0x1ff)])()),this;}[_0x208701(0x1fd)](_0x2aba86){const _0x1a9c55=_0x208701;return this[_0x1a9c55(0x256)][_0x1a9c55(0x224)]((0x0,_0x218efc['setRelationForce'])(_0x2aba86)),this;}[_0x208701(0x15a)](){const _0x17ebc7=_0x208701;return this[_0x17ebc7(0x256)][_0x17ebc7(0x224)]((0x0,_0x218efc[_0x17ebc7(0x15e)])()),this;}['setCircularLabelRotation'](_0x361381){const _0x54b924=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x54b924(0x18e)])(_0x361381)),this;}[_0x208701(0x23c)](){const _0x5c433d=_0x208701;return this['_builder']['apply']((0x0,_0x218efc[_0x5c433d(0x23c)])()),this;}[_0x208701(0x206)](_0x5b5fdc){const _0xd68e96=_0x208701;return this[_0xd68e96(0x256)][_0xd68e96(0x224)]((0x0,_0x218efc[_0xd68e96(0x184)])(_0x5b5fdc)),this;}['resetNodeShape'](){const _0x47921b=_0x208701;return this['_builder'][_0x47921b(0x224)]((0x0,_0x218efc['resetRelationNodeShape'])()),this;}},_0x3d47ad=class extends _0x1a5d15{[_0x208701(0x239)](_0x11f1dd){const _0x31cd09=_0x208701;return this['_builder'][_0x31cd09(0x224)]((0x0,_0x218efc[_0x31cd09(0x239)])(_0x11f1dd)),this;}[_0x208701(0x257)](){const _0x5a765c=_0x208701;return this[_0x5a765c(0x256)][_0x5a765c(0x224)]((0x0,_0x218efc[_0x5a765c(0x257)])()),this;}},_0x4308f2=class extends _0x3715ce{[_0x208701(0x21b)](_0x17f8f6){const _0x17b9aa=_0x208701;return this[_0x17b9aa(0x256)][_0x17b9aa(0x224)]((0x0,_0x218efc['setTreemapHierarchyFields'])(_0x17f8f6)),this;}[_0x208701(0x1fa)](_0x3d7823){const _0x4ee00c=_0x208701;return this[_0x4ee00c(0x256)]['apply']((0x0,_0x218efc['setTreemapValueField'])(_0x3d7823)),this;}[_0x208701(0x1f3)](_0x4b4279){const _0x2b474a=_0x208701;return this[_0x2b474a(0x256)][_0x2b474a(0x224)]((0x0,_0x218efc[_0x2b474a(0x24a)])(_0x4b4279)),this;}['resetParentLabelLayout'](){const _0x271f9f=_0x208701;return this['_builder'][_0x271f9f(0x224)]((0x0,_0x218efc[_0x271f9f(0x219)])()),this;}[_0x208701(0x193)](_0x4b1fd2){const _0x25ff7c=_0x208701;return this['_builder'][_0x25ff7c(0x224)]((0x0,_0x218efc['setTreemapLabel'])(_0x4b1fd2)),this;}[_0x208701(0x150)](){const _0x423ad5=_0x208701;return this[_0x423ad5(0x256)][_0x423ad5(0x224)]((0x0,_0x218efc[_0x423ad5(0x150)])()),this;}},_0x38a049=class extends _0x1a5d15{[_0x208701(0x183)](){const _0x143d3e=_0x208701;var _0x227524,_0x4db21d;return(_0x227524=(_0x4db21d=this[_0x143d3e(0x1a3)]()[_0x143d3e(0x204)])==null?void 0x0:_0x4db21d[_0x143d3e(0x137)])==null?[]:_0x227524;}[_0x208701(0x17e)](_0xab607b){const _0xddc7eb=_0x208701;let _0xa349a4=this['describe']()[_0xddc7eb(0x18d)],_0x2eba82=new Map();_0xab607b[_0xddc7eb(0x1c8)]((_0x40f818,_0x24a5fc)=>{const _0x5acf11=_0xddc7eb;if(!Number[_0x5acf11(0x242)](_0x40f818['dataPointIndex'])||_0x40f818[_0x5acf11(0x1d9)]<0x0)throw Error(_0x5acf11(0x17f)+_0x24a5fc+_0x5acf11(0x15d));let _0x2ce57c=typeof _0x40f818[_0x5acf11(0x18d)]==_0x5acf11(0x1c0)?_0x110343(_0x40f818[_0x5acf11(0x18d)],_0x24a5fc):_0x4836e0(_0x40f818[_0x5acf11(0x18d)][_0x5acf11(0x198)],_0xa349a4,_0x24a5fc);_0x2eba82[_0x5acf11(0x1ac)](_0x2ce57c+':'+_0x40f818['dataPointIndex'],{..._0x40f818,'series':_0x2ce57c});});let _0x432865=[..._0x2eba82[_0xddc7eb(0x12a)]()][_0xddc7eb(0x21e)]((_0x22fa05,_0x5a2382)=>_0x22fa05[_0xddc7eb(0x18d)]-_0x5a2382[_0xddc7eb(0x18d)]||_0x22fa05['dataPointIndex']-_0x5a2382[_0xddc7eb(0x1d9)]);return this[_0xddc7eb(0x256)]['apply']((0x0,_0x218efc[_0xddc7eb(0x21c)])(_0x432865)),this;}[_0x208701(0x1cf)](_0x348a0e){const _0x587c3a=_0x208701;return this[_0x587c3a(0x256)][_0x587c3a(0x224)]((0x0,_0x218efc['setWaterfallConnector'])(_0x348a0e)),this;}[_0x208701(0x166)](){const _0x57a10e=_0x208701;return this[_0x57a10e(0x256)][_0x57a10e(0x224)]((0x0,_0x218efc['clearWaterfallConnector'])()),this;}['setStackType'](_0x92144f){const _0x193ad5=_0x208701;return this['_builder'][_0x193ad5(0x224)]((0x0,_0x218efc[_0x193ad5(0x1a6)])(_0x92144f)),this;}['resetStackType'](){const _0xdc9630=_0x208701;return this[_0xdc9630(0x256)][_0xdc9630(0x224)]((0x0,_0x218efc[_0xdc9630(0x235)])()),this;}['setUseSubtotal'](_0x31420e){const _0x52699b=_0x208701;return this[_0x52699b(0x256)]['apply']((0x0,_0x218efc[_0x52699b(0x1c4)])(_0x31420e)),this;}[_0x208701(0x233)](){const _0x450824=_0x208701;return this[_0x450824(0x256)][_0x450824(0x224)]((0x0,_0x218efc['resetUseSubtotal'])()),this;}[_0x208701(0x20d)](_0x6bd09e,_0xcb890){const _0x4ead81=_0x208701;return this[_0x4ead81(0x256)]['apply']((0x0,_0x218efc[_0x4ead81(0x187)])(_0x6bd09e,_0x218efc[_0x4ead81(0x1be)][_0x4ead81(0x24e)],_0xcb890)),this;}[_0x208701(0x129)](_0x5f3804){const _0xa5e528=_0x208701;return this[_0xa5e528(0x256)]['apply']((0x0,_0x218efc[_0xa5e528(0x1b1)])(_0x5f3804,_0x218efc[_0xa5e528(0x1be)][_0xa5e528(0x24e)])),this;}[_0x208701(0x14c)](_0x41edff,_0x2a69cf){const _0x1a4629=_0x208701;return this[_0x1a4629(0x256)][_0x1a4629(0x224)]((0x0,_0x218efc['setWaterfallStyle'])(_0x41edff,_0x218efc['ChartWaterfallStyleTarget']['Negative'],_0x2a69cf)),this;}[_0x208701(0x1db)](_0x16dd4a){const _0x42dfcd=_0x208701;return this['_builder'][_0x42dfcd(0x224)]((0x0,_0x218efc[_0x42dfcd(0x1b1)])(_0x16dd4a,_0x218efc[_0x42dfcd(0x1be)][_0x42dfcd(0x1cb)])),this;}[_0x208701(0x221)](_0xf1005d,_0x81043c){const _0x4c217c=_0x208701;return this[_0x4c217c(0x256)][_0x4c217c(0x224)]((0x0,_0x218efc[_0x4c217c(0x187)])(_0xf1005d,_0x218efc[_0x4c217c(0x1be)][_0x4c217c(0x146)],_0x81043c)),this;}['clearSubtotalStyle'](_0x1d6467){const _0x445326=_0x208701;return this[_0x445326(0x256)][_0x445326(0x224)]((0x0,_0x218efc[_0x445326(0x1b1)])(_0x1d6467,_0x218efc[_0x445326(0x1be)][_0x445326(0x146)])),this;}};function _0x110343(_0x13fc1f,_0x37b9a9){const _0x20b04f=_0x208701;if(!Number['isInteger'](_0x13fc1f)||_0x13fc1f<0x0)throw Error('pointRoles.'+_0x37b9a9+_0x20b04f(0x1af));return _0x13fc1f;}function _0x4836e0(_0xff8d31,_0xfeea85,_0x491e45){const _0x5a6db4=_0x208701;let _0x48a039=Object['entries'](_0xfeea85)['filter'](([,_0x1c3823])=>(_0x1c3823==null?void 0x0:_0x1c3823[_0x5a6db4(0x198)])===_0xff8d31);if(_0x48a039[_0x5a6db4(0x153)]!==0x1)throw Error(_0x5a6db4(0x17f)+_0x491e45+'\x20must\x20resolve\x20to\x20exactly\x20one\x20series\x20named\x20\x22'+_0xff8d31+'\x22.');return Number(_0x48a039[0x0][0x0]);}var _0xa589e1=class extends _0x3715ce{[_0x208701(0x1a4)](_0x242c29){const _0x3e2e90=_0x208701;return this[_0x3e2e90(0x256)][_0x3e2e90(0x224)]((0x0,_0x218efc['setWordCloudShape'])(_0x242c29)),this;}['resetShape'](){const _0x2fa18c=_0x208701;return this[_0x2fa18c(0x256)][_0x2fa18c(0x224)]((0x0,_0x218efc[_0x2fa18c(0x1e8)])()),this;}[_0x208701(0x259)](_0x90b78a){const _0x25d3fc=_0x208701;return this[_0x25d3fc(0x256)][_0x25d3fc(0x224)]((0x0,_0x218efc[_0x25d3fc(0x259)])(_0x90b78a)),this;}['clearMaskImage'](){const _0x4a9741=_0x208701;return this[_0x4a9741(0x256)]['apply']((0x0,_0x218efc[_0x4a9741(0x17d)])()),this;}[_0x208701(0x1ee)](_0x479245){const _0x547f78=_0x208701;return this[_0x547f78(0x256)][_0x547f78(0x224)]((0x0,_0x218efc['setWordCloudRepeat'])(_0x479245)),this;}[_0x208701(0x1c6)](){const _0x21a7c5=_0x208701;return this[_0x21a7c5(0x256)][_0x21a7c5(0x224)]((0x0,_0x218efc['resetWordCloudRepeat'])()),this;}};let _0x488b12={[_0x218efc[_0x208701(0x180)][_0x208701(0x20b)]]:_0x5dc892,[_0x218efc[_0x208701(0x180)]['Column']]:_0x1a5d15,[_0x218efc[_0x208701(0x180)]['ColumnStacked']]:_0x1a5d15,[_0x218efc[_0x208701(0x180)][_0x208701(0x1ad)]]:_0x1a5d15,[_0x218efc['ChartTypeString'][_0x208701(0x19e)]]:_0x1a5d15,[_0x218efc['ChartTypeString'][_0x208701(0x1ec)]]:_0x1a5d15,[_0x218efc[_0x208701(0x180)][_0x208701(0x1a5)]]:_0x1a5d15,[_0x218efc[_0x208701(0x180)][_0x208701(0x135)]]:_0x1b9c7e,[_0x218efc[_0x208701(0x180)]['Donut']]:_0x1b9c7e,[_0x218efc[_0x208701(0x180)][_0x208701(0x241)]]:_0x1a6231,[_0x218efc[_0x208701(0x180)]['AreaStacked']]:_0x1a6231,[_0x218efc[_0x208701(0x180)][_0x208701(0x158)]]:_0x1a6231,[_0x218efc['ChartTypeString'][_0x208701(0x222)]]:_0x791cdf,[_0x218efc['ChartTypeString'][_0x208701(0x226)]]:_0x3d47ad,[_0x218efc[_0x208701(0x180)]['Combination']]:_0x4f75dc,[_0x218efc[_0x208701(0x180)][_0x208701(0x1b6)]]:_0xa589e1,[_0x218efc['ChartTypeString'][_0x208701(0x167)]]:_0xfc3e3d,[_0x218efc[_0x208701(0x180)]['Bubble']]:_0x57f043,[_0x218efc[_0x208701(0x180)]['Relation']]:_0x324711,[_0x218efc[_0x208701(0x180)][_0x208701(0x200)]]:_0x38a049,[_0x218efc['ChartTypeString'][_0x208701(0x253)]]:_0x360a97,[_0x218efc[_0x208701(0x180)][_0x208701(0x215)]]:_0x3715ce,[_0x218efc[_0x208701(0x180)][_0x208701(0x1c9)]]:_0x38cc6d,[_0x218efc[_0x208701(0x180)]['Boxplot']]:_0x509ec1,[_0x218efc['ChartTypeString'][_0x208701(0x126)]]:_0x135d7e,[_0x218efc[_0x208701(0x180)][_0x208701(0x247)]]:_0x5e634d,[_0x218efc[_0x208701(0x180)][_0x208701(0x19a)]]:_0x4308f2};for(let _0x581abb of Object[_0x208701(0x1fb)](_0x488b12))_0x3d4746(_0x581abb,_0x488b12[_0x581abb]);var _0x4dcc29=class extends _0x460d41[_0x208701(0x20f)]{get['ChartAggregationTarget'](){const _0x585b7e=_0x208701;return _0x218efc[_0x585b7e(0x19f)];}get[_0x208701(0x15b)](){const _0x1d8d68=_0x208701;return _0x218efc[_0x1d8d68(0x15b)];}get['ChartTrendlineType'](){return _0x218efc['ChartTrendlineType'];}get[_0x208701(0x12f)](){const _0x389e63=_0x208701;return _0x218efc[_0x389e63(0x12f)];}get[_0x208701(0x14f)](){const _0x3350a9=_0x208701;return _0x218efc[_0x3350a9(0x14f)];}get[_0x208701(0x19d)](){const _0x14c501=_0x208701;return _0x218efc[_0x14c501(0x19d)];}get['ChartAxisTarget'](){const _0x36f50b=_0x208701;return _0x218efc[_0x36f50b(0x211)];}get[_0x208701(0x1d7)](){const _0x272410=_0x208701;return _0x218efc[_0x272410(0x1d7)];}get[_0x208701(0x1f4)](){const _0x3cc24e=_0x208701;return _0x218efc[_0x3cc24e(0x1f4)];}get['ChartSemanticAxis'](){const _0x46cf61=_0x208701;return _0x218efc[_0x46cf61(0x243)];}get[_0x208701(0x1f2)](){const _0x3fcd63=_0x208701;return _0x218efc[_0x3fcd63(0x1f2)];}get[_0x208701(0x1bc)](){const _0x571a5c=_0x208701;return _0x218efc[_0x571a5c(0x1bc)];}get[_0x208701(0x195)](){const _0x170138=_0x208701;return _0x218efc[_0x170138(0x195)];}get['ChartSeriesTypeString'](){const _0x2f3120=_0x208701;return _0x218efc[_0x2f3120(0x25f)];}get['ChartTypeString'](){const _0x3bc5c9=_0x208701;return _0x218efc[_0x3bc5c9(0x180)];}get[_0x208701(0x245)](){return _0x218efc['ChartVisualMapType'];}get[_0x208701(0x1be)](){return _0x218efc['ChartWaterfallStyleTarget'];}get[_0x208701(0x246)](){const _0x2921f9=_0x208701;return _0x218efc[_0x2921f9(0x246)];}get['ChartWordCloudShapeSource'](){const _0x460e32=_0x208701;return _0x218efc[_0x460e32(0x12b)];}get[_0x208701(0x1a2)](){const _0x58c09a=_0x208701;return _0x218efc[_0x58c09a(0x1a2)];}get['InvalidValueType'](){return _0x218efc['InvalidValueType'];}get[_0x208701(0x212)](){return _0x218efc['LabelAlignEnum'];}get[_0x208701(0x1b8)](){return _0x218efc['LegendPositionEnum'];}get['LinePointShape'](){return _0x218efc['LinePointShape'];}get[_0x208701(0x258)](){const _0x1fe8cc=_0x208701;return _0x218efc[_0x1fe8cc(0x258)];}get[_0x208701(0x1b2)](){const _0x3c1690=_0x208701;return _0x218efc[_0x3c1690(0x1b2)];}get[_0x208701(0x173)](){const _0x16ff5c=_0x208701;return _0x218efc[_0x16ff5c(0x173)];}get[_0x208701(0x25a)](){const _0x4f8300=_0x208701;return _0x218efc[_0x4f8300(0x25a)];}get['SeriesLabelPosition'](){const _0xfbf4d8=_0x208701;return _0x218efc[_0xfbf4d8(0x19b)];}get[_0x208701(0x190)](){const _0x1ff417=_0x208701;return _0x218efc[_0x1ff417(0x190)];}get[_0x208701(0x191)](){const _0x4d60a1=_0x208701;return _0x218efc[_0x4d60a1(0x191)];}get['WordCloudShapeEnum'](){return _0x218efc['WordCloudShapeEnum'];}};_0x460d41[_0x208701(0x20f)][_0x208701(0x12d)](_0x4dcc29);var _0x5f5904=class{},_0x983af4=class{constructor(_0x18034a){const _0x23ce8e=_0x208701;this['_compose']=_0x18034a,_0x17743f(this,_0x23ce8e(0x1ed),new WeakMap());}[_0x208701(0x1e1)](_0x5c39f4){const _0xb6017c=_0x208701;let _0x360883=this[_0xb6017c(0x1ed)][_0xb6017c(0x1e3)](_0x5c39f4);if(_0x360883)return _0x360883;let _0x5b0b64=this[_0xb6017c(0x1a1)](_0x5c39f4);return this[_0xb6017c(0x1ed)]['set'](_0x5c39f4,_0x5b0b64),_0x5b0b64;}[_0x208701(0x22d)](_0x244803,_0x1cd0c3){const _0x441924=_0x208701;let _0x2f96e8={'builder':_0x244803,'wrap':_0x514e84=>new(this[_0x441924(0x1e1)](_0x514e84))(_0x2f96e8)};return new(this['compose'](_0x1cd0c3))(_0x2f96e8);}};_0x436761['CHART_FACADE_RANDOM_ID_LENGTH']=0x6,_0x436761[_0x208701(0x250)]=_0x1a6231,_0x436761[_0x208701(0x164)]=_0xfc5d97,_0x436761[_0x208701(0x249)]=_0x509ec1,_0x436761[_0x208701(0x1c1)]=_0x57f043,_0x436761[_0x208701(0x1bb)]=_0x135d7e,_0x436761[_0x208701(0x127)]=_0x1a5d15,_0x436761[_0x208701(0x142)]=_0x35b891,_0x436761[_0x208701(0x24f)]=_0x3715ce,_0x436761[_0x208701(0x1c3)]=_0x5f5904,_0x436761[_0x208701(0x134)]=_0x4f75dc,_0x436761[_0x208701(0x16b)]=_0xfc3e3d,_0x436761[_0x208701(0x14e)]=_0x38cc6d,_0x436761[_0x208701(0x209)]=_0x5e634d,_0x436761['FLineChartBuilder']=_0x5dc892,_0x436761[_0x208701(0x1d4)]=_0x360a97,_0x436761[_0x208701(0x156)]=_0x1b9c7e,_0x436761[_0x208701(0x13a)]=_0x791cdf,_0x436761[_0x208701(0x162)]=_0x324711,_0x436761[_0x208701(0x154)]=_0x3d47ad,_0x436761[_0x208701(0x141)]=_0x4308f2,_0x436761[_0x208701(0x25e)]=_0x38a049,_0x436761[_0x208701(0x12e)]=_0xa589e1,_0x436761[_0x208701(0x147)]=_0x983af4,_0x436761[_0x208701(0x255)]=_0x464bf6,_0x436761[_0x208701(0x1ce)]=_0x355d48;}));function _0x5b18(_0x15c4bd,_0x422fa0){_0x15c4bd=_0x15c4bd-0x125;const _0x96416e=_0x9641();let _0x5b18c6=_0x96416e[_0x15c4bd];return _0x5b18c6;}function _0x9641(){const _0x46a4ac=['ChartAxisDimension','clearHistogramOverflowThreshold','\x20has\x20an\x20invalid\x20data-point\x20index.','clearRelationForce','clearValueUnit','clearParetoBarStyle','resetCandleWidth','FRelationChartBuilder','setInvalidValueStrategy','FAxisChartBuilder','clearXAxisTitle','clearConnector','Funnel','setIncludeZeroValues','setRightYAxisTitle','setTheme','FFunnelChartBuilder','setExplosion','clearAllSeriesStyle','clearLineStyle','resetValueScale','clearLegend','clearCellLabel','resetIncludeZeroValues','RelationChartLayoutEnum','setPieLabel','setSubtitle','8637272aBJQTx','setAxisPointer','setPaddingAngleEnabled','resetVisualMapType','setCategoryField','resetSeriesAxis','setDoughnutHole','clearMaskImage','setPointRoles','pointRoles.','ChartTypeString','setRadarShape','clearMarkLines','getPointRoles','setRelationNodeShape','setUseDateAxis','resetCombinationSeriesAxis','setWaterfallStyle','resetRosePie','resetShape','commit','resetUseDateAxis','clearAreaLineStyle','series','setCircularLabelRotation','clearDoughnutHole','TitlePositionEnum','WaterfallStackTypeEnum','18WoOZyY','setTreemapLabel','clearFallingStyle','ChartAllSeriesStyleTarget','setCumulativeLineStyle','setBubbleMapping','name','setRelationLayout','Treemap','SeriesLabelPosition','string','ChartAxisPointerTarget','Bar','ChartAggregationTarget','function','_compose','AreaLineStyle','describe','setShape','BarPercentStacked','setWaterfallStackType','resetRadarFill','resetFunnelGap','setBinWidth','setRisingStyle','setPalette','set','ColumnPercentStacked','setCellLabel','\x20has\x20an\x20invalid\x20series\x20index.','21340924okSLUy','clearWaterfallStyle','RadarShape','setFill','setYAxis','setYAxisTitle','WordCloud','setSeriesAxis','LegendPositionEnum','clearValueSuffix','clearCategoryField','FCandlestickChartBuilder','ChartSeriesClearTarget','clearRisingStyle','ChartWaterfallStyleTarget','builder','number','FBubbleChartBuilder','setHistogramBinGap','FChartsBase','setUseSubtotal','setUseAbsoluteValue','resetRepeat','setValueRange','forEach','Heatmap','clearSubtitle','Negative','resolveData','setGap','getChartBuilderPendingConfig','setConnector','@univerjs/core/facade','_setType','amd','clearSliceStyle','FParetoChartBuilder','clearDojiStyle','resetFill','ChartAxisTickPosition','setAggregation','dataPointIndex','setHistogramUnderflowThreshold','clearNegativeStyle','setLabelLineVisible','setUnderflowThreshold','clearRightYAxis','clearSeries','clearTheme','compose','setAppearance','get','prototype','setRosePie','symbol','clearYAxis','resetWordCloudShape','setCandlestickFields','9igHrzu','setCandleWidth','BarStacked','_cache','setRepeat','ChartBuilderFacadeContextAccess','resetRelationLayout','setValueFields','ChartSeriesAxis','setParentLabelLayout','ChartMarkLineLabelPosition','setHalfPie','clearPieLabel','resetCombinationSeriesType','clearHistogramField','clearHistogramUnderflowThreshold','setValueField','keys','setValueUnit','setForce','setHistogramBinWidth','resetEmphasisEnabled','Waterfall','setLayout','5027028kJZOUn','setSliceBorderColor','waterfall','setDojiStyle','setNodeShape','toPrimitive','resetGap','FHistogramChartBuilder','clearTrendlines','Line','resetSeriesType','setPositiveStyle','clearValueFields','FEnum','setBar','ChartAxisTarget','LabelAlignEnum','Chart\x20builder\x20is\x20not\x20registered:\x20','constructor','Sankey','clearAggregation','resetPaddingAngleEnabled','resetHalfPie','resetTreemapParentLabelLayout','clearCumulativeLineStyle','setHierarchyFields','setWaterfallPointRoles','setXAxisTitle','sort','iterator','clearPalette','setSubtotalStyle','Radar','setRadarFill','apply','setLineStyle','Scatter','setDecimalPlaces','wrap','591256TKxfOH','resetUseValueAsSymbolSize','@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.','clearSliceBorderColor','create','setValueSuffix','setVisualMapType','setOverflowThreshold','clearAxisTitle','setTitle','resetUseSubtotal','resetLabelLineVisible','resetWaterfallStackType','RightY','clearUnderflowThreshold','setHistogramBinCount','setScatterMapping','clearXAxis','exportImage','resetCircularLabelRotation','setBarStyle','5TDxLoJ','setSeries','clearValueRange','Area','isInteger','ChartSemanticAxis','UniverProEngineChartFacade','ChartVisualMapType','ChartWaterfallPointRole','Histogram','10bVBkWS','FBoxplotChartBuilder','setTreemapParentLabelLayout','resetUseAbsoluteValue','565778gXObAZ','setRightYAxis','Positive','FChartBuilderBase','FAreaChartBuilder','setAreaLineStyle','resetAutoGradientFill','Pareto','setType','getChartBuilderConstructor','_builder','clearScatterMapping','PieLabelPosition','setMaskImage','SelectModeEnum','setLegend','clearAppearance','setHistogramField','FWaterfallChartBuilder','ChartSeriesTypeString','clearOverflowThreshold','Candlestick','FCartesianChartBuilder','clearTitle','clearPositiveStyle','values','ChartWordCloudShapeSource','setEmphasisEnabled','extend','FWordCloudChartBuilder','ChartAppearanceTarget','setValueScale','clearBar','clearCandlestickFields','call','FCombinationChartBuilder','Pie','setSliceStyle','pointRoles','default','setCombinationSeriesType','FRadarChartBuilder','setXAxis','defineProperty','resetExplosion','clearRightYAxisTitle','resetBinning','setBinCount','FTreemapChartBuilder','FChartBase','setFallingStyle','clearYAxisTitle','130612KZEtZg','Subtotal','HostBuilderComposer','clearBubbleMapping','resetLayout','5667436woOvoH','setUseValueAsSymbolSize','setNegativeStyle','setAllSeriesStyle','FHeatmapChartBuilder','ChartAxisName','resetTreemapLabel','removeTrendline','resetHistogramBinGap','length','FScatterChartBuilder','setAxisTitle','FPieChartBuilder','adapter','AreaPercentStacked','isFinite','clearForce'];_0x9641=function(){return _0x46a4ac;};return _0x9641();}
|