@univerjs-pro/engine-chart 1.0.0-alpha.6 → 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.
Files changed (93) 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/candlestick-inline-table.d.ts +4 -0
  8. package/lib/types/chart-builder/chart-builder-adapter.d.ts +3 -3
  9. package/lib/types/chart-builder/chart-builder.d.ts +3 -3
  10. package/lib/types/chart-builder/chart-color.d.ts +49 -0
  11. package/lib/types/chart-builder/chart-starter-data.d.ts +3 -0
  12. package/lib/types/chart-builder/chart-types.d.ts +109 -68
  13. package/lib/types/chart-builder/configuration/assertions.d.ts +3 -0
  14. package/lib/types/chart-builder/configuration/auto-gradient-fill.d.ts +4 -0
  15. package/lib/types/chart-builder/configuration/candlestick.d.ts +9 -0
  16. package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +4 -0
  17. package/lib/types/chart-builder/configuration/histogram.d.ts +11 -0
  18. package/lib/types/chart-builder/configuration/index.d.ts +5 -0
  19. package/lib/types/chart-builder/configuration/pie.d.ts +5 -1
  20. package/lib/types/chart-builder/configuration/point-mapping.d.ts +3 -0
  21. package/lib/types/chart-builder/configuration/treemap.d.ts +8 -0
  22. package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +8 -3
  23. package/lib/types/chart-builder/conversion/chart-context-patch.d.ts +5 -0
  24. package/lib/types/chart-builder/conversion/chart-model-fields.d.ts +6 -0
  25. package/lib/types/chart-builder/conversion/resolve-chart-model-data.d.ts +3 -3
  26. package/lib/types/chart-builder/index.d.ts +5 -0
  27. package/lib/types/chart-builder/internal/host-builder-runtime.d.ts +0 -2
  28. package/lib/types/chart-text-measure-canvas.d.ts +6 -0
  29. package/lib/types/enum.d.ts +34 -1
  30. package/lib/types/facade/builders/f-area-chart-builder.d.ts +2 -2
  31. package/lib/types/facade/builders/f-boxplot-chart-builder.d.ts +5 -0
  32. package/lib/types/facade/builders/f-bubble-chart-builder.d.ts +2 -2
  33. package/lib/types/facade/builders/f-candlestick-chart-builder.d.ts +133 -0
  34. package/lib/types/facade/builders/f-histogram-chart-builder.d.ts +74 -0
  35. package/lib/types/facade/builders/f-line-chart-builder.d.ts +2 -2
  36. package/lib/types/facade/builders/f-pie-chart-builder.d.ts +42 -1
  37. package/lib/types/facade/builders/f-relation-chart-builder.d.ts +38 -0
  38. package/lib/types/facade/builders/f-scatter-chart-builder.d.ts +2 -2
  39. package/lib/types/facade/builders/f-treemap-chart-builder.d.ts +34 -0
  40. package/lib/types/facade/builders/index.d.ts +4 -0
  41. package/lib/types/facade/chart-builder-type-map.d.ts +5 -2
  42. package/lib/types/facade/f-cartesian-chart-builder.d.ts +14 -4
  43. package/lib/types/facade/f-chart-base.d.ts +2 -2
  44. package/lib/types/facade/f-chart-builder-base.d.ts +31 -0
  45. package/lib/types/index.d.ts +10 -9
  46. package/lib/types/models/chart-data-operators/histogram-data.d.ts +10 -0
  47. package/lib/types/models/chart-data-operators/index.d.ts +1 -0
  48. package/lib/types/models/chart-data-operators/operators.d.ts +7 -1
  49. package/lib/types/models/chart-data-operators/treemap-data.d.ts +3 -0
  50. package/lib/types/models/chart-element-edit-overlay/chart-element-edit-overlay.d.ts +2 -1
  51. package/lib/types/models/chart-locale-texts.d.ts +15 -1
  52. package/lib/types/models/chart-model.d.ts +368 -164
  53. package/lib/types/models/constants/default-chart-style.d.ts +45 -0
  54. package/lib/types/models/constants/histogram-defaults.d.ts +4 -0
  55. package/lib/types/models/constants/treemap.d.ts +1 -0
  56. package/lib/types/models/data-context-transformers/candlestick-data-context-transformer.d.ts +4 -0
  57. package/lib/types/models/data-context-transformers/histogram-data-context-transformer.d.ts +7 -0
  58. package/lib/types/models/data-context-transformers/treemap-data-context-transformer.d.ts +11 -0
  59. package/lib/types/models/echart-render-model.d.ts +10 -7
  60. package/lib/types/models/echart-to-chart-model-init.d.ts +2 -1
  61. package/lib/types/models/mode-converter/converters/boxplot-chart-converter.d.ts +3 -2
  62. package/lib/types/models/mode-converter/converters/bubble-chart-converter.d.ts +3 -2
  63. package/lib/types/models/mode-converter/converters/candlestick-chart-converter.d.ts +5 -0
  64. package/lib/types/models/mode-converter/converters/combination-chart-converter.d.ts +3 -2
  65. package/lib/types/models/mode-converter/converters/funnel-chart-converter.d.ts +3 -2
  66. package/lib/types/models/mode-converter/converters/heatmap-chart-convert.d.ts +3 -2
  67. package/lib/types/models/mode-converter/converters/histogram-chart-converter.d.ts +4 -0
  68. package/lib/types/models/mode-converter/converters/pareto-chart-converter.d.ts +3 -2
  69. package/lib/types/models/mode-converter/converters/pie-chart-converter.d.ts +3 -2
  70. package/lib/types/models/mode-converter/converters/radar-chart-converter.d.ts +3 -2
  71. package/lib/types/models/mode-converter/converters/relation-chart-converter.d.ts +3 -2
  72. package/lib/types/models/mode-converter/converters/sankey-chart-converter.d.ts +3 -2
  73. package/lib/types/models/mode-converter/converters/scatter-chart-converter.d.ts +3 -2
  74. package/lib/types/models/mode-converter/converters/treemap-chart-converter.d.ts +4 -0
  75. package/lib/types/models/mode-converter/converters/waterfall-chart-converter.d.ts +3 -2
  76. package/lib/types/models/mode-converter/converters/word-cloud-converter.d.ts +3 -2
  77. package/lib/types/models/mode-converter/render-spec-operators/auto-gradient-presets.d.ts +5 -0
  78. package/lib/types/models/mode-converter/render-spec-operators/chart-color.d.ts +23 -0
  79. package/lib/types/models/mode-converter/render-spec-operators/rich-text-inheritance.operator.d.ts +2 -0
  80. package/lib/types/models/mode-converter/render-spec-operators/tool-tip-operator.d.ts +8 -2
  81. package/lib/types/models/mode-converter/render-spec-operators/tools.d.ts +3 -2
  82. package/lib/types/types.d.ts +147 -13
  83. package/lib/types/util.d.ts +1 -7
  84. package/lib/types/wordcloud-chart/canvas.d.ts +3 -3
  85. package/lib/types/wordcloud-chart/core/layout/word-shrink.d.ts +5 -8
  86. package/lib/types/wordcloud-chart/core/text/formatter.d.ts +2 -2
  87. package/lib/types/wordcloud-chart/core/text/normalize.d.ts +2 -2
  88. package/lib/types/wordcloud-chart/defaults.d.ts +2 -2
  89. package/lib/types/wordcloud-chart/index.d.ts +1 -1
  90. package/lib/types/wordcloud-chart/types.d.ts +0 -3
  91. package/lib/umd/facade.js +1 -1
  92. package/lib/umd/index.js +1 -1
  93. package/package.json +5 -5
@@ -1,8 +1,8 @@
1
- import type { IWordCloudLayoutMask, IWordCloudLayoutOptions, IWordCloudLayoutResult, IWordCloudMaskGrid, IWordCloudSpecBase, IWordCloudTextMeasurer } from './types';
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: IWordCloudSpecBase, runtime: IWordCloudLayoutRuntime): IWordCloudLayoutResult;
8
- export declare function resolveLayoutOptions(spec: IWordCloudSpecBase): IWordCloudLayoutOptions;
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: WordShrinkSessionOptions);
30
- resolveInitialCandidate(designSize: number): WordShrinkCandidate;
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<WordShrinkCandidate>;
35
- commitPlaced(candidate: WordShrinkCandidate): void;
31
+ }): IterableIterator<IWordShrinkCandidate>;
32
+ commitPlaced(candidate: IWordShrinkCandidate): void;
36
33
  getDynamicRatio(): number;
