@univerjs-pro/engine-chart 1.0.0-alpha.5 → 1.0.0-alpha.7

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.
Files changed (38) hide show
  1. package/lib/cjs/facade.js +1 -1
  2. package/lib/cjs/index.js +1 -1
  3. package/lib/es/facade.js +1 -1
  4. package/lib/es/index.js +1 -1
  5. package/lib/facade.js +1 -1
  6. package/lib/index.js +1 -1
  7. package/lib/types/chart-builder/chart-color.d.ts +49 -0
  8. package/lib/types/chart-builder/chart-types.d.ts +38 -11
  9. package/lib/types/chart-builder/configuration/assertions.d.ts +2 -0
  10. package/lib/types/chart-builder/configuration/auto-gradient-fill.d.ts +4 -0
  11. package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +1 -0
  12. package/lib/types/chart-builder/configuration/index.d.ts +1 -0
  13. package/lib/types/chart-builder/configuration/pie.d.ts +5 -1
  14. package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +1 -0
  15. package/lib/types/chart-builder/index.d.ts +2 -0
  16. package/lib/types/facade/builders/f-area-chart-builder.d.ts +2 -2
  17. package/lib/types/facade/builders/f-boxplot-chart-builder.d.ts +5 -0
  18. package/lib/types/facade/builders/f-bubble-chart-builder.d.ts +2 -2
  19. package/lib/types/facade/builders/f-line-chart-builder.d.ts +2 -2
  20. package/lib/types/facade/builders/f-pie-chart-builder.d.ts +42 -1
  21. package/lib/types/facade/builders/f-relation-chart-builder.d.ts +38 -0
  22. package/lib/types/facade/builders/f-scatter-chart-builder.d.ts +2 -2
  23. package/lib/types/facade/builders/index.d.ts +1 -0
  24. package/lib/types/facade/chart-builder-type-map.d.ts +2 -2
  25. package/lib/types/facade/f-cartesian-chart-builder.d.ts +14 -4
  26. package/lib/types/facade/f-chart-builder-base.d.ts +31 -0
  27. package/lib/types/index.d.ts +4 -4
  28. package/lib/types/models/chart-element-edit-overlay/chart-element-edit-overlay.d.ts +2 -1
  29. package/lib/types/models/chart-model.d.ts +156 -138
  30. package/lib/types/models/constants/default-chart-style.d.ts +2 -0
  31. package/lib/types/models/echart-to-chart-model-init.d.ts +2 -1
  32. package/lib/types/models/mode-converter/render-spec-operators/auto-gradient-presets.d.ts +5 -0
  33. package/lib/types/models/mode-converter/render-spec-operators/chart-color.d.ts +23 -0
  34. package/lib/types/models/mode-converter/render-spec-operators/rich-text-inheritance.operator.d.ts +2 -0
  35. package/lib/types/types.d.ts +15 -6
  36. package/lib/umd/facade.js +1 -1
  37. package/lib/umd/index.js +1 -1
  38. package/package.json +5 -5
@@ -129,6 +129,8 @@ export declare const defaultChartConfig: {
129
129
  };
130
130
  pareto: {
131
131
  symbolSize: number;
132
+ barThemeColorIndex: number;
133
+ lineThemeColorIndex: number;
132
134
  };
133
135
  heatmap: {
134
136
  visualMapType: string;
@@ -1,3 +1,4 @@
1
+ import type { EChartsOption } from '../utils/echarts';
1
2
  import type { IChartModelInitParams } from './mode-converter/mode-converter';
2
- export declare function echartToChartModelInit(echartOption: echarts.EChartsOption): IChartModelInitParams;
3
+ export declare function echartToChartModelInit(echartOption: EChartsOption): IChartModelInitParams;
3
4
  export declare function isChartModelInit(option: any): option is IChartModelInitParams;
@@ -0,0 +1,5 @@
1
+ import type { IChartLinearGradient } from '../../../chart-builder/chart-color';
2
+ export declare function createBarAutoGradient(color: string, isVerticalSeriesValue: boolean, isNegative?: boolean): IChartLinearGradient;
3
+ export declare function createAreaAutoGradient(color: string, isVerticalSeriesValue: boolean): IChartLinearGradient;
4
+ export declare function createLineAutoGradient(color: string, isVerticalSeriesValue: boolean): IChartLinearGradient;
5
+ export declare function createPieAutoGradient(color: string): IChartLinearGradient;
@@ -0,0 +1,23 @@
1
+ import type { ChartColor, IChartLinearGradient } from '../../../chart-builder/chart-color';
2
+ declare const ECHARTS_LINEAR_GRADIENT_TYPE = "linear";
3
+ export interface IEChartsLinearGradientColor {
4
+ type: typeof ECHARTS_LINEAR_GRADIENT_TYPE;
5
+ x: number;
6
+ y: number;
7
+ x2: number;
8
+ y2: number;
9
+ global: false;
10
+ colorStops: Array<{
11
+ offset: number;
12
+ color: string;
13
+ }>;
14
+ }
15
+ export type ChartRenderColor = string | IEChartsLinearGradientColor;
16
+ type RenderColorResolver = (color: string) => string;
17
+ type AutoGradientFactory = (color: string) => IChartLinearGradient;
18
+ export declare const keepRenderColor: RenderColorResolver;
19
+ export declare function getChartColorRepresentative(color: ChartColor): string;
20
+ export declare function toEChartsColor(color: ChartColor, getRenderColor: RenderColorResolver): ChartRenderColor;
21
+ export declare function resolveChartColor(color: ChartColor, autoGradientFill: boolean, createAutoGradient: AutoGradientFactory, getRenderColor: RenderColorResolver): ChartRenderColor;
22
+ export declare function resolveChartColorRepresentative(color: ChartColor, getRenderColor: RenderColorResolver): string;
23
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { EChartRenderSpecOperator } from '../../../types';
2
+ export declare const richTextInheritanceOperator: EChartRenderSpecOperator;
@@ -1,12 +1,13 @@
1
1
  import type { IDisposable, Nullable } from '@univerjs/core';
2
2
  import type { Observable } from 'rxjs';
3
+ import type { ChartColor, IChartLinearGradient } from './chart-builder/chart-color';
3
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
5
  import type { ICartesianPointData } from './models/chart-data-operators/cartesian-point-data';
5
6
  import type { IChartLocaleTexts } from './models/chart-locale-texts';
6
7
  import type { IEchartTheme } from './models/constants/build-in-theme';
7
- import type { BarSeriesOption } from './utils/echarts';
8
+ import type { BarSeriesOption, EChartsOption } from './utils/echarts';
8
9
  import type { IWordCloudRenderConfig } from './wordcloud-chart/word-cloud-render-config';
9
- export type DeepPartial<T> = T extends Record<string, any> ? T extends any[] ? T : {
10
+ export type DeepPartial<T> = T extends IChartLinearGradient ? T : T extends Record<string, any> ? T extends any[] ? T : {
10
11
  [key in keyof T]+?: DeepPartial<T[key]>;
11
12
  } : T;
12
13
  export type ChartDirection = 'ltr' | 'rtl';
@@ -226,7 +227,8 @@ export interface IPointStyle {
226
227
  size: number;
227
228
  color: Nullable<string>;
228
229
  }
229
- export interface IDataPointStyle extends IPointStyle {
230
+ export interface IDataPointStyle extends Omit<IPointStyle, 'color'> {
231
+ color: Nullable<ChartColor>;
230
232
  /** Fill opacity for this data point, from 0 (transparent) to 1 (opaque). */
231
233
  fillOpacity?: number;
232
234
  }
@@ -234,7 +236,7 @@ export interface ISeriesStyle {
234
236
  chartType?: ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area;
235
237
  /** Compatibility switch for placing this series on the secondary vertical axis. It does not change the yAxis/rightYAxis option bucket semantics. */
236
238
  rightYAxis?: boolean;
237
- color: Nullable<string>;
239
+ color: Nullable<ChartColor>;
238
240
  /** Fill opacity for this series, from 0 (transparent) to 1 (opaque). */
239
241
  fillOpacity: number;
240
242
  border: {
@@ -378,6 +380,13 @@ export interface IChartStyle {
378
380
  valueScale: number;
379
381
  valueSuffix: string;
380
382
  digitalFixed: number;
383
+ /** Persisted sparse slice overrides. Slice data remains owned by the chart data source. */
384
+ sliceStyles: {
385
+ [index: number]: {
386
+ color: Nullable<ChartColor>;
387
+ fillOpacity?: number;
388
+ };
389
+ };
381
390
  };
382
391
  area: {
383
392
  lineStyle: AreaLineStyle;
@@ -454,7 +463,7 @@ export interface IChartSnapshot {
454
463
  }
455
464
  export interface IWaterfallLegendData {
456
465
  name: string;
457
- color: string;
466
+ color: ChartColor;
458
467
  }
459
468
  export interface IChartRenderSpecConverter<ChartRenderSpec = Record<string, any>> {
460
469
  canConvert: (config: IChartConfig) => boolean;
@@ -653,7 +662,7 @@ export interface IChartInstanceConstructor<Spec> {
653
662
  }
654
663
  export type OptionalDataValue = number | string | null | undefined;
655
664
  export type ExtractArrayItem<T> = T extends Array<infer U> ? U : never;
656
- export type EChartSpec = echarts.EChartsOption;
665
+ export type EChartSpec = EChartsOption;
657
666
  export type EChartSeriesItem = ExtractArrayItem<EChartSpec['series']> & {
658
667
  rawData?: number[];
659
668
  seriesId: string;
package/lib/umd/facade.js CHANGED
@@ -1 +1 @@
1
- (function(_0x289695,_0x114bae){const _0x24a4af=_0x1f4f,_0x264ab0=_0x289695();while(!![]){try{const _0x4cf265=-parseInt(_0x24a4af(0xfa))/0x1*(-parseInt(_0x24a4af(0x184))/0x2)+-parseInt(_0x24a4af(0x13c))/0x3+-parseInt(_0x24a4af(0x153))/0x4+-parseInt(_0x24a4af(0x1c6))/0x5*(parseInt(_0x24a4af(0x186))/0x6)+-parseInt(_0x24a4af(0x10b))/0x7+-parseInt(_0x24a4af(0x144))/0x8+parseInt(_0x24a4af(0x1d0))/0x9;if(_0x4cf265===_0x114bae)break;else _0x264ab0['push'](_0x264ab0['shift']());}catch(_0x2e7dbe){_0x264ab0['push'](_0x264ab0['shift']());}}}(_0x42f8,0x8b7c4),function(_0xe89fba,_0x21434b){const _0x42a5eb=_0x1f4f;typeof exports=='object'&&typeof module<'u'?_0x21434b(exports,require('@univerjs-pro/engine-chart'),require('@univerjs/core/facade')):typeof define=='function'&&define[_0x42a5eb(0x1d3)]?define(['exports','@univerjs-pro/engine-chart','@univerjs/core/facade'],_0x21434b):(_0xe89fba=typeof globalThis<'u'?globalThis:_0xe89fba||self,_0x21434b(_0xe89fba[_0x42a5eb(0x15b)]={},_0xe89fba[_0x42a5eb(0x14b)],_0xe89fba[_0x42a5eb(0x1ca)]));}(this,function(_0x1c9103,_0x5d38f1,_0x6cb64c){const _0x2598e5=_0x1f4f;Object[_0x2598e5(0x18f)](_0x1c9103,Symbol[_0x2598e5(0x1b3)],{'value':_0x2598e5(0x16f)});let _0x44086e=new Map();function _0x4573cf(_0x8d116d,_0x393bf4){const _0x349c52=_0x2598e5;_0x44086e[_0x349c52(0x124)](_0x8d116d,_0x393bf4);}function _0x3aae5d(_0x7fb259){const _0x18f4fa=_0x2598e5;let _0xa3f734=_0x44086e['get'](_0x7fb259);if(!_0xa3f734)throw Error(_0x18f4fa(0x191)+String(_0x7fb259));return _0xa3f734;}let _0x32a418=Symbol('ChartBuilderFacadeContextAccess');function _0x14b726(_0xf39513){const _0x56c943=_0x2598e5;return _0xf39513[_0x32a418]['builder'][_0x56c943(0x115)]();}function _0x1b400a(_0x4d3a6d){'@babel/helpers - typeof';const _0x274197=_0x2598e5;return _0x1b400a=typeof Symbol==_0x274197(0x168)&&typeof Symbol['iterator']==_0x274197(0x1a8)?function(_0x30ad47){return typeof _0x30ad47;}:function(_0x456fa7){const _0x5b5b44=_0x274197;return _0x456fa7&&typeof Symbol==_0x5b5b44(0x168)&&_0x456fa7[_0x5b5b44(0x1a4)]===Symbol&&_0x456fa7!==Symbol['prototype']?_0x5b5b44(0x1a8):typeof _0x456fa7;},_0x1b400a(_0x4d3a6d);}function _0x2cf576(_0x18dc1e,_0x591926){const _0x329913=_0x2598e5;if(_0x1b400a(_0x18dc1e)!=_0x329913(0x109)||!_0x18dc1e)return _0x18dc1e;var _0x3bbb69=_0x18dc1e[Symbol['toPrimitive']];if(_0x3bbb69!==void 0x0){var _0x4801ef=_0x3bbb69['call'](_0x18dc1e,_0x591926||_0x329913(0x159));if(_0x1b400a(_0x4801ef)!=_0x329913(0x109))return _0x4801ef;throw TypeError(_0x329913(0x1f0));}return(_0x591926===_0x329913(0x131)?String:Number)(_0x18dc1e);}function _0x52b579(_0x175918){const _0x5cfdb2=_0x2598e5;var _0x1c796b=_0x2cf576(_0x175918,_0x5cfdb2(0x131));return _0x1b400a(_0x1c796b)==_0x5cfdb2(0x1a8)?_0x1c796b:_0x1c796b+'';}function _0x2b25c2(_0x4a823f,_0x1a7ef7,_0x4051f0){const _0x119b18=_0x2598e5;return(_0x1a7ef7=_0x52b579(_0x1a7ef7))in _0x4a823f?Object[_0x119b18(0x18f)](_0x4a823f,_0x1a7ef7,{'value':_0x4051f0,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x4a823f[_0x1a7ef7]=_0x4051f0,_0x4a823f;}var _0x3c17a5=class{constructor(_0x3579b0){const _0x4977b0=_0x2598e5;this[_0x4977b0(0x139)]=_0x3579b0,_0x2b25c2(this,_0x4977b0(0x136),void 0x0),this['_builder']=_0x3579b0[_0x4977b0(0x1c5)];}get[_0x32a418](){const _0x5b1d8a=_0x2598e5;return this[_0x5b1d8a(0x139)];}[_0x2598e5(0x119)](){return this['_builder']['id'];}[_0x2598e5(0x1d2)](){const _0x2e3eba=_0x2598e5;return this[_0x2e3eba(0x136)][_0x2e3eba(0x1d2)]();}['resolveData'](){const _0x357ceb=_0x2598e5;return this[_0x357ceb(0x136)][_0x357ceb(0x1d5)]();}[_0x2598e5(0x1d1)](){const _0x4eb231=_0x2598e5;return this[_0x4eb231(0x136)][_0x4eb231(0x1d1)](),this;}[_0x2598e5(0x12f)](_0x218199){const _0x1e0004=_0x2598e5;return this[_0x1e0004(0x136)][_0x1e0004(0x126)][_0x1e0004(0x12f)](_0x218199);}},_0x26d707=class extends _0x3c17a5{['_record'](_0x5c3ba1){return this['_builder']['mergePending'](_0x5c3ba1),this;}[_0x2598e5(0x1c8)](_0x13ad4b){const _0x1c54f6=_0x2598e5;return this[_0x1c54f6(0x136)]['apply']((0x0,_0x5d38f1['setTitle'])(_0x13ad4b)),this;}[_0x2598e5(0x16b)](){const _0x55c6f2=_0x2598e5;return this[_0x55c6f2(0x136)][_0x55c6f2(0x1df)]((0x0,_0x5d38f1[_0x55c6f2(0x16b)])()),this;}[_0x2598e5(0x175)](_0x227b71){const _0x7635c7=_0x2598e5;return this[_0x7635c7(0x136)][_0x7635c7(0x1df)]((0x0,_0x5d38f1['setSubtitle'])(_0x227b71)),this;}[_0x2598e5(0x1e2)](){const _0x296958=_0x2598e5;return this[_0x296958(0x136)][_0x296958(0x1df)]((0x0,_0x5d38f1[_0x296958(0x1e2)])()),this;}['setLegend'](_0x39fcf2){const _0x4dda49=_0x2598e5;return this['_builder'][_0x4dda49(0x1df)]((0x0,_0x5d38f1[_0x4dda49(0x11c)])(_0x39fcf2)),this;}[_0x2598e5(0x11e)](){const _0x2f29cd=_0x2598e5;return this[_0x2f29cd(0x136)]['apply']((0x0,_0x5d38f1[_0x2f29cd(0x11e)])()),this;}['setTheme'](_0x905475){const _0x2792ac=_0x2598e5;return this[_0x2792ac(0x136)][_0x2792ac(0x1df)]((0x0,_0x5d38f1['setTheme'])(_0x905475)),this;}[_0x2598e5(0x1e1)](){const _0x2bbc07=_0x2598e5;return this[_0x2bbc07(0x136)][_0x2bbc07(0x1df)]((0x0,_0x5d38f1[_0x2bbc07(0x1e1)])()),this;}[_0x2598e5(0xf7)](_0x23d947){const _0x1f687b=_0x2598e5;return this[_0x1f687b(0x136)][_0x1f687b(0x1df)]((0x0,_0x5d38f1[_0x1f687b(0xf7)])(_0x23d947)),this;}[_0x2598e5(0x12e)](){const _0x137413=_0x2598e5;return this[_0x137413(0x136)][_0x137413(0x1df)]((0x0,_0x5d38f1[_0x137413(0x12e)])()),this;}[_0x2598e5(0x1ee)](_0x545618){const _0x25d478=_0x2598e5;return this[_0x25d478(0x136)]['apply']((0x0,_0x5d38f1[_0x25d478(0x1ee)])(_0x545618)),this;}[_0x2598e5(0x1bf)](_0x1497e2){const _0x557da0=_0x2598e5;return this[_0x557da0(0x136)][_0x557da0(0x1df)]((0x0,_0x5d38f1[_0x557da0(0x1bf)])(_0x1497e2)),this;}[_0x2598e5(0xfd)](_0xffa343){const _0x2f5ff9=_0x2598e5;return this[_0x2f5ff9(0x136)]['apply']((0x0,_0x5d38f1['setInvalidValueStrategy'])(_0xffa343)),this;}['resetInvalidValueStrategy'](){const _0x2b996d=_0x2598e5;return this[_0x2b996d(0x136)][_0x2b996d(0x1df)]((0x0,_0x5d38f1[_0x2b996d(0x174)])()),this;}[_0x2598e5(0x18c)](_0x438d55){const _0x166ee5=_0x2598e5;return this[_0x166ee5(0x136)][_0x166ee5(0x1df)]((0x0,_0x5d38f1[_0x166ee5(0x18c)])(_0x438d55)),this;}[_0x2598e5(0x1a6)](){const _0xcf2483=_0x2598e5;return this[_0xcf2483(0x136)][_0xcf2483(0x1df)]((0x0,_0x5d38f1['clearCategoryField'])()),this;}[_0x2598e5(0x1e6)](_0x1e5a8c){const _0x54c5f8=_0x2598e5;return this[_0x54c5f8(0x136)][_0x54c5f8(0x1df)]((0x0,_0x5d38f1[_0x54c5f8(0x1e6)])(_0x1e5a8c)),this;}[_0x2598e5(0x142)](){const _0x3bfe08=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x3bfe08(0x142)])()),this;}['setAggregation'](_0x5916f8){const _0x15d943=_0x2598e5;return this[_0x15d943(0x136)][_0x15d943(0x1df)]((0x0,_0x5d38f1[_0x15d943(0x199)])(_0x5916f8)),this;}[_0x2598e5(0x152)](_0xc20714){const _0x123eab=_0x2598e5;return this[_0x123eab(0x136)]['apply']((0x0,_0x5d38f1['clearAggregation'])(_0xc20714)),this;}['setType'](_0x1a939e){this['_setType'](_0x1a939e);let _0x2ad004=_0x3aae5d(_0x1a939e);return this['_context']['wrap'](_0x2ad004);}['_setType'](_0x48e15e){const _0x12f55c=_0x2598e5;this[_0x12f55c(0x136)][_0x12f55c(0x1a1)](_0x48e15e);}},_0x3c4cf0=class extends _0x26d707{[_0x2598e5(0x11f)](_0x55d958){const _0xe1e25=_0x2598e5;return this[_0xe1e25(0x136)][_0xe1e25(0x1df)]((0x0,_0x5d38f1[_0xe1e25(0x11f)])(_0x55d958)),this;}['clearMarkLines'](){const _0x4e2b23=_0x2598e5;return this[_0x4e2b23(0x136)][_0x4e2b23(0x1df)]((0x0,_0x5d38f1['clearMarkLines'])()),this;}[_0x2598e5(0x1b4)](_0x3715d6){const _0xcdb6dc=_0x2598e5;return this[_0xcdb6dc(0x136)][_0xcdb6dc(0x1df)]((0x0,_0x5d38f1[_0xcdb6dc(0x1b4)])(_0x3715d6)),this;}[_0x2598e5(0x1c4)](_0x483f68){const _0x12ca47=_0x2598e5;return this[_0x12ca47(0x136)][_0x12ca47(0x1df)]((0x0,_0x5d38f1[_0x12ca47(0x1c4)])(_0x483f68)),this;}[_0x2598e5(0x11d)](_0x12f93c){const _0x2811ff=_0x2598e5;return this[_0x2811ff(0x136)][_0x2811ff(0x1df)]((0x0,_0x5d38f1['setYAxis'])(_0x12f93c)),this;}['clearYAxis'](_0x2f9c6e){const _0x4ad28e=_0x2598e5;return this['_builder'][_0x4ad28e(0x1df)]((0x0,_0x5d38f1[_0x4ad28e(0x189)])(_0x2f9c6e)),this;}[_0x2598e5(0x111)](_0x3132e2){const _0x4d8527=_0x2598e5;return this['_builder'][_0x4d8527(0x1df)]((0x0,_0x5d38f1[_0x4d8527(0x111)])(_0x3132e2)),this;}[_0x2598e5(0x107)](_0x583aed){const _0x27b83b=_0x2598e5;return this[_0x27b83b(0x136)][_0x27b83b(0x1df)]((0x0,_0x5d38f1[_0x27b83b(0x107)])(_0x583aed)),this;}['setXAxisTitle'](_0x4bdecf){const _0x136e33=_0x2598e5;return this['_builder'][_0x136e33(0x1df)]((0x0,_0x5d38f1[_0x136e33(0x13a)])(_0x5d38f1['ChartAxisName']['X'],_0x4bdecf)),this;}[_0x2598e5(0x15a)](){const _0x787208=_0x2598e5;return this[_0x787208(0x136)]['apply']((0x0,_0x5d38f1[_0x787208(0x1b6)])(_0x5d38f1[_0x787208(0x172)]['X'])),this;}[_0x2598e5(0x138)](_0x2d211f){const _0x1182f1=_0x2598e5;return this[_0x1182f1(0x136)]['apply']((0x0,_0x5d38f1[_0x1182f1(0x13a)])(_0x5d38f1[_0x1182f1(0x172)]['Y'],_0x2d211f)),this;}['clearYAxisTitle'](){const _0x1cea49=_0x2598e5;return this[_0x1cea49(0x136)][_0x1cea49(0x1df)]((0x0,_0x5d38f1['clearAxisTitle'])(_0x5d38f1[_0x1cea49(0x172)]['Y'])),this;}[_0x2598e5(0x178)](_0x113357){const _0x13ebde=_0x2598e5;return this[_0x13ebde(0x136)][_0x13ebde(0x1df)]((0x0,_0x5d38f1['setAxisTitle'])(_0x5d38f1[_0x13ebde(0x172)]['RightY'],_0x113357)),this;}[_0x2598e5(0x1db)](){const _0x1aed52=_0x2598e5;return this[_0x1aed52(0x136)][_0x1aed52(0x1df)]((0x0,_0x5d38f1[_0x1aed52(0x1b6)])(_0x5d38f1['ChartAxisName'][_0x1aed52(0xf6)])),this;}['setUseDateAxis'](_0x31691f){const _0x54b784=_0x2598e5;return this[_0x54b784(0x136)][_0x54b784(0x1df)]((0x0,_0x5d38f1[_0x54b784(0x198)])(_0x31691f)),this;}[_0x2598e5(0x157)](){const _0x276d7f=_0x2598e5;return this[_0x276d7f(0x136)][_0x276d7f(0x1df)]((0x0,_0x5d38f1[_0x276d7f(0x157)])()),this;}},_0x30fa07=class extends _0x3c4cf0{[_0x2598e5(0x19b)](_0x53d76d){const _0x5dab11=_0x2598e5;return this[_0x5dab11(0x136)][_0x5dab11(0x1df)]((0x0,_0x5d38f1[_0x5dab11(0x19b)])(_0x53d76d)),this;}['clearBar'](){const _0x18e52f=_0x2598e5;return this['_builder'][_0x18e52f(0x1df)]((0x0,_0x5d38f1[_0x18e52f(0x1e7)])()),this;}[_0x2598e5(0x103)](_0x54d5e0,_0x3425a3){const _0x47a633=_0x2598e5;return this[_0x47a633(0x136)][_0x47a633(0x1df)]((0x0,_0x5d38f1[_0x47a633(0x103)])(_0x54d5e0,_0x3425a3)),this;}[_0x2598e5(0xf5)](_0x281e4d,_0xaad41c){const _0x401669=_0x2598e5;return this[_0x401669(0x136)][_0x401669(0x1df)]((0x0,_0x5d38f1[_0x401669(0xf5)])(_0x281e4d,_0xaad41c)),this;}[_0x2598e5(0x167)](_0x598744){const _0x4195dc=_0x2598e5;return this['_builder'][_0x4195dc(0x1df)]((0x0,_0x5d38f1[_0x4195dc(0x167)])(_0x598744)),this;}[_0x2598e5(0x12d)](_0x507a36){const _0x451953=_0x2598e5;return this[_0x451953(0x136)][_0x451953(0x1df)]((0x0,_0x5d38f1[_0x451953(0x12d)])(_0x507a36)),this;}[_0x2598e5(0x164)](_0x27b74e,_0x40ceb5){const _0x2d754a=_0x2598e5;return this[_0x2d754a(0x136)][_0x2d754a(0x1df)]((0x0,_0x5d38f1[_0x2d754a(0x164)])(_0x27b74e,_0x40ceb5)),this;}[_0x2598e5(0x1ad)](_0x6b9672,_0x458614){const _0x5e3f06=_0x2598e5;return this['_builder'][_0x5e3f06(0x1df)]((0x0,_0x5d38f1['removeTrendline'])(this[_0x5e3f06(0x136)][_0x5e3f06(0x1d2)](),_0x6b9672,_0x458614)),this;}[_0x2598e5(0xf8)](_0x841189){const _0x1a74b5=_0x2598e5;return this[_0x1a74b5(0x136)]['apply']((0x0,_0x5d38f1[_0x1a74b5(0xf8)])(this[_0x1a74b5(0x136)]['describe'](),_0x841189)),this;}[_0x2598e5(0x1f4)](_0x318e42){const _0x5e33a6=_0x2598e5;return this[_0x5e33a6(0x136)][_0x5e33a6(0x1df)]((0x0,_0x5d38f1['setAxisPointer'])(_0x318e42)),this;}[_0x2598e5(0x1f2)](_0x1d4809){const _0x333d89=_0x2598e5;return this[_0x333d89(0x136)][_0x333d89(0x1df)]((0x0,_0x5d38f1[_0x333d89(0x1f2)])(_0x1d4809)),this;}},_0x5efbe8=class extends _0x30fa07{[_0x2598e5(0x19f)](_0x51d5ec){const _0x50ed52=_0x2598e5;return this[_0x50ed52(0x136)][_0x50ed52(0x1df)]((0x0,_0x5d38f1['setAreaLineStyle'])(_0x51d5ec)),this;}[_0x2598e5(0x135)](){const _0xf42169=_0x2598e5;return this[_0xf42169(0x136)]['apply']((0x0,_0x5d38f1['clearAreaLineStyle'])()),this;}},_0x15f369=class extends _0x30fa07{['setBubbleMapping'](_0x5857aa){const _0x363772=_0x2598e5;return this[_0x363772(0x136)][_0x363772(0x1df)]((0x0,_0x5d38f1['setBubbleMapping'])(_0x5857aa)),this;}['clearBubbleMapping'](){const _0x386a73=_0x2598e5;return this[_0x386a73(0x136)]['apply']((0x0,_0x5d38f1['clearBubbleMapping'])()),this;}},_0x7979f2=class extends _0x30fa07{['setSeriesType'](_0x5a6406,_0x50ca17){const _0x57df67=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x57df67(0x122)])(_0x5a6406,_0x50ca17)),this;}[_0x2598e5(0x180)](_0x40842e){const _0x182223=_0x2598e5;return this[_0x182223(0x136)][_0x182223(0x1df)]((0x0,_0x5d38f1[_0x182223(0xfb)])(_0x40842e)),this;}[_0x2598e5(0x127)](_0x19814c,_0x4e9fa6){const _0x10168c=_0x2598e5;return this[_0x10168c(0x136)]['apply']((0x0,_0x5d38f1[_0x10168c(0xff)])(_0x19814c,_0x4e9fa6)),this;}[_0x2598e5(0x112)](_0x164307){const _0x580b12=_0x2598e5;return this[_0x580b12(0x136)][_0x580b12(0x1df)]((0x0,_0x5d38f1['resetCombinationSeriesAxis'])(_0x164307)),this;}},_0x2fa28b=class extends _0x26d707{[_0x2598e5(0x10c)](_0x49aba2){const _0xcc6d12=_0x2598e5;return this[_0xcc6d12(0x136)]['apply']((0x0,_0x5d38f1[_0xcc6d12(0x1a7)])(_0x49aba2)),this;}[_0x2598e5(0x11b)](){const _0x753725=_0x2598e5;return this['_builder'][_0x753725(0x1df)]((0x0,_0x5d38f1['resetFunnelGap'])()),this;}['setUseAbsoluteValue'](_0x5ba659){const _0x331252=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x331252(0x1e3)])(_0x5ba659)),this;}[_0x2598e5(0x129)](){const _0x479eaf=_0x2598e5;return this['_builder'][_0x479eaf(0x1df)]((0x0,_0x5d38f1[_0x479eaf(0x129)])()),this;}},_0x3b865c=class extends _0x3c4cf0{[_0x2598e5(0x12b)](_0x5a72be){const _0xbafd9d=_0x2598e5;return this[_0xbafd9d(0x136)][_0xbafd9d(0x1df)]((0x0,_0x5d38f1['setVisualMapType'])(_0x5a72be)),this;}['resetVisualMapType'](){const _0x3f0390=_0x2598e5;return this[_0x3f0390(0x136)][_0x3f0390(0x1df)]((0x0,_0x5d38f1[_0x3f0390(0x1c1)])()),this;}[_0x2598e5(0x1af)](_0x55e52b,_0x5c30ac){return this['_builder']['apply']((0x0,_0x5d38f1['setValueRange'])(_0x55e52b,_0x5c30ac)),this;}['clearValueRange'](){const _0x370ccf=_0x2598e5;return this['_builder'][_0x370ccf(0x1df)]((0x0,_0x5d38f1['clearValueRange'])()),this;}[_0x2598e5(0x145)](_0x344293){const _0xae488d=_0x2598e5;return this['_builder'][_0xae488d(0x1df)]((0x0,_0x5d38f1[_0xae488d(0x145)])(_0x344293)),this;}[_0x2598e5(0x1a2)](){const _0x3318d1=_0x2598e5;return this['_builder'][_0x3318d1(0x1df)]((0x0,_0x5d38f1[_0x3318d1(0x1a2)])()),this;}[_0x2598e5(0x106)](_0x23a4f3){const _0x2cd077=_0x2598e5;return this['_builder'][_0x2cd077(0x1df)]((0x0,_0x5d38f1[_0x2cd077(0x106)])(_0x23a4f3)),this;}[_0x2598e5(0x1da)](){const _0x4faba5=_0x2598e5;return this[_0x4faba5(0x136)][_0x4faba5(0x1df)]((0x0,_0x5d38f1[_0x4faba5(0x1da)])()),this;}},_0x1c9ab6=class extends _0x30fa07{[_0x2598e5(0x143)](_0x2a548a){const _0x132b6a=_0x2598e5;return this[_0x132b6a(0x136)][_0x132b6a(0x1df)]((0x0,_0x5d38f1['setLineStyle'])(_0x2a548a)),this;}[_0x2598e5(0x1dc)](){const _0x233c46=_0x2598e5;return this[_0x233c46(0x136)][_0x233c46(0x1df)]((0x0,_0x5d38f1[_0x233c46(0x1dc)])()),this;}},_0x6fc981=class extends _0x30fa07{[_0x2598e5(0x162)](_0x3df624){const _0x26f4e3=_0x2598e5;return this['_builder'][_0x26f4e3(0x1df)]((0x0,_0x5d38f1[_0x26f4e3(0x154)])(_0x3df624)),this;}[_0x2598e5(0x1a5)](){const _0x2b84d2=_0x2598e5;return this[_0x2b84d2(0x136)]['apply']((0x0,_0x5d38f1[_0x2b84d2(0x1cc)])()),this;}['setCumulativeLineStyle'](_0x267e7b){const _0x4a4dd0=_0x2598e5;return this[_0x4a4dd0(0x136)]['apply']((0x0,_0x5d38f1['setCumulativeLineStyle'])(_0x267e7b)),this;}[_0x2598e5(0x1d6)](){const _0x5230b0=_0x2598e5;return this[_0x5230b0(0x136)][_0x5230b0(0x1df)]((0x0,_0x5d38f1[_0x5230b0(0x1d6)])()),this;}[_0x2598e5(0x16a)](_0xc0fc1e){const _0x3a8bbc=_0x2598e5;return this[_0x3a8bbc(0x136)]['apply']((0x0,_0x5d38f1[_0x3a8bbc(0x16a)])(_0xc0fc1e)),this;}[_0x2598e5(0x17d)](){const _0x1c1974=_0x2598e5;return this['_builder'][_0x1c1974(0x1df)]((0x0,_0x5d38f1[_0x1c1974(0x17d)])()),this;}},_0x910126=class extends _0x26d707{[_0x2598e5(0x10d)](_0x3110fd){const _0x1a6939=_0x2598e5;return this[_0x1a6939(0x136)]['apply']((0x0,_0x5d38f1[_0x1a6939(0x10d)])(_0x3110fd)),this;}['clearDoughnutHole'](){const _0x2c2141=_0x2598e5;return this['_builder'][_0x2c2141(0x1df)]((0x0,_0x5d38f1[_0x2c2141(0x16d)])()),this;}['setExplosion'](_0x24c2de){const _0x592d8f=_0x2598e5;return this[_0x592d8f(0x136)][_0x592d8f(0x1df)]((0x0,_0x5d38f1[_0x592d8f(0x19e)])(_0x24c2de)),this;}[_0x2598e5(0x18a)](){const _0x5430b0=_0x2598e5;return this[_0x5430b0(0x136)][_0x5430b0(0x1df)]((0x0,_0x5d38f1[_0x5430b0(0x18a)])()),this;}[_0x2598e5(0x13f)](_0x29fb4f){const _0x4e2dc8=_0x2598e5;return this[_0x4e2dc8(0x136)][_0x4e2dc8(0x1df)]((0x0,_0x5d38f1['setSliceBorderColor'])(_0x29fb4f)),this;}['clearSliceBorderColor'](){const _0x229a5b=_0x2598e5;return this[_0x229a5b(0x136)][_0x229a5b(0x1df)]((0x0,_0x5d38f1[_0x229a5b(0x108)])()),this;}[_0x2598e5(0x17f)](_0x4bbaab){const _0x264931=_0x2598e5;return this[_0x264931(0x136)][_0x264931(0x1df)]((0x0,_0x5d38f1[_0x264931(0x17f)])(_0x4bbaab)),this;}[_0x2598e5(0x176)](){const _0x1d0122=_0x2598e5;return this[_0x1d0122(0x136)]['apply']((0x0,_0x5d38f1['resetPaddingAngleEnabled'])()),this;}['setHalfPie'](_0x1cfc4b){const _0x1ddf9d=_0x2598e5;return this[_0x1ddf9d(0x136)]['apply']((0x0,_0x5d38f1[_0x1ddf9d(0x171)])(_0x1cfc4b)),this;}[_0x2598e5(0x1b8)](){const _0x63feaf=_0x2598e5;return this['_builder'][_0x63feaf(0x1df)]((0x0,_0x5d38f1[_0x63feaf(0x1b8)])()),this;}[_0x2598e5(0x1cd)](_0x14c705){const _0xb6593c=_0x2598e5;return this[_0xb6593c(0x136)][_0xb6593c(0x1df)]((0x0,_0x5d38f1[_0xb6593c(0x1cd)])(_0x14c705)),this;}['resetRosePie'](){const _0x4d1d62=_0x2598e5;return this[_0x4d1d62(0x136)][_0x4d1d62(0x1df)]((0x0,_0x5d38f1['resetRosePie'])()),this;}['setLabelLineVisible'](_0x59bcdd){const _0x2d62a3=_0x2598e5;return this[_0x2d62a3(0x136)][_0x2d62a3(0x1df)]((0x0,_0x5d38f1[_0x2d62a3(0x1bd)])(_0x59bcdd)),this;}[_0x2598e5(0x1ae)](){const _0x412689=_0x2598e5;return this[_0x412689(0x136)][_0x412689(0x1df)]((0x0,_0x5d38f1[_0x412689(0x1ae)])()),this;}[_0x2598e5(0xfc)](_0x1cd297){const _0x3017f0=_0x2598e5;return this[_0x3017f0(0x136)][_0x3017f0(0x1df)]((0x0,_0x5d38f1[_0x3017f0(0xfc)])(_0x1cd297)),this;}[_0x2598e5(0x140)](){const _0x55d813=_0x2598e5;return this['_builder'][_0x55d813(0x1df)]((0x0,_0x5d38f1['resetValueScale'])()),this;}[_0x2598e5(0x1de)](_0x13b45b){const _0x2d4114=_0x2598e5;return this[_0x2d4114(0x136)][_0x2d4114(0x1df)]((0x0,_0x5d38f1[_0x2d4114(0x1de)])(_0x13b45b)),this;}['clearValueSuffix'](){const _0x552418=_0x2598e5;return this['_builder'][_0x552418(0x1df)]((0x0,_0x5d38f1[_0x552418(0x128)])()),this;}[_0x2598e5(0x1bb)](_0x2824da){const _0xefda66=_0x2598e5;return this[_0xefda66(0x136)][_0xefda66(0x1df)]((0x0,_0x5d38f1['setDecimalPlaces'])(_0x2824da)),this;}[_0x2598e5(0x1d9)](){const _0x3dd9c2=_0x2598e5;return this[_0x3dd9c2(0x136)][_0x3dd9c2(0x1df)]((0x0,_0x5d38f1['resetDecimalPlaces'])()),this;}[_0x2598e5(0x1f8)](_0x3b58d5){const _0x249c6c=_0x2598e5;return this[_0x249c6c(0x136)][_0x249c6c(0x1df)]((0x0,_0x5d38f1[_0x249c6c(0x1f8)])(_0x3b58d5)),this;}['clearPieLabel'](){return this['_builder']['apply']((0x0,_0x5d38f1['clearPieLabel'])()),this;}},_0x11e327=class extends _0x26d707{[_0x2598e5(0x1c0)](_0x1ef637){const _0x5e39ad=_0x2598e5;return this[_0x5e39ad(0x136)]['apply']((0x0,_0x5d38f1[_0x5e39ad(0x123)])(_0x1ef637)),this;}['resetShape'](){const _0xd4ae2b=_0x2598e5;return this[_0xd4ae2b(0x136)]['apply']((0x0,_0x5d38f1[_0xd4ae2b(0x1a0)])()),this;}[_0x2598e5(0x182)](_0x4aa959){const _0xd9af6c=_0x2598e5;return this[_0xd9af6c(0x136)]['apply']((0x0,_0x5d38f1['setRadarFill'])(_0x4aa959)),this;}['resetFill'](){const _0x3d2e3d=_0x2598e5;return this[_0x3d2e3d(0x136)]['apply']((0x0,_0x5d38f1[_0x3d2e3d(0x19a)])()),this;}},_0x2bb4a3=class extends _0x26d707{[_0x2598e5(0x147)](_0x20f468){const _0x368809=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x368809(0x13d)])(_0x20f468)),this;}[_0x2598e5(0x1a3)](){const _0x547722=_0x2598e5;return this[_0x547722(0x136)][_0x547722(0x1df)]((0x0,_0x5d38f1['resetRelationLayout'])()),this;}[_0x2598e5(0x1dd)](_0x59ab6d){const _0x1643b3=_0x2598e5;return this['_builder'][_0x1643b3(0x1df)]((0x0,_0x5d38f1[_0x1643b3(0x1dd)])(_0x59ab6d)),this;}[_0x2598e5(0x1ec)](){const _0x30720c=_0x2598e5;return this[_0x30720c(0x136)][_0x30720c(0x1df)]((0x0,_0x5d38f1['resetUseValueAsSymbolSize'])()),this;}[_0x2598e5(0x158)](_0x5a3e04){const _0x14cc6e=_0x2598e5;return this[_0x14cc6e(0x136)][_0x14cc6e(0x1df)]((0x0,_0x5d38f1[_0x14cc6e(0x158)])(_0x5a3e04)),this;}[_0x2598e5(0x196)](){const _0x532dbd=_0x2598e5;return this[_0x532dbd(0x136)]['apply']((0x0,_0x5d38f1[_0x532dbd(0x196)])()),this;}[_0x2598e5(0x190)](_0x11379f){const _0x515fa1=_0x2598e5;return this[_0x515fa1(0x136)][_0x515fa1(0x1df)]((0x0,_0x5d38f1[_0x515fa1(0x133)])(_0x11379f)),this;}[_0x2598e5(0x1cf)](){const _0x5050c2=_0x2598e5;return this[_0x5050c2(0x136)][_0x5050c2(0x1df)]((0x0,_0x5d38f1[_0x5050c2(0x156)])()),this;}[_0x2598e5(0x148)](_0x4f84d6){const _0x286a4c=_0x2598e5;return this[_0x286a4c(0x136)][_0x286a4c(0x1df)]((0x0,_0x5d38f1[_0x286a4c(0x148)])(_0x4f84d6)),this;}[_0x2598e5(0x155)](){const _0x16d2cd=_0x2598e5;return this[_0x16d2cd(0x136)]['apply']((0x0,_0x5d38f1[_0x16d2cd(0x155)])()),this;}[_0x2598e5(0x12c)](_0x3fe8be){const _0x264293=_0x2598e5;return this[_0x264293(0x136)]['apply']((0x0,_0x5d38f1[_0x264293(0x116)])(_0x3fe8be)),this;}[_0x2598e5(0x165)](){const _0x36762c=_0x2598e5;return this[_0x36762c(0x136)]['apply']((0x0,_0x5d38f1[_0x36762c(0x16c)])()),this;}},_0x5d0713=class extends _0x30fa07{['setScatterMapping'](_0x1bfcaf){const _0x42823b=_0x2598e5;return this[_0x42823b(0x136)][_0x42823b(0x1df)]((0x0,_0x5d38f1['setScatterMapping'])(_0x1bfcaf)),this;}[_0x2598e5(0x151)](){const _0x15cb98=_0x2598e5;return this[_0x15cb98(0x136)][_0x15cb98(0x1df)]((0x0,_0x5d38f1[_0x15cb98(0x151)])()),this;}},_0x4a1ac7=class extends _0x30fa07{['getPointRoles'](){const _0x1eaa61=_0x2598e5;var _0x5e86e7,_0x2f0d60;return(_0x5e86e7=(_0x2f0d60=this[_0x1eaa61(0x1d2)]()[_0x1eaa61(0x1c2)])==null?void 0x0:_0x2f0d60[_0x1eaa61(0xf2)])==null?[]:_0x5e86e7;}[_0x2598e5(0x1e0)](_0x26005e){const _0x17d386=_0x2598e5;let _0x37ae61=this[_0x17d386(0x1d2)]()[_0x17d386(0x183)],_0x4979e3=new Map();_0x26005e[_0x17d386(0x150)]((_0x32aee8,_0x57b15e)=>{const _0x23dfc9=_0x17d386;if(!Number['isInteger'](_0x32aee8['dataPointIndex'])||_0x32aee8['dataPointIndex']<0x0)throw Error(_0x23dfc9(0x102)+_0x57b15e+_0x23dfc9(0x11a));let _0x54b009=typeof _0x32aee8['series']=='number'?_0x2a8710(_0x32aee8[_0x23dfc9(0x183)],_0x57b15e):_0x5f030b(_0x32aee8[_0x23dfc9(0x183)][_0x23dfc9(0x1ab)],_0x37ae61,_0x57b15e);_0x4979e3[_0x23dfc9(0x124)](_0x54b009+':'+_0x32aee8[_0x23dfc9(0x173)],{..._0x32aee8,'series':_0x54b009});});let _0x210e49=[..._0x4979e3[_0x17d386(0x197)]()][_0x17d386(0x1e5)]((_0x960ce1,_0x7b757e)=>_0x960ce1['series']-_0x7b757e['series']||_0x960ce1[_0x17d386(0x173)]-_0x7b757e[_0x17d386(0x173)]);return this[_0x17d386(0x136)][_0x17d386(0x1df)]((0x0,_0x5d38f1[_0x17d386(0x15f)])(_0x210e49)),this;}[_0x2598e5(0x1b5)](_0x1e0d70){const _0x3fe938=_0x2598e5;return this[_0x3fe938(0x136)]['apply']((0x0,_0x5d38f1[_0x3fe938(0x1b9)])(_0x1e0d70)),this;}['clearConnector'](){const _0x5d7295=_0x2598e5;return this[_0x5d7295(0x136)][_0x5d7295(0x1df)]((0x0,_0x5d38f1['clearWaterfallConnector'])()),this;}[_0x2598e5(0x188)](_0x21725d){const _0x32f444=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x32f444(0x193)])(_0x21725d)),this;}[_0x2598e5(0x1b7)](){const _0x1ac15f=_0x2598e5;return this[_0x1ac15f(0x136)][_0x1ac15f(0x1df)]((0x0,_0x5d38f1[_0x1ac15f(0x160)])()),this;}[_0x2598e5(0x14f)](_0x3c8f62){const _0x1c68e4=_0x2598e5;return this['_builder'][_0x1c68e4(0x1df)]((0x0,_0x5d38f1[_0x1c68e4(0x14f)])(_0x3c8f62)),this;}[_0x2598e5(0x185)](){const _0x4b1180=_0x2598e5;return this[_0x4b1180(0x136)][_0x4b1180(0x1df)]((0x0,_0x5d38f1['resetUseSubtotal'])()),this;}['setPositiveStyle'](_0x13be36,_0x2bbbdb){const _0x9938f=_0x2598e5;return this[_0x9938f(0x136)][_0x9938f(0x1df)]((0x0,_0x5d38f1[_0x9938f(0x110)])(_0x13be36,_0x5d38f1['ChartWaterfallStyleTarget']['Positive'],_0x2bbbdb)),this;}[_0x2598e5(0x121)](_0x20a45b){const _0x57f641=_0x2598e5;return this[_0x57f641(0x136)][_0x57f641(0x1df)]((0x0,_0x5d38f1[_0x57f641(0x15d)])(_0x20a45b,_0x5d38f1['ChartWaterfallStyleTarget'][_0x57f641(0x1ba)])),this;}[_0x2598e5(0x1eb)](_0x38ab4a,_0x592aa1){const _0x4f8e80=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x4f8e80(0x110)])(_0x38ab4a,_0x5d38f1['ChartWaterfallStyleTarget']['Negative'],_0x592aa1)),this;}['clearNegativeStyle'](_0x4c43e9){const _0xf2fef1=_0x2598e5;return this[_0xf2fef1(0x136)][_0xf2fef1(0x1df)]((0x0,_0x5d38f1[_0xf2fef1(0x15d)])(_0x4c43e9,_0x5d38f1[_0xf2fef1(0x192)][_0xf2fef1(0x1aa)])),this;}[_0x2598e5(0x1c9)](_0x3c4be6,_0x1de2c8){const _0x4dbb08=_0x2598e5;return this[_0x4dbb08(0x136)][_0x4dbb08(0x1df)]((0x0,_0x5d38f1['setWaterfallStyle'])(_0x3c4be6,_0x5d38f1[_0x4dbb08(0x192)][_0x4dbb08(0x163)],_0x1de2c8)),this;}['clearSubtotalStyle'](_0x28f4df){const _0x5cff58=_0x2598e5;return this[_0x5cff58(0x136)]['apply']((0x0,_0x5d38f1[_0x5cff58(0x15d)])(_0x28f4df,_0x5d38f1[_0x5cff58(0x192)]['Subtotal'])),this;}};function _0x2a8710(_0x166207,_0x266c48){const _0x341f93=_0x2598e5;if(!Number[_0x341f93(0x101)](_0x166207)||_0x166207<0x0)throw Error('pointRoles.'+_0x266c48+_0x341f93(0x194));return _0x166207;}function _0x5f030b(_0x151ec0,_0x2d02ab,_0x8ee5aa){const _0x3a4883=_0x2598e5;let _0x4cb345=Object[_0x3a4883(0x105)](_0x2d02ab)[_0x3a4883(0x141)](([,_0x3b5d])=>(_0x3b5d==null?void 0x0:_0x3b5d[_0x3a4883(0x1ab)])===_0x151ec0);if(_0x4cb345[_0x3a4883(0x1d4)]!==0x1)throw Error('pointRoles.'+_0x8ee5aa+_0x3a4883(0x17e)+_0x151ec0+'\x22.');return Number(_0x4cb345[0x0][0x0]);}var _0x18b55e=class extends _0x26d707{['setShape'](_0x130576){const _0x59f156=_0x2598e5;return this[_0x59f156(0x136)][_0x59f156(0x1df)]((0x0,_0x5d38f1[_0x59f156(0x181)])(_0x130576)),this;}[_0x2598e5(0x1cb)](){const _0x1262b8=_0x2598e5;return this['_builder']['apply']((0x0,_0x5d38f1[_0x1262b8(0x179)])()),this;}[_0x2598e5(0x1ea)](_0x43959a){const _0x34e23c=_0x2598e5;return this['_builder'][_0x34e23c(0x1df)]((0x0,_0x5d38f1['setMaskImage'])(_0x43959a)),this;}['clearMaskImage'](){const _0x3c99d2=_0x2598e5;return this[_0x3c99d2(0x136)][_0x3c99d2(0x1df)]((0x0,_0x5d38f1[_0x3c99d2(0xf3)])()),this;}[_0x2598e5(0x1f6)](_0x35fcdf){const _0x44d522=_0x2598e5;return this[_0x44d522(0x136)][_0x44d522(0x1df)]((0x0,_0x5d38f1[_0x44d522(0x14c)])(_0x35fcdf)),this;}['resetRepeat'](){const _0x5b036e=_0x2598e5;return this[_0x5b036e(0x136)]['apply']((0x0,_0x5d38f1[_0x5b036e(0x1f9)])()),this;}};let _0x4fd237={[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x187)]]:_0x1c9ab6,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x195)]]:_0x30fa07,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x1ac)]]:_0x30fa07,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x16e)]]:_0x30fa07,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x1b1)]]:_0x30fa07,[_0x5d38f1[_0x2598e5(0x18d)]['BarStacked']]:_0x30fa07,[_0x5d38f1[_0x2598e5(0x18d)]['BarPercentStacked']]:_0x30fa07,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x17a)]]:_0x910126,[_0x5d38f1['ChartTypeString'][_0x2598e5(0x1b2)]]:_0x910126,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0xf9)]]:_0x5efbe8,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x161)]]:_0x5efbe8,[_0x5d38f1[_0x2598e5(0x18d)]['AreaPercentStacked']]:_0x5efbe8,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x1c3)]]:_0x11e327,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x12a)]]:_0x5d0713,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x146)]]:_0x7979f2,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x1bc)]]:_0x18b55e,[_0x5d38f1['ChartTypeString'][_0x2598e5(0x120)]]:_0x2fa28b,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x104)]]:_0x15f369,[_0x5d38f1['ChartTypeString']['Relation']]:_0x2bb4a3,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x1f3)]]:_0x4a1ac7,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x125)]]:_0x6fc981,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x18e)]]:_0x26d707,[_0x5d38f1[_0x2598e5(0x18d)]['Heatmap']]:_0x3b865c,[_0x5d38f1[_0x2598e5(0x18d)][_0x2598e5(0x100)]]:_0x30fa07};for(let _0x59ac5a of Object[_0x2598e5(0x132)](_0x4fd237))_0x4573cf(_0x59ac5a,_0x4fd237[_0x59ac5a]);var _0x20eb2b=class extends _0x6cb64c[_0x2598e5(0x137)]{get[_0x2598e5(0x1ce)](){const _0x2fc41e=_0x2598e5;return _0x5d38f1[_0x2fc41e(0x1ce)];}get[_0x2598e5(0x13e)](){const _0x3c66c1=_0x2598e5;return _0x5d38f1[_0x3c66c1(0x13e)];}get[_0x2598e5(0x14d)](){return _0x5d38f1['ChartTrendlineType'];}get[_0x2598e5(0x1d7)](){return _0x5d38f1['ChartAppearanceTarget'];}get[_0x2598e5(0x172)](){const _0x259d76=_0x2598e5;return _0x5d38f1[_0x259d76(0x172)];}get[_0x2598e5(0x134)](){const _0xe6f721=_0x2598e5;return _0x5d38f1[_0xe6f721(0x134)];}get[_0x2598e5(0x117)](){const _0x5ed0f6=_0x2598e5;return _0x5d38f1[_0x5ed0f6(0x117)];}get[_0x2598e5(0x1be)](){const _0x246848=_0x2598e5;return _0x5d38f1[_0x246848(0x1be)];}get[_0x2598e5(0x1e8)](){const _0x501fd1=_0x2598e5;return _0x5d38f1[_0x501fd1(0x1e8)];}get['ChartSemanticAxis'](){const _0x2517ee=_0x2598e5;return _0x5d38f1[_0x2517ee(0x17c)];}get[_0x2598e5(0x13b)](){const _0x2be860=_0x2598e5;return _0x5d38f1[_0x2be860(0x13b)];}get[_0x2598e5(0x1f7)](){const _0x28ac9a=_0x2598e5;return _0x5d38f1[_0x28ac9a(0x1f7)];}get['ChartAllSeriesStyleTarget'](){const _0x397918=_0x2598e5;return _0x5d38f1[_0x397918(0x1ed)];}get['ChartSeriesTypeString'](){const _0x5a08eb=_0x2598e5;return _0x5d38f1[_0x5a08eb(0x17b)];}get['ChartTypeString'](){const _0x5580ac=_0x2598e5;return _0x5d38f1[_0x5580ac(0x18d)];}get[_0x2598e5(0x18b)](){const _0x46acd8=_0x2598e5;return _0x5d38f1[_0x46acd8(0x18b)];}get['ChartWaterfallStyleTarget'](){return _0x5d38f1['ChartWaterfallStyleTarget'];}get[_0x2598e5(0x170)](){const _0x5e53f1=_0x2598e5;return _0x5d38f1[_0x5e53f1(0x170)];}get[_0x2598e5(0x10f)](){return _0x5d38f1['ChartWordCloudShapeSource'];}get['AreaLineStyle'](){const _0x3dbea2=_0x2598e5;return _0x5d38f1[_0x3dbea2(0x19d)];}get[_0x2598e5(0x114)](){const _0x18bc44=_0x2598e5;return _0x5d38f1[_0x18bc44(0x114)];}get[_0x2598e5(0x177)](){const _0xccf63f=_0x2598e5;return _0x5d38f1[_0xccf63f(0x177)];}get[_0x2598e5(0x14e)](){return _0x5d38f1['LegendPositionEnum'];}get[_0x2598e5(0x130)](){const _0x57c905=_0x2598e5;return _0x5d38f1[_0x57c905(0x130)];}get['PieLabelPosition'](){return _0x5d38f1['PieLabelPosition'];}get['RadarShape'](){return _0x5d38f1['RadarShape'];}get[_0x2598e5(0x19c)](){const _0x1be93b=_0x2598e5;return _0x5d38f1[_0x1be93b(0x19c)];}get[_0x2598e5(0x1f5)](){const _0x13eecf=_0x2598e5;return _0x5d38f1[_0x13eecf(0x1f5)];}get[_0x2598e5(0x1f1)](){const _0x5c6bcf=_0x2598e5;return _0x5d38f1[_0x5c6bcf(0x1f1)];}get[_0x2598e5(0xfe)](){const _0x591a04=_0x2598e5;return _0x5d38f1[_0x591a04(0xfe)];}get[_0x2598e5(0x15e)](){const _0x17aad5=_0x2598e5;return _0x5d38f1[_0x17aad5(0x15e)];}get[_0x2598e5(0xf1)](){const _0x98ad38=_0x2598e5;return _0x5d38f1[_0x98ad38(0xf1)];}};_0x6cb64c[_0x2598e5(0x137)]['extend'](_0x20eb2b);var _0x5eca1e=class{},_0x39006d=class{constructor(_0x5b5512){const _0x32d558=_0x2598e5;this[_0x32d558(0x118)]=_0x5b5512,_0x2b25c2(this,_0x32d558(0x1d8),new WeakMap());}[_0x2598e5(0x15c)](_0x7eb14a){const _0x2c52a9=_0x2598e5;let _0x538ecb=this['_cache'][_0x2c52a9(0xf4)](_0x7eb14a);if(_0x538ecb)return _0x538ecb;let _0x3f0088=this[_0x2c52a9(0x118)](_0x7eb14a);return this[_0x2c52a9(0x1d8)][_0x2c52a9(0x124)](_0x7eb14a,_0x3f0088),_0x3f0088;}[_0x2598e5(0x1b0)](_0x618636,_0x4dcf2f){const _0x5e7a75=_0x2598e5;let _0x3d4990={'builder':_0x618636,'wrap':_0x51f086=>new(this['compose'](_0x51f086))(_0x3d4990)};return new(this[_0x5e7a75(0x15c)](_0x4dcf2f))(_0x3d4990);}};_0x1c9103['CHART_FACADE_RANDOM_ID_LENGTH']=0x6,_0x1c9103['FAreaChartBuilder']=_0x5efbe8,_0x1c9103['FAxisChartBuilder']=_0x3c4cf0,_0x1c9103['FBubbleChartBuilder']=_0x15f369,_0x1c9103[_0x2598e5(0x1a9)]=_0x30fa07,_0x1c9103[_0x2598e5(0x1c7)]=_0x3c17a5,_0x1c9103['FChartBuilderBase']=_0x26d707,_0x1c9103['FChartsBase']=_0x5eca1e,_0x1c9103[_0x2598e5(0x113)]=_0x7979f2,_0x1c9103['FFunnelChartBuilder']=_0x2fa28b,_0x1c9103[_0x2598e5(0x169)]=_0x3b865c,_0x1c9103['FLineChartBuilder']=_0x1c9ab6,_0x1c9103[_0x2598e5(0x1e4)]=_0x6fc981,_0x1c9103[_0x2598e5(0x10e)]=_0x910126,_0x1c9103[_0x2598e5(0x1e9)]=_0x11e327,_0x1c9103[_0x2598e5(0x1ef)]=_0x2bb4a3,_0x1c9103[_0x2598e5(0x166)]=_0x5d0713,_0x1c9103[_0x2598e5(0x10a)]=_0x4a1ac7,_0x1c9103['FWordCloudChartBuilder']=_0x18b55e,_0x1c9103[_0x2598e5(0x14a)]=_0x39006d,_0x1c9103['getChartBuilderConstructor']=_0x3aae5d,_0x1c9103[_0x2598e5(0x149)]=_0x14b726;}));function _0x1f4f(_0x5d7f48,_0x282c8b){_0x5d7f48=_0x5d7f48-0xf1;const _0x42f8db=_0x42f8();let _0x1f4f0a=_0x42f8db[_0x5d7f48];return _0x1f4f0a;}function _0x42f8(){const _0x12eecd=['resetCombinationSeriesType','setValueScale','setInvalidValueStrategy','TitlePositionEnum','setCombinationSeriesAxis','Boxplot','isInteger','pointRoles.','setSeries','Bubble','entries','setValueUnit','clearRightYAxis','clearSliceBorderColor','object','FWaterfallChartBuilder','2843841aKvZJw','setGap','setDoughnutHole','FPieChartBuilder','ChartWordCloudShapeSource','setWaterfallStyle','setRightYAxis','resetSeriesAxis','FCombinationChartBuilder','InvalidValueType','getPendingConfig','setRelationNodeShape','ChartAxisTarget','_compose','getId','\x20has\x20an\x20invalid\x20data-point\x20index.','resetGap','setLegend','setYAxis','clearLegend','setMarkLines','Funnel','clearPositiveStyle','setCombinationSeriesType','setRadarShape','set','Pareto','adapter','setSeriesAxis','clearValueSuffix','resetUseAbsoluteValue','Scatter','setVisualMapType','setNodeShape','clearAllSeriesStyle','clearPalette','exportImage','LinePointShape','string','keys','setRelationForce','ChartAxisPointerTarget','clearAreaLineStyle','_builder','FEnum','setYAxisTitle','_context','setAxisTitle','ChartSeriesAxis','2101083HIaaLj','setRelationLayout','ChartAxisDimension','setSliceBorderColor','resetValueScale','filter','clearValueFields','setLineStyle','6575784Qurfcb','setCellLabel','Combination','setLayout','setCircularLabelRotation','getChartBuilderPendingConfig','HostBuilderComposer','UniverProEngineChart','setWordCloudRepeat','ChartTrendlineType','LegendPositionEnum','setUseSubtotal','forEach','clearScatterMapping','clearAggregation','3336968NTimkA','setParetoBarStyle','resetCircularLabelRotation','clearRelationForce','resetUseDateAxis','setEmphasisEnabled','default','clearXAxisTitle','UniverProEngineChartFacade','compose','clearWaterfallStyle','WaterfallStackTypeEnum','setWaterfallPointRoles','resetWaterfallStackType','AreaStacked','setBarStyle','Subtotal','setTrendline','resetNodeShape','FScatterChartBuilder','setAllSeriesStyle','function','FHeatmapChartBuilder','setIncludeZeroValues','clearTitle','resetRelationNodeShape','clearDoughnutHole','ColumnPercentStacked','Module','ChartWaterfallPointRole','setHalfPie','ChartAxisName','dataPointIndex','resetInvalidValueStrategy','setSubtitle','resetPaddingAngleEnabled','LabelAlignEnum','setRightYAxisTitle','resetWordCloudShape','Pie','ChartSeriesTypeString','ChartSemanticAxis','resetIncludeZeroValues','\x20must\x20resolve\x20to\x20exactly\x20one\x20series\x20named\x20\x22','setPaddingAngleEnabled','resetSeriesType','setWordCloudShape','setFill','series','10VkDhRK','resetUseSubtotal','43422eWXXkV','Line','setStackType','clearYAxis','resetExplosion','ChartVisualMapType','setCategoryField','ChartTypeString','Sankey','defineProperty','setForce','Chart\x20builder\x20is\x20not\x20registered:\x20','ChartWaterfallStyleTarget','setWaterfallStackType','\x20has\x20an\x20invalid\x20series\x20index.','Column','resetEmphasisEnabled','values','setUseDateAxis','setAggregation','resetRadarFill','setBar','RelationChartLayoutEnum','AreaLineStyle','setExplosion','setAreaLineStyle','resetRadarShape','setType','clearCellLabel','resetLayout','constructor','clearBarStyle','clearCategoryField','setFunnelGap','symbol','FCartesianChartBuilder','Negative','name','ColumnStacked','removeTrendline','resetLabelLineVisible','setValueRange','create','Bar','Donut','toStringTag','setXAxis','setConnector','clearAxisTitle','resetStackType','resetHalfPie','setWaterfallConnector','Positive','setDecimalPlaces','WordCloud','setLabelLineVisible','ChartAxisTickPosition','clearAppearance','setShape','resetVisualMapType','waterfall','Radar','clearXAxis','builder','165iNiCnl','FChartBase','setTitle','setSubtotalStyle','UniverCoreFacade','resetShape','clearParetoBarStyle','setRosePie','ChartAggregationTarget','clearForce','22643793mmvjuy','commit','describe','amd','length','resolveData','clearCumulativeLineStyle','ChartAppearanceTarget','_cache','resetDecimalPlaces','clearValueUnit','clearRightYAxisTitle','clearLineStyle','setUseValueAsSymbolSize','setValueSuffix','apply','setPointRoles','clearTheme','clearSubtitle','setUseAbsoluteValue','FParetoChartBuilder','sort','setValueFields','clearBar','ChartMarkLineLabelPosition','FRadarChartBuilder','setMaskImage','setNegativeStyle','resetUseValueAsSymbolSize','ChartAllSeriesStyleTarget','setAppearance','FRelationChartBuilder','@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.','SeriesLabelPosition','clearAxisPointer','Waterfall','setAxisPointer','SelectModeEnum','setRepeat','ChartSeriesClearTarget','setPieLabel','resetWordCloudRepeat','WordCloudShapeEnum','pointRoles','clearMaskImage','get','clearSeries','RightY','setPalette','clearTrendlines','Area','211403JUGOqS'];_0x42f8=function(){return _0x12eecd;};return _0x42f8();}
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;}));