37
- getStats(): WordShrinkStats;
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, IWordCloudSpecBase } from '../../types';
2
- export declare function encodeWordCloudWords(words: INormalizedWordCloudDatum[], spec: IWordCloudSpecBase): IWordCloudEncodedWord[];
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, IWordCloudSpecBase } from '../../types';
2
- export declare function normalizeWordCloudData(spec: IWordCloudSpecBase): INormalizedWordCloudDatum[];
1
+ import type { INormalizedWordCloudDatum, IWordCloudProtocolSpec } from '../../types';
2
+ export declare function normalizeWordCloudData(spec: IWordCloudProtocolSpec): INormalizedWordCloudDatum[];
@@ -1,4 +1,4 @@
1
- import type { IResolvedWordCloudSpec, IWordCloudSpecBase } from './types';
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: IWordCloudSpecBase): IResolvedWordCloudSpec;
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, IWordCloudSeriesDataItem, IWordCloudSeriesOption, IWordCloudSpecBase, IWordCloudTextMarkAttrs, IWordCloudTextMarkSpec, IWordCloudTextMeasurer, IWordCloudTextSprite, WordCloudFontSizeRange, WordCloudShape, } from './types';
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 _0x168e(_0x2a53dc,_0x1b80e9){_0x2a53dc=_0x2a53dc-0x1d2;const _0x1b3efc=_0x1b3e();let _0x168e2b=_0x1b3efc[_0x2a53dc];return _0x168e2b;}(function(_0x3ff804,_0x5641a3){const _0x51ba07=_0x168e,_0x185f5f=_0x3ff804();while(!![]){try{const _0x2eceb2=parseInt(_0x51ba07(0x288))/0x1*(parseInt(_0x51ba07(0x246))/0x2)+-parseInt(_0x51ba07(0x281))/0x3+parseInt(_0x51ba07(0x251))/0x4*(parseInt(_0x51ba07(0x269))/0x5)+parseInt(_0x51ba07(0x217))/0x6*(parseInt(_0x51ba07(0x278))/0x7)+-parseInt(_0x51ba07(0x2d5))/0x8+-parseInt(_0x51ba07(0x214))/0x9*(-parseInt(_0x51ba07(0x23f))/0xa)+-parseInt(_0x51ba07(0x2b5))/0xb;if(_0x2eceb2===_0x5641a3)break;else _0x185f5f['push'](_0x185f5f['shift']());}catch(_0x130e01){_0x185f5f['push'](_0x185f5f['shift']());}}}(_0x1b3e,0x455d1),function(_0x5c1ff7,_0x478a7a){const _0x3e3069=_0x168e;typeof exports==_0x3e3069(0x2e3)&&typeof module<'u'?_0x478a7a(exports,require('@univerjs-pro/engine-chart'),require('@univerjs/core/facade')):typeof define==_0x3e3069(0x21c)&&define[_0x3e3069(0x2a2)]?define(['exports',_0x3e3069(0x20d),_0x3e3069(0x26c)],_0x478a7a):(_0x5c1ff7=typeof globalThis<'u'?globalThis:_0x5c1ff7||self,_0x478a7a(_0x5c1ff7['UniverProEngineChartFacade']={},_0x5c1ff7[_0x3e3069(0x244)],_0x5c1ff7[_0x3e3069(0x1f7)]));}(this,function(_0x25ec51,_0x522d5d,_0x3c6a66){const _0x3e0496=_0x168e;Object[_0x3e0496(0x1d7)](_0x25ec51,Symbol[_0x3e0496(0x1ed)],{'value':_0x3e0496(0x26a)});let _0x1b36ef=new Map();function _0x10e0a0(_0x289f0e,_0x18d488){const _0x2c1525=_0x3e0496;_0x1b36ef[_0x2c1525(0x27b)](_0x289f0e,_0x18d488);}function _0x46a57c(_0x48df91){const _0xb38f23=_0x3e0496;let _0x1b3a28=_0x1b36ef['get'](_0x48df91);if(!_0x1b3a28)throw Error(_0xb38f23(0x29c)+String(_0x48df91));return _0x1b3a28;}let _0x3541ad=Symbol(_0x3e0496(0x29b));function _0x16b3f5(_0x65e2df){const _0x583daa=_0x3e0496;return _0x65e2df[_0x3541ad]['builder'][_0x583daa(0x1eb)]();}function _0x3d47ec(_0x23bd7e){'@babel/helpers - typeof';const _0x144405=_0x3e0496;return _0x3d47ec=typeof Symbol==_0x144405(0x21c)&&typeof Symbol[_0x144405(0x2e7)]==_0x144405(0x201)?function(_0x4d1c7a){return typeof _0x4d1c7a;}:function(_0x327b82){const _0x187d76=_0x144405;return _0x327b82&&typeof Symbol==_0x187d76(0x21c)&&_0x327b82['constructor']===Symbol&&_0x327b82!==Symbol[_0x187d76(0x283)]?_0x187d76(0x201):typeof _0x327b82;},_0x3d47ec(_0x23bd7e);}function _0x569cbf(_0x471cba,_0x5b66d5){const _0x45a8da=_0x3e0496;if(_0x3d47ec(_0x471cba)!=_0x45a8da(0x2e3)||!_0x471cba)return _0x471cba;var _0x17797f=_0x471cba[Symbol[_0x45a8da(0x1de)]];if(_0x17797f!==void 0x0){var _0x269159=_0x17797f[_0x45a8da(0x1e4)](_0x471cba,_0x5b66d5||_0x45a8da(0x2bc));if(_0x3d47ec(_0x269159)!=_0x45a8da(0x2e3))return _0x269159;throw TypeError(_0x45a8da(0x2b6));}return(_0x5b66d5===_0x45a8da(0x274)?String:Number)(_0x471cba);}function _0x5b90f1(_0x2d7328){const _0x19002e=_0x3e0496;var _0x3c21ef=_0x569cbf(_0x2d7328,_0x19002e(0x274));return _0x3d47ec(_0x3c21ef)==_0x19002e(0x201)?_0x3c21ef:_0x3c21ef+'';}function _0x3a5008(_0x58fe4d,_0xf1a31e,_0x8e4f6d){const _0x2804ba=_0x3e0496;return(_0xf1a31e=_0x5b90f1(_0xf1a31e))in _0x58fe4d?Object[_0x2804ba(0x1d7)](_0x58fe4d,_0xf1a31e,{'value':_0x8e4f6d,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x58fe4d[_0xf1a31e]=_0x8e4f6d,_0x58fe4d;}var _0xf2456a=class{constructor(_0x6c8793){const _0x9f62fe=_0x3e0496;this[_0x9f62fe(0x2b2)]=_0x6c8793,_0x3a5008(this,_0x9f62fe(0x2d9),void 0x0),this[_0x9f62fe(0x2d9)]=_0x6c8793[_0x9f62fe(0x2d3)];}get[_0x3541ad](){return this['_context'];}['getId'](){const _0x2896c6=_0x3e0496;return this[_0x2896c6(0x2d9)]['id'];}['describe'](){const _0x1bb1c8=_0x3e0496;return this['_builder'][_0x1bb1c8(0x1ee)]();}[_0x3e0496(0x2cf)](){const _0x421036=_0x3e0496;return this[_0x421036(0x2d9)][_0x421036(0x2cf)]();}[_0x3e0496(0x2c1)](){return this['_builder']['commit'](),this;}['exportImage'](_0x56d9ca){const _0x5afd48=_0x3e0496;return this[_0x5afd48(0x2d9)][_0x5afd48(0x247)][_0x5afd48(0x223)](_0x56d9ca);}},_0x34c1f9=class extends _0xf2456a{[_0x3e0496(0x215)](_0x50f6e4){const _0x3cfe01=_0x3e0496;return this[_0x3cfe01(0x2d9)][_0x3cfe01(0x29a)](_0x50f6e4),this;}[_0x3e0496(0x23c)](_0x41cad9){const _0x268eaa=_0x3e0496;return this[_0x268eaa(0x2d9)][_0x268eaa(0x22d)]((0x0,_0x522d5d[_0x268eaa(0x23c)])(_0x41cad9)),this;}[_0x3e0496(0x1f9)](){const _0x1ec7d6=_0x3e0496;return this[_0x1ec7d6(0x2d9)]['apply']((0x0,_0x522d5d['clearTitle'])()),this;}[_0x3e0496(0x1df)](_0x580266){const _0x5a874b=_0x3e0496;return this[_0x5a874b(0x2d9)][_0x5a874b(0x22d)]((0x0,_0x522d5d[_0x5a874b(0x1df)])(_0x580266)),this;}[_0x3e0496(0x29e)](){const _0x44ce39=_0x3e0496;return this['_builder'][_0x44ce39(0x22d)]((0x0,_0x522d5d['clearSubtitle'])()),this;}[_0x3e0496(0x2d8)](_0x333e01){const _0x3b8830=_0x3e0496;return this[_0x3b8830(0x2d9)]['apply']((0x0,_0x522d5d[_0x3b8830(0x2d8)])(_0x333e01)),this;}['clearLegend'](){const _0x181800=_0x3e0496;return this[_0x181800(0x2d9)][_0x181800(0x22d)]((0x0,_0x522d5d['clearLegend'])()),this;}[_0x3e0496(0x2e5)](_0x51a26b){const _0x209e0c=_0x3e0496;return this[_0x209e0c(0x2d9)][_0x209e0c(0x22d)]((0x0,_0x522d5d['setTheme'])(_0x51a26b)),this;}['clearTheme'](){const _0xd6d59f=_0x3e0496;return this[_0xd6d59f(0x2d9)]['apply']((0x0,_0x522d5d[_0xd6d59f(0x1e9)])()),this;}[_0x3e0496(0x2d1)](_0x2bb7f7){const _0x53d4fa=_0x3e0496;return this[_0x53d4fa(0x2d9)][_0x53d4fa(0x22d)]((0x0,_0x522d5d[_0x53d4fa(0x2d1)])(_0x2bb7f7)),this;}[_0x3e0496(0x252)](){const _0x2ead35=_0x3e0496;return this[_0x2ead35(0x2d9)]['apply']((0x0,_0x522d5d[_0x2ead35(0x252)])()),this;}['setAppearance'](_0x2186d1){const _0x4db256=_0x3e0496;return this['_builder'][_0x4db256(0x22d)]((0x0,_0x522d5d[_0x4db256(0x20e)])(_0x2186d1)),this;}[_0x3e0496(0x2cd)](_0x3b0736){const _0x1ee74e=_0x3e0496;return this['_builder'][_0x1ee74e(0x22d)]((0x0,_0x522d5d[_0x1ee74e(0x2cd)])(_0x3b0736)),this;}[_0x3e0496(0x26e)](_0x36ae3b){const _0x41df00=_0x3e0496;return this[_0x41df00(0x2d9)]['apply']((0x0,_0x522d5d[_0x41df00(0x26e)])(_0x36ae3b)),this;}['resetInvalidValueStrategy'](){const _0x174872=_0x3e0496;return this[_0x174872(0x2d9)][_0x174872(0x22d)]((0x0,_0x522d5d[_0x174872(0x282)])()),this;}['setCategoryField'](_0x4065f7){const _0x2132af=_0x3e0496;return this[_0x2132af(0x2d9)][_0x2132af(0x22d)]((0x0,_0x522d5d[_0x2132af(0x239)])(_0x4065f7)),this;}['clearCategoryField'](){const _0x5f4cb0=_0x3e0496;return this[_0x5f4cb0(0x2d9)][_0x5f4cb0(0x22d)]((0x0,_0x522d5d[_0x5f4cb0(0x2c4)])()),this;}[_0x3e0496(0x1ec)](_0x599965){const _0x38af7d=_0x3e0496;return this['_builder'][_0x38af7d(0x22d)]((0x0,_0x522d5d['setValueFields'])(_0x599965)),this;}[_0x3e0496(0x232)](){const _0x2ed0ed=_0x3e0496;return this[_0x2ed0ed(0x2d9)][_0x2ed0ed(0x22d)]((0x0,_0x522d5d[_0x2ed0ed(0x232)])()),this;}['setAggregation'](_0x144a04){const _0x527515=_0x3e0496;return this['_builder'][_0x527515(0x22d)]((0x0,_0x522d5d['setAggregation'])(_0x144a04)),this;}['clearAggregation'](_0x595761){const _0x48a40a=_0x3e0496;return this[_0x48a40a(0x2d9)]['apply']((0x0,_0x522d5d[_0x48a40a(0x1f0)])(_0x595761)),this;}[_0x3e0496(0x22c)](_0x22d1e1){const _0x1e2555=_0x3e0496;this[_0x1e2555(0x208)](_0x22d1e1);let _0x199dd9=_0x46a57c(_0x22d1e1);return this[_0x1e2555(0x2b2)][_0x1e2555(0x22f)](_0x199dd9);}['_setType'](_0xf47503){const _0x65b269=_0x3e0496;this[_0x65b269(0x2d9)][_0x65b269(0x22c)](_0xf47503);}},_0x99b2ea=class extends _0x34c1f9{[_0x3e0496(0x24e)](_0x315366){const _0x560c86=_0x3e0496;return this[_0x560c86(0x2d9)]['apply']((0x0,_0x522d5d[_0x560c86(0x24e)])(_0x315366)),this;}[_0x3e0496(0x2d0)](){const _0x4e68ee=_0x3e0496;return this[_0x4e68ee(0x2d9)]['apply']((0x0,_0x522d5d['clearMarkLines'])()),this;}[_0x3e0496(0x1f6)](_0x487eeb){const _0x281d78=_0x3e0496;return this[_0x281d78(0x2d9)]['apply']((0x0,_0x522d5d['setXAxis'])(_0x487eeb)),this;}[_0x3e0496(0x23b)](_0x1f5e92){const _0x393dd7=_0x3e0496;return this[_0x393dd7(0x2d9)][_0x393dd7(0x22d)]((0x0,_0x522d5d[_0x393dd7(0x23b)])(_0x1f5e92)),this;}['setYAxis'](_0x1b2488){const _0x18878f=_0x3e0496;return this[_0x18878f(0x2d9)]['apply']((0x0,_0x522d5d[_0x18878f(0x1dd)])(_0x1b2488)),this;}[_0x3e0496(0x293)](_0x240b61){const _0x4787ec=_0x3e0496;return this[_0x4787ec(0x2d9)][_0x4787ec(0x22d)]((0x0,_0x522d5d[_0x4787ec(0x293)])(_0x240b61)),this;}[_0x3e0496(0x2c0)](_0x57b7a5){const _0x399fd8=_0x3e0496;return this['_builder'][_0x399fd8(0x22d)]((0x0,_0x522d5d[_0x399fd8(0x2c0)])(_0x57b7a5)),this;}[_0x3e0496(0x27c)](_0x4894cb){const _0x14f704=_0x3e0496;return this[_0x14f704(0x2d9)][_0x14f704(0x22d)]((0x0,_0x522d5d['clearRightYAxis'])(_0x4894cb)),this;}['setXAxisTitle'](_0x5a8c37){const _0x3ad84c=_0x3e0496;return this[_0x3ad84c(0x2d9)]['apply']((0x0,_0x522d5d['setAxisTitle'])(_0x522d5d[_0x3ad84c(0x200)]['X'],_0x5a8c37)),this;}[_0x3e0496(0x28e)](){const _0x3f7fe3=_0x3e0496;return this[_0x3f7fe3(0x2d9)][_0x3f7fe3(0x22d)]((0x0,_0x522d5d[_0x3f7fe3(0x28c)])(_0x522d5d[_0x3f7fe3(0x200)]['X'])),this;}[_0x3e0496(0x203)](_0x2cbe2d){const _0xbcd1f7=_0x3e0496;return this['_builder'][_0xbcd1f7(0x22d)]((0x0,_0x522d5d[_0xbcd1f7(0x238)])(_0x522d5d[_0xbcd1f7(0x200)]['Y'],_0x2cbe2d)),this;}[_0x3e0496(0x26b)](){const _0x2d414c=_0x3e0496;return this[_0x2d414c(0x2d9)][_0x2d414c(0x22d)]((0x0,_0x522d5d['clearAxisTitle'])(_0x522d5d['ChartAxisName']['Y'])),this;}[_0x3e0496(0x26d)](_0x57cdbe){const _0x43e5a2=_0x3e0496;return this['_builder']['apply']((0x0,_0x522d5d[_0x43e5a2(0x238)])(_0x522d5d['ChartAxisName']['RightY'],_0x57cdbe)),this;}[_0x3e0496(0x1ef)](){const _0x27ea1d=_0x3e0496;return this[_0x27ea1d(0x2d9)][_0x27ea1d(0x22d)]((0x0,_0x522d5d[_0x27ea1d(0x28c)])(_0x522d5d[_0x27ea1d(0x200)]['RightY'])),this;}[_0x3e0496(0x25d)](_0x4e5e1d){const _0x1fb207=_0x3e0496;return this[_0x1fb207(0x2d9)]['apply']((0x0,_0x522d5d[_0x1fb207(0x25d)])(_0x4e5e1d)),this;}['resetUseDateAxis'](){const _0x19731f=_0x3e0496;return this[_0x19731f(0x2d9)]['apply']((0x0,_0x522d5d[_0x19731f(0x2ae)])()),this;}},_0x3ee630=class extends _0x99b2ea{[_0x3e0496(0x263)](_0x23774e){const _0x327688=_0x3e0496;return this[_0x327688(0x2d9)][_0x327688(0x22d)]((0x0,_0x522d5d[_0x327688(0x263)])(_0x23774e)),this;}[_0x3e0496(0x2dc)](){const _0x4c6f18=_0x3e0496;return this[_0x4c6f18(0x2d9)][_0x4c6f18(0x22d)]((0x0,_0x522d5d['clearBar'])()),this;}[_0x3e0496(0x248)](_0x1bcc8d,_0xed0dc7){const _0x222000=_0x3e0496;return this[_0x222000(0x2d9)]['apply']((0x0,_0x522d5d['setSeries'])(_0x1bcc8d,_0xed0dc7)),this;}[_0x3e0496(0x202)](_0x41ddd5,_0x52a182){const _0x13b797=_0x3e0496;return this['_builder'][_0x13b797(0x22d)]((0x0,_0x522d5d['clearSeries'])(_0x41ddd5,_0x52a182)),this;}['setAllSeriesStyle'](_0x1942d9){const _0x5427f7=_0x3e0496;return this[_0x5427f7(0x2d9)][_0x5427f7(0x22d)]((0x0,_0x522d5d[_0x5427f7(0x2a6)])(_0x1942d9)),this;}[_0x3e0496(0x242)](_0x34b089){const _0x7e6c1c=_0x3e0496;return this[_0x7e6c1c(0x2d9)][_0x7e6c1c(0x22d)]((0x0,_0x522d5d[_0x7e6c1c(0x242)])(_0x34b089)),this;}[_0x3e0496(0x2b8)](_0x594676,_0x56e867){const _0x1ff0d5=_0x3e0496;return this[_0x1ff0d5(0x2d9)][_0x1ff0d5(0x22d)]((0x0,_0x522d5d[_0x1ff0d5(0x2b8)])(_0x594676,_0x56e867)),this;}['removeTrendline'](_0x2e6701,_0x37a72e){const _0x3e7db4=_0x3e0496;return this[_0x3e7db4(0x2d9)][_0x3e7db4(0x22d)]((0x0,_0x522d5d[_0x3e7db4(0x284)])(this[_0x3e7db4(0x2d9)][_0x3e7db4(0x1ee)](),_0x2e6701,_0x37a72e)),this;}[_0x3e0496(0x2e1)](_0x5c9760){const _0x1c9be2=_0x3e0496;return this[_0x1c9be2(0x2d9)][_0x1c9be2(0x22d)]((0x0,_0x522d5d[_0x1c9be2(0x2e1)])(this['_builder'][_0x1c9be2(0x1ee)](),_0x5c9760)),this;}[_0x3e0496(0x276)](_0x1441f0){const _0xaa91a3=_0x3e0496;return this[_0xaa91a3(0x2d9)][_0xaa91a3(0x22d)]((0x0,_0x522d5d[_0xaa91a3(0x276)])(_0x1441f0)),this;}['clearAxisPointer'](_0x21212a){const _0x4457c8=_0x3e0496;return this[_0x4457c8(0x2d9)][_0x4457c8(0x22d)]((0x0,_0x522d5d[_0x4457c8(0x22a)])(_0x21212a)),this;}},_0x4c69ad=class extends _0x3ee630{[_0x3e0496(0x24d)](_0x2e22ef){const _0x35a036=_0x3e0496;return this[_0x35a036(0x2d9)][_0x35a036(0x22d)]((0x0,_0x522d5d[_0x35a036(0x24d)])(_0x2e22ef)),this;}[_0x3e0496(0x230)](){const _0x16180c=_0x3e0496;return this[_0x16180c(0x2d9)]['apply']((0x0,_0x522d5d['clearAreaLineStyle'])()),this;}},_0x126367=class extends _0x3ee630{[_0x3e0496(0x28a)](_0x80b00){const _0x30608f=_0x3e0496;return this[_0x30608f(0x2d9)]['apply']((0x0,_0x522d5d[_0x30608f(0x28a)])(_0x80b00)),this;}[_0x3e0496(0x1f5)](){const _0x345d89=_0x3e0496;return this['_builder'][_0x345d89(0x22d)]((0x0,_0x522d5d['clearBubbleMapping'])()),this;}},_0x50ddfb=class extends _0x3ee630{[_0x3e0496(0x1d6)](_0x355a47,_0x3104de){const _0x14dae6=_0x3e0496;return this[_0x14dae6(0x2d9)][_0x14dae6(0x22d)]((0x0,_0x522d5d[_0x14dae6(0x1f1)])(_0x355a47,_0x3104de)),this;}[_0x3e0496(0x1e5)](_0x467996){const _0x93cc51=_0x3e0496;return this[_0x93cc51(0x2d9)][_0x93cc51(0x22d)]((0x0,_0x522d5d[_0x93cc51(0x2c3)])(_0x467996)),this;}['setSeriesAxis'](_0x7c870c,_0x40e7ce){const _0x5080e2=_0x3e0496;return this[_0x5080e2(0x2d9)][_0x5080e2(0x22d)]((0x0,_0x522d5d[_0x5080e2(0x241)])(_0x7c870c,_0x40e7ce)),this;}['resetSeriesAxis'](_0xdca865){const _0x47e469=_0x3e0496;return this[_0x47e469(0x2d9)]['apply']((0x0,_0x522d5d[_0x47e469(0x2c9)])(_0xdca865)),this;}},_0x46a09d=class extends _0x34c1f9{[_0x3e0496(0x224)](_0x46193e){const _0x55d625=_0x3e0496;return this[_0x55d625(0x2d9)][_0x55d625(0x22d)]((0x0,_0x522d5d[_0x55d625(0x275)])(_0x46193e)),this;}[_0x3e0496(0x2d4)](){const _0x5f40bb=_0x3e0496;return this['_builder'][_0x5f40bb(0x22d)]((0x0,_0x522d5d[_0x5f40bb(0x24a)])()),this;}['setUseAbsoluteValue'](_0x39d382){const _0x1f1605=_0x3e0496;return this[_0x1f1605(0x2d9)][_0x1f1605(0x22d)]((0x0,_0x522d5d[_0x1f1605(0x28b)])(_0x39d382)),this;}[_0x3e0496(0x2da)](){const _0x17161e=_0x3e0496;return this[_0x17161e(0x2d9)][_0x17161e(0x22d)]((0x0,_0x522d5d['resetUseAbsoluteValue'])()),this;}},_0x97e0ac=class extends _0x99b2ea{[_0x3e0496(0x1f4)](_0x159e03){const _0x48614d=_0x3e0496;return this[_0x48614d(0x2d9)][_0x48614d(0x22d)]((0x0,_0x522d5d[_0x48614d(0x1f4)])(_0x159e03)),this;}[_0x3e0496(0x294)](){const _0x33f138=_0x3e0496;return this[_0x33f138(0x2d9)][_0x33f138(0x22d)]((0x0,_0x522d5d['resetVisualMapType'])()),this;}[_0x3e0496(0x2c7)](_0x3b1f30,_0x2471e9){const _0x57e20f=_0x3e0496;return this[_0x57e20f(0x2d9)][_0x57e20f(0x22d)]((0x0,_0x522d5d[_0x57e20f(0x2c7)])(_0x3b1f30,_0x2471e9)),this;}['clearValueRange'](){const _0x1dd7af=_0x3e0496;return this[_0x1dd7af(0x2d9)]['apply']((0x0,_0x522d5d[_0x1dd7af(0x1db)])()),this;}['setCellLabel'](_0x77d9d1){const _0xcb2f50=_0x3e0496;return this[_0xcb2f50(0x2d9)][_0xcb2f50(0x22d)]((0x0,_0x522d5d['setCellLabel'])(_0x77d9d1)),this;}[_0x3e0496(0x268)](){const _0xc725ec=_0x3e0496;return this[_0xc725ec(0x2d9)][_0xc725ec(0x22d)]((0x0,_0x522d5d[_0xc725ec(0x268)])()),this;}[_0x3e0496(0x222)](_0x18b7e1){const _0x5c13e3=_0x3e0496;return this[_0x5c13e3(0x2d9)]['apply']((0x0,_0x522d5d['setValueUnit'])(_0x18b7e1)),this;}[_0x3e0496(0x285)](){const _0x753769=_0x3e0496;return this['_builder'][_0x753769(0x22d)]((0x0,_0x522d5d['clearValueUnit'])()),this;}},_0x8f6a44=class extends _0x3ee630{[_0x3e0496(0x2ba)](_0x2ba901){const _0x3ee634=_0x3e0496;return this[_0x3ee634(0x2d9)]['apply']((0x0,_0x522d5d[_0x3ee634(0x2ba)])(_0x2ba901)),this;}[_0x3e0496(0x1ea)](){const _0x5efdf2=_0x3e0496;return this[_0x5efdf2(0x2d9)][_0x5efdf2(0x22d)]((0x0,_0x522d5d['clearLineStyle'])()),this;}},_0x4c0a1f=class extends _0x3ee630{[_0x3e0496(0x209)](_0x2ee156){const _0x51d959=_0x3e0496;return this[_0x51d959(0x2d9)][_0x51d959(0x22d)]((0x0,_0x522d5d[_0x51d959(0x234)])(_0x2ee156)),this;}[_0x3e0496(0x24b)](){const _0x13e5e6=_0x3e0496;return this[_0x13e5e6(0x2d9)][_0x13e5e6(0x22d)]((0x0,_0x522d5d['clearParetoBarStyle'])()),this;}[_0x3e0496(0x211)](_0x111b87){const _0x11193f=_0x3e0496;return this[_0x11193f(0x2d9)][_0x11193f(0x22d)]((0x0,_0x522d5d[_0x11193f(0x211)])(_0x111b87)),this;}[_0x3e0496(0x2aa)](){const _0x2abad4=_0x3e0496;return this[_0x2abad4(0x2d9)]['apply']((0x0,_0x522d5d[_0x2abad4(0x2aa)])()),this;}['setIncludeZeroValues'](_0x308499){const _0x29d983=_0x3e0496;return this['_builder']['apply']((0x0,_0x522d5d[_0x29d983(0x225)])(_0x308499)),this;}[_0x3e0496(0x1e0)](){const _0x35c439=_0x3e0496;return this[_0x35c439(0x2d9)][_0x35c439(0x22d)]((0x0,_0x522d5d[_0x35c439(0x1e0)])()),this;}},_0x14170b=class extends _0x34c1f9{[_0x3e0496(0x297)](_0x3270ab){const _0x47fff2=_0x3e0496;return this[_0x47fff2(0x2d9)][_0x47fff2(0x22d)]((0x0,_0x522d5d[_0x47fff2(0x297)])(_0x3270ab)),this;}['clearDoughnutHole'](){const _0x340b68=_0x3e0496;return this[_0x340b68(0x2d9)][_0x340b68(0x22d)]((0x0,_0x522d5d[_0x340b68(0x2ac)])()),this;}['setExplosion'](_0x2385a1){const _0x2b0c60=_0x3e0496;return this[_0x2b0c60(0x2d9)]['apply']((0x0,_0x522d5d['setExplosion'])(_0x2385a1)),this;}['resetExplosion'](){const _0x116dce=_0x3e0496;return this['_builder'][_0x116dce(0x22d)]((0x0,_0x522d5d['resetExplosion'])()),this;}[_0x3e0496(0x2d2)](_0x2a6ad6){const _0x1aaa91=_0x3e0496;return this[_0x1aaa91(0x2d9)][_0x1aaa91(0x22d)]((0x0,_0x522d5d[_0x1aaa91(0x2d2)])(_0x2a6ad6)),this;}[_0x3e0496(0x1fb)](){const _0x88015a=_0x3e0496;return this[_0x88015a(0x2d9)][_0x88015a(0x22d)]((0x0,_0x522d5d[_0x88015a(0x1fb)])()),this;}[_0x3e0496(0x228)](_0x1a1c66){const _0x419197=_0x3e0496;return this[_0x419197(0x2d9)][_0x419197(0x22d)]((0x0,_0x522d5d[_0x419197(0x228)])(_0x1a1c66)),this;}[_0x3e0496(0x267)](){const _0x123157=_0x3e0496;return this[_0x123157(0x2d9)]['apply']((0x0,_0x522d5d[_0x123157(0x267)])()),this;}['setHalfPie'](_0x35ab19){const _0x304dfa=_0x3e0496;return this[_0x304dfa(0x2d9)][_0x304dfa(0x22d)]((0x0,_0x522d5d[_0x304dfa(0x257)])(_0x35ab19)),this;}[_0x3e0496(0x1f8)](){const _0xe720ae=_0x3e0496;return this[_0xe720ae(0x2d9)][_0xe720ae(0x22d)]((0x0,_0x522d5d[_0xe720ae(0x1f8)])()),this;}['setRosePie'](_0x3dfd00){const _0x13b6f6=_0x3e0496;return this[_0x13b6f6(0x2d9)]['apply']((0x0,_0x522d5d[_0x13b6f6(0x212)])(_0x3dfd00)),this;}[_0x3e0496(0x1e2)](){const _0x5f1bb9=_0x3e0496;return this[_0x5f1bb9(0x2d9)]['apply']((0x0,_0x522d5d[_0x5f1bb9(0x1e2)])()),this;}[_0x3e0496(0x272)](_0x22c44f){const _0x2ece19=_0x3e0496;return this[_0x2ece19(0x2d9)][_0x2ece19(0x22d)]((0x0,_0x522d5d[_0x2ece19(0x272)])(_0x22c44f)),this;}[_0x3e0496(0x21f)](){const _0xfbdd30=_0x3e0496;return this[_0xfbdd30(0x2d9)][_0xfbdd30(0x22d)]((0x0,_0x522d5d[_0xfbdd30(0x21f)])()),this;}[_0x3e0496(0x2e0)](_0x55acc4){const _0xee6065=_0x3e0496;return this[_0xee6065(0x2d9)][_0xee6065(0x22d)]((0x0,_0x522d5d[_0xee6065(0x2e0)])(_0x55acc4)),this;}['resetValueScale'](){const _0x149093=_0x3e0496;return this[_0x149093(0x2d9)][_0x149093(0x22d)]((0x0,_0x522d5d['resetValueScale'])()),this;}[_0x3e0496(0x287)](_0x47256c){const _0x22941f=_0x3e0496;return this[_0x22941f(0x2d9)][_0x22941f(0x22d)]((0x0,_0x522d5d['setValueSuffix'])(_0x47256c)),this;}['clearValueSuffix'](){const _0x46793e=_0x3e0496;return this['_builder'][_0x46793e(0x22d)]((0x0,_0x522d5d['clearValueSuffix'])()),this;}[_0x3e0496(0x2a8)](_0x2633c3){const _0x916df2=_0x3e0496;return this[_0x916df2(0x2d9)]['apply']((0x0,_0x522d5d[_0x916df2(0x2a8)])(_0x2633c3)),this;}['resetDecimalPlaces'](){const _0x19331b=_0x3e0496;return this[_0x19331b(0x2d9)][_0x19331b(0x22d)]((0x0,_0x522d5d[_0x19331b(0x20b)])()),this;}['setPieLabel'](_0x501b1d){const _0x338423=_0x3e0496;return this['_builder']['apply']((0x0,_0x522d5d[_0x338423(0x1e3)])(_0x501b1d)),this;}['clearPieLabel'](){const _0x287550=_0x3e0496;return this[_0x287550(0x2d9)][_0x287550(0x22d)]((0x0,_0x522d5d[_0x287550(0x1fa)])()),this;}},_0x2fc666=class extends _0x34c1f9{['setShape'](_0x5c20c4){const _0xf5b90f=_0x3e0496;return this['_builder']['apply']((0x0,_0x522d5d[_0xf5b90f(0x2c6)])(_0x5c20c4)),this;}['resetShape'](){return this['_builder']['apply']((0x0,_0x522d5d['resetRadarShape'])()),this;}['setFill'](_0x428765){const _0x4fba22=_0x3e0496;return this[_0x4fba22(0x2d9)][_0x4fba22(0x22d)]((0x0,_0x522d5d[_0x4fba22(0x27a)])(_0x428765)),this;}['resetFill'](){const _0x300f0f=_0x3e0496;return this['_builder']['apply']((0x0,_0x522d5d[_0x300f0f(0x2be)])()),this;}},_0x43ff77=class extends _0x34c1f9{[_0x3e0496(0x227)](_0x49b7a2){const _0x57e184=_0x3e0496;return this[_0x57e184(0x2d9)][_0x57e184(0x22d)]((0x0,_0x522d5d[_0x57e184(0x295)])(_0x49b7a2)),this;}[_0x3e0496(0x291)](){const _0x407bee=_0x3e0496;return this[_0x407bee(0x2d9)][_0x407bee(0x22d)]((0x0,_0x522d5d['resetRelationLayout'])()),this;}['setUseValueAsSymbolSize'](_0x34028b){const _0x381f6f=_0x3e0496;return this[_0x381f6f(0x2d9)][_0x381f6f(0x22d)]((0x0,_0x522d5d[_0x381f6f(0x23e)])(_0x34028b)),this;}[_0x3e0496(0x28f)](){const _0x1bdae5=_0x3e0496;return this[_0x1bdae5(0x2d9)][_0x1bdae5(0x22d)]((0x0,_0x522d5d[_0x1bdae5(0x28f)])()),this;}[_0x3e0496(0x1da)](_0x534c4a){const _0x5c7d9a=_0x3e0496;return this[_0x5c7d9a(0x2d9)][_0x5c7d9a(0x22d)]((0x0,_0x522d5d['setEmphasisEnabled'])(_0x534c4a)),this;}[_0x3e0496(0x218)](){const _0x478fb7=_0x3e0496;return this[_0x478fb7(0x2d9)][_0x478fb7(0x22d)]((0x0,_0x522d5d['resetEmphasisEnabled'])()),this;}[_0x3e0496(0x2c5)](_0x5ae0ef){const _0x270bca=_0x3e0496;return this[_0x270bca(0x2d9)][_0x270bca(0x22d)]((0x0,_0x522d5d['setRelationForce'])(_0x5ae0ef)),this;}[_0x3e0496(0x280)](){const _0x19c75f=_0x3e0496;return this[_0x19c75f(0x2d9)]['apply']((0x0,_0x522d5d[_0x19c75f(0x233)])()),this;}[_0x3e0496(0x261)](_0x53194a){const _0x5415e8=_0x3e0496;return this[_0x5415e8(0x2d9)]['apply']((0x0,_0x522d5d[_0x5415e8(0x261)])(_0x53194a)),this;}['resetCircularLabelRotation'](){const _0x8cad55=_0x3e0496;return this[_0x8cad55(0x2d9)]['apply']((0x0,_0x522d5d[_0x8cad55(0x286)])()),this;}[_0x3e0496(0x2c2)](_0x4769bc){const _0x3877be=_0x3e0496;return this[_0x3877be(0x2d9)]['apply']((0x0,_0x522d5d[_0x3877be(0x1dc)])(_0x4769bc)),this;}[_0x3e0496(0x292)](){const _0x202ea8=_0x3e0496;return this[_0x202ea8(0x2d9)]['apply']((0x0,_0x522d5d[_0x202ea8(0x216)])()),this;}},_0x16d242=class extends _0x3ee630{[_0x3e0496(0x2dd)](_0x10c2e2){const _0x30f04d=_0x3e0496;return this[_0x30f04d(0x2d9)]['apply']((0x0,_0x522d5d[_0x30f04d(0x2dd)])(_0x10c2e2)),this;}[_0x3e0496(0x2cc)](){const _0x7449a6=_0x3e0496;return this[_0x7449a6(0x2d9)][_0x7449a6(0x22d)]((0x0,_0x522d5d['clearScatterMapping'])()),this;}},_0x4865d8=class extends _0x3ee630{[_0x3e0496(0x21e)](){const _0x4f0f8b=_0x3e0496;var _0x2e02ec,_0x51130b;return(_0x2e02ec=(_0x51130b=this[_0x4f0f8b(0x1ee)]()[_0x4f0f8b(0x205)])==null?void 0x0:_0x51130b['pointRoles'])==null?[]:_0x2e02ec;}[_0x3e0496(0x1e6)](_0x8ac927){const _0xb73448=_0x3e0496;let _0x182333=this[_0xb73448(0x1ee)]()['series'],_0x541309=new Map();_0x8ac927['forEach']((_0x28cdba,_0x15e30c)=>{const _0x25b882=_0xb73448;if(!Number[_0x25b882(0x1ff)](_0x28cdba[_0x25b882(0x262)])||_0x28cdba[_0x25b882(0x262)]<0x0)throw Error('pointRoles.'+_0x15e30c+_0x25b882(0x249));let _0x348ee4=typeof _0x28cdba['series']==_0x25b882(0x22b)?_0x4388b6(_0x28cdba[_0x25b882(0x213)],_0x15e30c):_0x46b78f(_0x28cdba['series'][_0x25b882(0x2e2)],_0x182333,_0x15e30c);_0x541309['set'](_0x348ee4+':'+_0x28cdba[_0x25b882(0x262)],{..._0x28cdba,'series':_0x348ee4});});let _0x85fb0a=[..._0x541309[_0xb73448(0x290)]()][_0xb73448(0x1f3)]((_0x33f3f8,_0x51a266)=>_0x33f3f8[_0xb73448(0x213)]-_0x51a266[_0xb73448(0x213)]||_0x33f3f8[_0xb73448(0x262)]-_0x51a266[_0xb73448(0x262)]);return this[_0xb73448(0x2d9)][_0xb73448(0x22d)]((0x0,_0x522d5d['setWaterfallPointRoles'])(_0x85fb0a)),this;}[_0x3e0496(0x277)](_0x295ac9){const _0x2fc672=_0x3e0496;return this[_0x2fc672(0x2d9)][_0x2fc672(0x22d)]((0x0,_0x522d5d[_0x2fc672(0x27f)])(_0x295ac9)),this;}[_0x3e0496(0x25f)](){const _0x5d9aec=_0x3e0496;return this[_0x5d9aec(0x2d9)][_0x5d9aec(0x22d)]((0x0,_0x522d5d[_0x5d9aec(0x259)])()),this;}[_0x3e0496(0x25e)](_0x12a1f6){const _0x3397cf=_0x3e0496;return this[_0x3397cf(0x2d9)][_0x3397cf(0x22d)]((0x0,_0x522d5d[_0x3397cf(0x2ad)])(_0x12a1f6)),this;}[_0x3e0496(0x1e1)](){const _0x29c670=_0x3e0496;return this[_0x29c670(0x2d9)]['apply']((0x0,_0x522d5d[_0x29c670(0x2b0)])()),this;}[_0x3e0496(0x204)](_0x1c2c7d){const _0x2fb57e=_0x3e0496;return this['_builder'][_0x2fb57e(0x22d)]((0x0,_0x522d5d[_0x2fb57e(0x204)])(_0x1c2c7d)),this;}['resetUseSubtotal'](){const _0xe28321=_0x3e0496;return this['_builder'][_0xe28321(0x22d)]((0x0,_0x522d5d['resetUseSubtotal'])()),this;}[_0x3e0496(0x1f2)](_0x30908d,_0xd890c8){const _0x9d5052=_0x3e0496;return this[_0x9d5052(0x2d9)][_0x9d5052(0x22d)]((0x0,_0x522d5d[_0x9d5052(0x27e)])(_0x30908d,_0x522d5d['ChartWaterfallStyleTarget']['Positive'],_0xd890c8)),this;}['clearPositiveStyle'](_0x21bd9f){const _0x364568=_0x3e0496;return this[_0x364568(0x2d9)]['apply']((0x0,_0x522d5d[_0x364568(0x2c8)])(_0x21bd9f,_0x522d5d[_0x364568(0x279)][_0x364568(0x1fd)])),this;}[_0x3e0496(0x1d8)](_0x2713fd,_0x574324){const _0x4a334c=_0x3e0496;return this['_builder'][_0x4a334c(0x22d)]((0x0,_0x522d5d['setWaterfallStyle'])(_0x2713fd,_0x522d5d['ChartWaterfallStyleTarget'][_0x4a334c(0x243)],_0x574324)),this;}[_0x3e0496(0x2de)](_0x22c76d){const _0x2d1ee8=_0x3e0496;return this[_0x2d1ee8(0x2d9)][_0x2d1ee8(0x22d)]((0x0,_0x522d5d[_0x2d1ee8(0x2c8)])(_0x22c76d,_0x522d5d[_0x2d1ee8(0x279)][_0x2d1ee8(0x243)])),this;}[_0x3e0496(0x25b)](_0x1d92dc,_0x9f9165){const _0x22f8c5=_0x3e0496;return this['_builder'][_0x22f8c5(0x22d)]((0x0,_0x522d5d[_0x22f8c5(0x27e)])(_0x1d92dc,_0x522d5d[_0x22f8c5(0x279)]['Subtotal'],_0x9f9165)),this;}['clearSubtotalStyle'](_0x113ac9){const _0x2ef046=_0x3e0496;return this[_0x2ef046(0x2d9)]['apply']((0x0,_0x522d5d[_0x2ef046(0x2c8)])(_0x113ac9,_0x522d5d[_0x2ef046(0x279)][_0x2ef046(0x1d4)])),this;}};function _0x4388b6(_0x1fb58b,_0x5674a8){const _0x462513=_0x3e0496;if(!Number['isInteger'](_0x1fb58b)||_0x1fb58b<0x0)throw Error(_0x462513(0x2ca)+_0x5674a8+_0x462513(0x289));return _0x1fb58b;}function _0x46b78f(_0x44417c,_0x3b9b1e,_0x15cdce){const _0x21e9a4=_0x3e0496;let _0x59c5b1=Object[_0x21e9a4(0x258)](_0x3b9b1e)[_0x21e9a4(0x21b)](([,_0x31c738])=>(_0x31c738==null?void 0x0:_0x31c738['name'])===_0x44417c);if(_0x59c5b1[_0x21e9a4(0x23d)]!==0x1)throw Error(_0x21e9a4(0x2ca)+_0x15cdce+_0x21e9a4(0x2d7)+_0x44417c+'\x22.');return Number(_0x59c5b1[0x0][0x0]);}var _0x596a61=class extends _0x34c1f9{['setShape'](_0x4fb43f){const _0x4ab0cc=_0x3e0496;return this[_0x4ab0cc(0x2d9)][_0x4ab0cc(0x22d)]((0x0,_0x522d5d[_0x4ab0cc(0x25a)])(_0x4fb43f)),this;}[_0x3e0496(0x1d9)](){const _0x2f167d=_0x3e0496;return this['_builder']['apply']((0x0,_0x522d5d[_0x2f167d(0x21a)])()),this;}['setMaskImage'](_0x1997c4){const _0x2c5c07=_0x3e0496;return this[_0x2c5c07(0x2d9)][_0x2c5c07(0x22d)]((0x0,_0x522d5d[_0x2c5c07(0x2a0)])(_0x1997c4)),this;}['clearMaskImage'](){const _0x2d046b=_0x3e0496;return this[_0x2d046b(0x2d9)]['apply']((0x0,_0x522d5d[_0x2d046b(0x20a)])()),this;}[_0x3e0496(0x2bd)](_0x1e52f5){return this['_builder']['apply']((0x0,_0x522d5d['setWordCloudRepeat'])(_0x1e52f5)),this;}[_0x3e0496(0x273)](){const _0x2666c7=_0x3e0496;return this[_0x2666c7(0x2d9)][_0x2666c7(0x22d)]((0x0,_0x522d5d[_0x2666c7(0x221)])()),this;}};let _0x442f39={[_0x522d5d['ChartTypeString'][_0x3e0496(0x25c)]]:_0x8f6a44,[_0x522d5d['ChartTypeString'][_0x3e0496(0x2b3)]]:_0x3ee630,[_0x522d5d[_0x3e0496(0x298)]['ColumnStacked']]:_0x3ee630,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x265)]]:_0x3ee630,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x255)]]:_0x3ee630,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x2b1)]]:_0x3ee630,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x226)]]:_0x3ee630,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x231)]]:_0x14170b,[_0x522d5d[_0x3e0496(0x298)]['Donut']]:_0x14170b,[_0x522d5d[_0x3e0496(0x298)]['Area']]:_0x4c69ad,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x2bf)]]:_0x4c69ad,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x29f)]]:_0x4c69ad,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x266)]]:_0x2fc666,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x206)]]:_0x16d242,[_0x522d5d['ChartTypeString'][_0x3e0496(0x2e6)]]:_0x50ddfb,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x2cb)]]:_0x596a61,[_0x522d5d['ChartTypeString'][_0x3e0496(0x2bb)]]:_0x46a09d,[_0x522d5d['ChartTypeString'][_0x3e0496(0x2a1)]]:_0x126367,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x24c)]]:_0x43ff77,[_0x522d5d[_0x3e0496(0x298)]['Waterfall']]:_0x4865d8,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x2a7)]]:_0x4c0a1f,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x296)]]:_0x34c1f9,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x28d)]]:_0x97e0ac,[_0x522d5d[_0x3e0496(0x298)][_0x3e0496(0x2af)]]:_0x3ee630};for(let _0x59ff4c of Object['keys'](_0x442f39))_0x10e0a0(_0x59ff4c,_0x442f39[_0x59ff4c]);var _0x34c4cc=class extends _0x3c6a66[_0x3e0496(0x26f)]{get['ChartAggregationTarget'](){const _0x12d2da=_0x3e0496;return _0x522d5d[_0x12d2da(0x2df)];}get[_0x3e0496(0x1e7)](){const _0x4a8a3d=_0x3e0496;return _0x522d5d[_0x4a8a3d(0x1e7)];}get[_0x3e0496(0x2b9)](){const _0x248f40=_0x3e0496;return _0x522d5d[_0x248f40(0x2b9)];}get[_0x3e0496(0x2db)](){const _0x340bc7=_0x3e0496;return _0x522d5d[_0x340bc7(0x2db)];}get[_0x3e0496(0x200)](){const _0x37a4c6=_0x3e0496;return _0x522d5d[_0x37a4c6(0x200)];}get[_0x3e0496(0x20f)](){const _0x5a276e=_0x3e0496;return _0x522d5d[_0x5a276e(0x20f)];}get[_0x3e0496(0x264)](){return _0x522d5d['ChartAxisTarget'];}get[_0x3e0496(0x2d6)](){return _0x522d5d['ChartAxisTickPosition'];}get[_0x3e0496(0x2e4)](){const _0x5ea145=_0x3e0496;return _0x522d5d[_0x5ea145(0x2e4)];}get[_0x3e0496(0x1d3)](){const _0x27950b=_0x3e0496;return _0x522d5d[_0x27950b(0x1d3)];}get[_0x3e0496(0x22e)](){const _0x7001d7=_0x3e0496;return _0x522d5d[_0x7001d7(0x22e)];}get[_0x3e0496(0x210)](){const _0x4e3ef4=_0x3e0496;return _0x522d5d[_0x4e3ef4(0x210)];}get[_0x3e0496(0x253)](){return _0x522d5d['ChartAllSeriesStyleTarget'];}get['ChartSeriesTypeString'](){const _0x9e47a6=_0x3e0496;return _0x522d5d[_0x9e47a6(0x299)];}get[_0x3e0496(0x298)](){return _0x522d5d['ChartTypeString'];}get[_0x3e0496(0x1d5)](){const _0x50b154=_0x3e0496;return _0x522d5d[_0x50b154(0x1d5)];}get[_0x3e0496(0x279)](){const _0x3cefdb=_0x3e0496;return _0x522d5d[_0x3cefdb(0x279)];}get[_0x3e0496(0x2a5)](){return _0x522d5d['ChartWaterfallPointRole'];}get[_0x3e0496(0x250)](){return _0x522d5d['ChartWordCloudShapeSource'];}get[_0x3e0496(0x229)](){const _0x286c8d=_0x3e0496;return _0x522d5d[_0x286c8d(0x229)];}get['InvalidValueType'](){return _0x522d5d['InvalidValueType'];}get[_0x3e0496(0x2ab)](){const _0x50c490=_0x3e0496;return _0x522d5d[_0x50c490(0x2ab)];}get[_0x3e0496(0x27d)](){const _0x48dafc=_0x3e0496;return _0x522d5d[_0x48dafc(0x27d)];}get['LinePointShape'](){const _0x215be6=_0x3e0496;return _0x522d5d[_0x215be6(0x1fe)];}get[_0x3e0496(0x254)](){const _0x30097f=_0x3e0496;return _0x522d5d[_0x30097f(0x254)];}get[_0x3e0496(0x2b4)](){const _0x4fc59c=_0x3e0496;return _0x522d5d[_0x4fc59c(0x2b4)];}get[_0x3e0496(0x21d)](){const _0x57835f=_0x3e0496;return _0x522d5d[_0x57835f(0x21d)];}get['SelectModeEnum'](){return _0x522d5d['SelectModeEnum'];}get['SeriesLabelPosition'](){const _0x36a654=_0x3e0496;return _0x522d5d[_0x36a654(0x24f)];}get[_0x3e0496(0x29d)](){const _0x30ca9d=_0x3e0496;return _0x522d5d[_0x30ca9d(0x29d)];}get['WaterfallStackTypeEnum'](){const _0x2daf37=_0x3e0496;return _0x522d5d[_0x2daf37(0x2b7)];}get['WordCloudShapeEnum'](){const _0x12a601=_0x3e0496;return _0x522d5d[_0x12a601(0x270)];}};_0x3c6a66[_0x3e0496(0x26f)][_0x3e0496(0x240)](_0x34c4cc);var _0x4689ba=class{},_0x1eeb19=class{constructor(_0x50790b){const _0xa9dc8c=_0x3e0496;this[_0xa9dc8c(0x260)]=_0x50790b,_0x3a5008(this,_0xa9dc8c(0x2a3),new WeakMap());}[_0x3e0496(0x220)](_0x12f4e0){const _0x3a7ece=_0x3e0496;let _0x779941=this[_0x3a7ece(0x2a3)][_0x3a7ece(0x20c)](_0x12f4e0);if(_0x779941)return _0x779941;let _0x47d79e=this[_0x3a7ece(0x260)](_0x12f4e0);return this[_0x3a7ece(0x2a3)][_0x3a7ece(0x27b)](_0x12f4e0,_0x47d79e),_0x47d79e;}[_0x3e0496(0x235)](_0x5bee64,_0x333dd1){let _0x3d00f0={'builder':_0x5bee64,'wrap':_0xafb92=>new(this['compose'](_0xafb92))(_0x3d00f0)};return new(this['compose'](_0x333dd1))(_0x3d00f0);}};_0x25ec51['CHART_FACADE_RANDOM_ID_LENGTH']=0x6,_0x25ec51['FAreaChartBuilder']=_0x4c69ad,_0x25ec51[_0x3e0496(0x237)]=_0x99b2ea,_0x25ec51['FBubbleChartBuilder']=_0x126367,_0x25ec51[_0x3e0496(0x2a4)]=_0x3ee630,_0x25ec51['FChartBase']=_0xf2456a,_0x25ec51['FChartBuilderBase']=_0x34c1f9,_0x25ec51[_0x3e0496(0x2ce)]=_0x4689ba,_0x25ec51[_0x3e0496(0x219)]=_0x50ddfb,_0x25ec51[_0x3e0496(0x207)]=_0x46a09d,_0x25ec51[_0x3e0496(0x236)]=_0x97e0ac,_0x25ec51[_0x3e0496(0x23a)]=_0x8f6a44,_0x25ec51[_0x3e0496(0x245)]=_0x4c0a1f,_0x25ec51['FPieChartBuilder']=_0x14170b,_0x25ec51[_0x3e0496(0x1fc)]=_0x2fc666,_0x25ec51[_0x3e0496(0x271)]=_0x43ff77,_0x25ec51[_0x3e0496(0x1e8)]=_0x16d242,_0x25ec51[_0x3e0496(0x256)]=_0x4865d8,_0x25ec51['FWordCloudChartBuilder']=_0x596a61,_0x25ec51['HostBuilderComposer']=_0x1eeb19,_0x25ec51[_0x3e0496(0x2a9)]=_0x46a57c,_0x25ec51[_0x3e0496(0x1d2)]=_0x16b3f5;}));function _0x1b3e(){const _0x4fd56d=['PieLabelPosition','Bar','FWaterfallChartBuilder','setHalfPie','entries','clearWaterfallConnector','setWordCloudShape','setSubtotalStyle','Line','setUseDateAxis','setStackType','clearConnector','_compose','setCircularLabelRotation','dataPointIndex','setBar','ChartAxisTarget','ColumnPercentStacked','Radar','resetPaddingAngleEnabled','clearCellLabel','5570RbhLSI','Module','clearYAxisTitle','@univerjs/core/facade','setRightYAxisTitle','setInvalidValueStrategy','FEnum','WordCloudShapeEnum','FRelationChartBuilder','setLabelLineVisible','resetRepeat','string','setFunnelGap','setAxisPointer','setConnector','21357JhyuKh','ChartWaterfallStyleTarget','setRadarFill','set','clearRightYAxis','LegendPositionEnum','setWaterfallStyle','setWaterfallConnector','clearForce','1660695ZVjJMt','resetInvalidValueStrategy','prototype','removeTrendline','clearValueUnit','resetCircularLabelRotation','setValueSuffix','463131kHVusE','\x20has\x20an\x20invalid\x20series\x20index.','setBubbleMapping','setUseAbsoluteValue','clearAxisTitle','Heatmap','clearXAxisTitle','resetUseValueAsSymbolSize','values','resetLayout','resetNodeShape','clearYAxis','resetVisualMapType','setRelationLayout','Sankey','setDoughnutHole','ChartTypeString','ChartSeriesTypeString','mergePending','ChartBuilderFacadeContextAccess','Chart\x20builder\x20is\x20not\x20registered:\x20','TitlePositionEnum','clearSubtitle','AreaPercentStacked','setMaskImage','Bubble','amd','_cache','FCartesianChartBuilder','ChartWaterfallPointRole','setAllSeriesStyle','Pareto','setDecimalPlaces','getChartBuilderConstructor','clearCumulativeLineStyle','LabelAlignEnum','clearDoughnutHole','setWaterfallStackType','resetUseDateAxis','Boxplot','resetWaterfallStackType','BarStacked','_context','Column','RadarShape','2514215iqXrHX','@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.','WaterfallStackTypeEnum','setTrendline','ChartTrendlineType','setLineStyle','Funnel','default','setRepeat','resetRadarFill','AreaStacked','setRightYAxis','commit','setNodeShape','resetCombinationSeriesType','clearCategoryField','setForce','setRadarShape','setValueRange','clearWaterfallStyle','resetCombinationSeriesAxis','pointRoles.','WordCloud','clearScatterMapping','clearAppearance','FChartsBase','resolveData','clearMarkLines','setPalette','setSliceBorderColor','builder','resetGap','2536888KHSRBB','ChartAxisTickPosition','\x20must\x20resolve\x20to\x20exactly\x20one\x20series\x20named\x20\x22','setLegend','_builder','resetUseAbsoluteValue','ChartAppearanceTarget','clearBar','setScatterMapping','clearNegativeStyle','ChartAggregationTarget','setValueScale','clearTrendlines','name','object','ChartMarkLineLabelPosition','setTheme','Combination','iterator','getChartBuilderPendingConfig','ChartSemanticAxis','Subtotal','ChartVisualMapType','setSeriesType','defineProperty','setNegativeStyle','resetShape','setEmphasisEnabled','clearValueRange','setRelationNodeShape','setYAxis','toPrimitive','setSubtitle','resetIncludeZeroValues','resetStackType','resetRosePie','setPieLabel','call','resetSeriesType','setPointRoles','ChartAxisDimension','FScatterChartBuilder','clearTheme','clearLineStyle','getPendingConfig','setValueFields','toStringTag','describe','clearRightYAxisTitle','clearAggregation','setCombinationSeriesType','setPositiveStyle','sort','setVisualMapType','clearBubbleMapping','setXAxis','UniverCoreFacade','resetHalfPie','clearTitle','clearPieLabel','clearSliceBorderColor','FRadarChartBuilder','Positive','LinePointShape','isInteger','ChartAxisName','symbol','clearSeries','setYAxisTitle','setUseSubtotal','waterfall','Scatter','FFunnelChartBuilder','_setType','setBarStyle','clearMaskImage','resetDecimalPlaces','get','@univerjs-pro/engine-chart','setAppearance','ChartAxisPointerTarget','ChartSeriesClearTarget','setCumulativeLineStyle','setRosePie','series','6138RpRFfL','_record','resetRelationNodeShape','774jBvFVH','resetEmphasisEnabled','FCombinationChartBuilder','resetWordCloudShape','filter','function','RelationChartLayoutEnum','getPointRoles','resetLabelLineVisible','compose','resetWordCloudRepeat','setValueUnit','exportImage','setGap','setIncludeZeroValues','BarPercentStacked','setLayout','setPaddingAngleEnabled','AreaLineStyle','clearAxisPointer','number','setType','apply','ChartSeriesAxis','wrap','clearAreaLineStyle','Pie','clearValueFields','clearRelationForce','setParetoBarStyle','create','FHeatmapChartBuilder','FAxisChartBuilder','setAxisTitle','setCategoryField','FLineChartBuilder','clearXAxis','setTitle','length','setUseValueAsSymbolSize','1270jtuaCp','extend','setCombinationSeriesAxis','clearAllSeriesStyle','Negative','UniverProEngineChart','FParetoChartBuilder','2zIosui','adapter','setSeries','\x20has\x20an\x20invalid\x20data-point\x20index.','resetFunnelGap','clearBarStyle','Relation','setAreaLineStyle','setMarkLines','SeriesLabelPosition','ChartWordCloudShapeSource','1580KZpIBg','clearPalette','ChartAllSeriesStyleTarget'];_0x1b3e=function(){return _0x4fd56d;};return _0x1b3e();}
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();}