@univerjs-pro/sheets-chart-ui 0.5.5 → 0.6.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/lib/cjs/facade.js +1 -1
  2. package/lib/cjs/index.js +1 -1
  3. package/lib/cjs/locale/en-US.js +1 -1
  4. package/lib/cjs/locale/fa-IR.js +1 -1
  5. package/lib/cjs/locale/fr-FR.js +1 -1
  6. package/lib/cjs/locale/ru-RU.js +1 -1
  7. package/lib/cjs/locale/vi-VN.js +1 -1
  8. package/lib/cjs/locale/zh-CN.js +1 -1
  9. package/lib/cjs/locale/zh-TW.js +1 -1
  10. package/lib/es/facade.js +1 -1
  11. package/lib/es/index.js +1 -1
  12. package/lib/es/locale/en-US.js +1 -1
  13. package/lib/es/locale/fa-IR.js +1 -1
  14. package/lib/es/locale/fr-FR.js +1 -1
  15. package/lib/es/locale/ru-RU.js +1 -1
  16. package/lib/es/locale/vi-VN.js +1 -1
  17. package/lib/es/locale/zh-CN.js +1 -1
  18. package/lib/es/locale/zh-TW.js +1 -1
  19. package/lib/types/facade/chart-builder/chart-builder-base.d.ts +290 -140
  20. package/lib/types/facade/chart-builder/line-chart-builder.d.ts +28 -8
  21. package/lib/types/facade/chart-builder/pie-chart-builder.d.ts +15 -7
  22. package/lib/types/facade/chart-builder/radar-chart-builder.d.ts +19 -3
  23. package/lib/types/facade/chart-builder/types.d.ts +12 -0
  24. package/lib/types/facade/f-chart.d.ts +34 -13
  25. package/lib/types/facade/f-enum.d.ts +135 -0
  26. package/lib/types/facade/f-worksheet.d.ts +13 -1
  27. package/lib/types/facade/index.d.ts +4 -0
  28. package/lib/types/views/chart-edit-panel/ChartEditPanel.d.ts +1 -2
  29. package/lib/types/views/chart-edit-panel/ChartSelect.d.ts +1 -2
  30. package/lib/types/views/chart-edit-panel/RadarChartOptionsEdit.d.ts +1 -2
  31. package/lib/types/views/chart-edit-panel/button-switch/ButtonSwitch.d.ts +1 -2
  32. package/lib/types/views/chart-edit-panel/color-picker-control/index.d.ts +1 -2
  33. package/lib/types/views/chart-edit-panel/data-tab-panel/DataTabPanel.d.ts +2 -3
  34. package/lib/types/views/chart-edit-panel/dropdown-menu/index.d.ts +1 -1
  35. package/lib/types/views/chart-edit-panel/font-format-bar/FontFormatBar.d.ts +1 -2
  36. package/lib/types/views/chart-edit-panel/style-tab-panel/AxisOptionsEdit.d.ts +1 -2
  37. package/lib/types/views/chart-edit-panel/style-tab-panel/DataLabelOptions.d.ts +1 -2
  38. package/lib/types/views/chart-edit-panel/style-tab-panel/IndicatorLine.d.ts +1 -2
  39. package/lib/types/views/chart-edit-panel/style-tab-panel/PieChartStyleEdit.d.ts +1 -2
  40. package/lib/types/views/chart-edit-panel/style-tab-panel/StyleTabPanel.d.ts +1 -2
  41. package/lib/types/views/chart-edit-panel/style-tab-panel/grid-line-and-tick-options/GridLineAndTickOptions.d.ts +1 -2
  42. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/CombinationChartTypeSelect.d.ts +1 -2
  43. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/DataPointsEdit.d.ts +1 -2
  44. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/RadarPoints.d.ts +1 -2
  45. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/SeriesStyleEdit.d.ts +1 -2
  46. package/lib/types/views/chart-edit-panel/style-tab-panel/series-style-edit/widgets.d.ts +4 -5
  47. package/lib/umd/facade.js +1 -1
  48. package/lib/umd/index.js +1 -1
  49. package/lib/umd/locale/en-US.js +1 -1
  50. package/lib/umd/locale/fa-IR.js +1 -1
  51. package/lib/umd/locale/fr-FR.js +1 -1
  52. package/lib/umd/locale/ru-RU.js +1 -1
  53. package/lib/umd/locale/vi-VN.js +1 -1
  54. package/lib/umd/locale/zh-CN.js +1 -1
  55. package/lib/umd/locale/zh-TW.js +1 -1
  56. package/package.json +20 -20
@@ -1,6 +1,5 @@
1
1
  import { ChartBorderDashType } from '@univerjs-pro/sheets-chart';
2
2
  import { LocaleService } from '@univerjs/core';
3
- import { default as React } from 'react';
4
3
  interface IIndicatorChangeInfo {
5
4
  indicatorLabelColor?: string;
6
5
  indicatorLineType?: ChartBorderDashType;
@@ -15,5 +14,5 @@ export interface IIndicatorLineProps {
15
14
  indicatorLabelTextColor: string;
16
15
  onChange?: (v: IIndicatorChangeInfo) => void;
17
16
  }
18
- export declare const IndicatorLine: (props: IIndicatorLineProps) => React.JSX.Element;
17
+ export declare const IndicatorLine: (props: IIndicatorLineProps) => import("react/jsx-runtime").JSX.Element;
19
18
  export {};
@@ -1,10 +1,9 @@
1
1
  import { LocaleService, Nullable } from '@univerjs/core';
2
2
  import { SheetsChartUIService } from '../../../services/sheets-chart-ui.service';
3
3
  import { ChartTypeBits } from '@univerjs-pro/sheets-chart';
4
- import { default as React } from 'react';
5
4
  export declare const PieChartStyleEdit: (props: {
6
5
  chartType: Nullable<ChartTypeBits>;
7
6
  service: SheetsChartUIService;
8
7
  localeService: LocaleService;
9
8
  onChartTypeChange?: (chartType: ChartTypeBits) => void;
10
- }) => React.JSX.Element;
9
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,2 @@
1
- import { default as React } from 'react';
2
1
  /** If has right y axis we need to rename vertical axis to left axis */
3
- export declare const StyleTabPanel: () => React.JSX.Element;
2
+ export declare const StyleTabPanel: () => import("react/jsx-runtime").JSX.Element;
@@ -1,11 +1,10 @@
1
1
  import { LocaleService, Nullable } from '@univerjs/core';
2
2
  import { IRuntimeAxis } from '@univerjs-pro/sheets-chart';
3
3
  import { SheetsChartUIService } from '../../../../services/sheets-chart-ui.service';
4
- import { default as React } from 'react';
5
4
  export interface IGridLineAndTickOptionsProps {
6
5
  className?: string;
7
6
  service: SheetsChartUIService;
8
7
  localeService: LocaleService;
9
8
  runtimeAxes: Nullable<IRuntimeAxis[]>;
10
9
  }
11
- export declare const GridLineAndTickOptions: (props: IGridLineAndTickOptionsProps) => React.JSX.Element;
10
+ export declare const GridLineAndTickOptions: (props: IGridLineAndTickOptionsProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,9 +1,8 @@
1
1
  import { LocaleService } from '@univerjs/core';
2
2
  import { SheetsChartUIService } from '../../../../services/sheets-chart-ui.service';
3
- import { default as React } from 'react';
4
3
  export interface ICombinationChartTypeSelectProps {
5
4
  localeService: LocaleService;
6
5
  service: SheetsChartUIService;
7
6
  seriesId: string;
8
7
  }
9
- export declare const CombinationChartTypeSelect: (props: ICombinationChartTypeSelectProps) => React.JSX.Element;
8
+ export declare const CombinationChartTypeSelect: (props: ICombinationChartTypeSelectProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,6 @@
1
1
  import { LocaleService, Nullable } from '@univerjs/core';
2
2
  import { DeepPartial, ISeriesStyle, ChartTypeBits } from '@univerjs-pro/sheets-chart';
3
3
  import { IChartOptionType } from '../../../../services/sheets-chart-ui.service';
4
- import { default as React } from 'react';
5
4
  export interface IDataPointsEditProps {
6
5
  chartType: Nullable<ChartTypeBits>;
7
6
  data: DeepPartial<ISeriesStyle['dataPoints']>;
@@ -9,4 +8,4 @@ export interface IDataPointsEditProps {
9
8
  localeService: LocaleService;
10
9
  onChange?: (style: DeepPartial<ISeriesStyle['dataPoints']>) => void;
11
10
  }
12
- export declare const DataPointsEdit: (props: IDataPointsEditProps) => React.JSX.Element;
11
+ export declare const DataPointsEdit: (props: IDataPointsEditProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,10 +1,9 @@
1
1
  import { DeepPartial, IPointStyle, ISeriesStyle } from '@univerjs-pro/sheets-chart';
2
2
  import { LocaleService } from '@univerjs/core';
3
- import { default as React } from 'react';
4
3
  interface IRadarSeriesPointProps {
5
4
  localeService: LocaleService;
6
5
  setSeriesStyle: (style: DeepPartial<ISeriesStyle>) => void;
7
6
  pointStyle?: IPointStyle;
8
7
  }
9
- export declare const RadarSeriesPoint: (props: IRadarSeriesPointProps) => React.JSX.Element;
8
+ export declare const RadarSeriesPoint: (props: IRadarSeriesPointProps) => import("react/jsx-runtime").JSX.Element;
10
9
  export {};
@@ -1,10 +1,9 @@
1
1
  import { LocaleService, Nullable } from '@univerjs/core';
2
2
  import { SheetsChartUIService } from '../../../../services/sheets-chart-ui.service';
3
3
  import { ChartTypeBits } from '@univerjs-pro/sheets-chart';
4
- import { default as React } from 'react';
5
4
  export interface ISeriesStyleEditProps {
6
5
  chartType: Nullable<ChartTypeBits>;
7
6
  service: SheetsChartUIService;
8
7
  localeService: LocaleService;
9
8
  }
10
- export declare const SeriesStyleEdit: (props: ISeriesStyleEditProps) => React.JSX.Element;
9
+ export declare const SeriesStyleEdit: (props: ISeriesStyleEditProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,5 @@
1
1
  import { DeepPartial, IPointStyle, ISeriesStyle, ChartTypeBits } from '@univerjs-pro/sheets-chart';
2
2
  import { LocaleService, Nullable } from '@univerjs/core';
3
- import { default as React } from 'react';
4
3
  export interface IWidgetProps {
5
4
  localeService: LocaleService;
6
5
  onSeriesStyleChange?: (style: DeepPartial<ISeriesStyle>) => void;
@@ -11,7 +10,7 @@ export interface IFillOptions extends IWidgetProps {
11
10
  controlName: string;
12
11
  chartType: Nullable<ChartTypeBits>;
13
12
  }
14
- export declare const FillOptions: (props: IFillOptions) => React.JSX.Element;
13
+ export declare const FillOptions: (props: IFillOptions) => import("react/jsx-runtime").JSX.Element;
15
14
  export interface IBorderOptionsProps extends IWidgetProps {
16
15
  borderStyle: ISeriesStyle['border'];
17
16
  controlName: string;
@@ -19,16 +18,16 @@ export interface IBorderOptionsProps extends IWidgetProps {
19
18
  allSeriesBorderStyle: Nullable<DeepPartial<ISeriesStyle>['border']>;
20
19
  isLineOrAreaChart: boolean;
21
20
  }
22
- export declare const BorderOptions: (props: IBorderOptionsProps) => React.JSX.Element;
21
+ export declare const BorderOptions: (props: IBorderOptionsProps) => import("react/jsx-runtime").JSX.Element;
23
22
  type PointStyleKeys = keyof IPointStyle;
24
23
  export interface ILinePointOptionsProps extends Omit<IWidgetProps, 'onSeriesStyleChange'> {
25
24
  pointStyle: ISeriesStyle['point'] | IPointStyle;
26
25
  controls: Array<PointStyleKeys>;
27
26
  onChange?: <K extends PointStyleKeys = PointStyleKeys>(key: K, value: IPointStyle[K]) => void;
28
27
  }
29
- export declare const LinePointOptions: (props: ILinePointOptionsProps) => React.JSX.Element;
28
+ export declare const LinePointOptions: (props: ILinePointOptionsProps) => import("react/jsx-runtime").JSX.Element;
30
29
  export interface IAxisControlProps extends IWidgetProps {
31
30
  rightYAxis: boolean;
32
31
  }
33
- export declare const AxisControl: (props: IAxisControlProps) => React.JSX.Element;
32
+ export declare const AxisControl: (props: IAxisControlProps) => import("react/jsx-runtime").JSX.Element;
34
33
  export {};
package/lib/umd/facade.js CHANGED
@@ -1 +1 @@
1
- function _0x197f(){const _0x42e93e=['titles.xAxisTitle.content','length','area.lineStyle','pie','titles.title.color','legend.label.fontSize','removeChart','allSeriesStyle.point.shape','yAxisTitle','fontSize','setDataPointSize','@univerjs/core','setDataPointColor','isHalfPie','legend.label.color','width','SheetsChartService','titles.title.align','titles.xAxisTitle.font','setSeriesStyle','toStringTag','axisPointer','270rewXOj','230113TcfzdC','position','IRenderManagerService','setPosition','2758960hTtukt','titles.yAxisTitle.content','setRightYAxisTitle','setFill','options','subUnitId','pie.isHalfPie','ChartThemeService','font','chartType','Pie','asPieChart','deserializeRangeWithSheet','titles.rightYAxisTitle.family','invalidValueType','extend','legend.position','titles.titlePosition','registerChartTheme','object','pie.rosePie','build','with','theme','Radar','DrawingTypeEnum','yAxis.label.axisTitleAlign','exports','yRightAxis','selectMode','dataPointShape','allSeriesStyle','_injector','titles.yAxisTitle.bold','symbol','legend.label.bold','seriesStyleMap','get','titles.xAxisTitle.color','color','setProperty','getChartModel','titles.rightYAxisTitle.content','titles.title.fontSize','1486CPfMnV','backgroundColor','registerTheme','content','DRAWING_CHART','indicatorLineColor','doughnutHole','getRangeInfo','titles.xAxisTitle.family','RadarChartBuilder','point','italic','getChartType','setShape','titles.xAxisTitle.bold','radar.shape','indicatorLabelTextColor','111075yUwnth','hasPaddingAngle','indicatorLabelColor','transposeRowsAndColumns','setShowLabelLine','Line','IUniverInstanceService','titles.xAxisTitle.fontSize','ISheetSelectionRenderService','sourceSheetName','UniverProSheetsChart','setIsHalfPie','rosePie','getCharts','1208790sZUBlf','setAllSeriesStyle','dataSource','allSeriesStyle.point.size','@univerjs/sheets-ui','titles.rightYAxisTitle.font','FChartBuilderBase','category','radar','left','titles.title.font','tooltip.indicatorLabelColor','getUnitId','rightYAxisTitle','_commandService','getSheetId','tooltip.indicatorLineType','titles.yAxisTitle.color','getSeriesData','titles.title.family','fontColor','tooltip.indicatorLabelTextColor','executeCommand','updateRange','setHasPaddingAngle','setOptions','lineStyle','1776537wWIfKE','yAxis','UniverProSheetsChartUi','setHeight','getRenderById','updateChart','asLineChart','indicatorLineType','getWorkbook','addRange','pie.showLabelLine','unitId','titles.rightYAxisTitle.color','defineProperty','FWorksheet','borderColor','RemoveSheetDrawingCommand','52iZppHq','xAxis','tooltip.indicatorLineColor','getUnitChartModels','title','config','generateRandomId','Range\x20is\x20required\x20to\x20insert\x20a\x20chart','UniverEngineFormula','height','string','insertChart','allSeriesStyle.point.color','asRadarChart','@univerjs-pro/sheets-chart-ui','range','fill','setTransposeRowsAndColumns','_workbook','legend','amd','shape','context','rightYAxis','19476bDomcD','@univerjs/sheets/facade','setBorderColor','titleAlignment','@univerjs/sheets-drawing-ui','UniverCore','507VgUgdh','area','@univerjs-pro/sheets-chart','setDoughnutHole','legend.label.italic','getCurrentUnitForType','dataPointSize','setInvalidValueStrategy','modify','convertPositionCellToSheetOverGrid','clearRange','axisAlignment','titles.rightYAxisTitle.fontSize','xAxis.label.axisTitleAlign','sheetName','@univerjs/engine-render','pie.doughnutHole','bold','fontStyle','pie.hasPaddingAngle','ChartTypeBits','UniverInstanceType','chartId','function','pie.borderColor','showLabelLine','setRosePie','dataPointColor','getRange','setChartType','titles.yAxisTitle.family','InsertChartCommand','xAxisTitle','series','rightYAxis.label.axisTitleAlign','CommandService','legend.selectMode'];_0x197f=function(){return _0x42e93e;};return _0x197f();}function _0x4629(_0x165479,_0x251fcc){const _0x197f4f=_0x197f();return _0x4629=function(_0x4629ac,_0x380879){_0x4629ac=_0x4629ac-0x1cb;let _0x271160=_0x197f4f[_0x4629ac];return _0x271160;},_0x4629(_0x165479,_0x251fcc);}(function(_0x301664,_0x24a49b){const _0x2471cd=_0x4629,_0x10020c=_0x301664();while(!![]){try{const _0x2ab881=parseInt(_0x2471cd(0x21c))/0x1+parseInt(_0x2471cd(0x24c))/0x2*(parseInt(_0x2471cd(0x1e0))/0x3)+parseInt(_0x2471cd(0x297))/0x4*(parseInt(_0x2471cd(0x25d))/0x5)+parseInt(_0x2471cd(0x26b))/0x6+-parseInt(_0x2471cd(0x286))/0x7+-parseInt(_0x2471cd(0x220))/0x8+-parseInt(_0x2471cd(0x1da))/0x9*(parseInt(_0x2471cd(0x21b))/0xa);if(_0x2ab881===_0x24a49b)break;else _0x10020c['push'](_0x10020c['shift']());}catch(_0x21e1ee){_0x10020c['push'](_0x10020c['shift']());}}}(_0x197f,0x2e1b3),function(_0xf832fb,_0x2ba87d){const _0x38962b=_0x4629;typeof exports==_0x38962b(0x233)&&typeof module<'u'?_0x2ba87d(exports,require('@univerjs-pro/sheets-chart'),require(_0x38962b(0x1d0)),require(_0x38962b(0x210)),require(_0x38962b(0x1de)),require('@univerjs/sheets/facade'),require('@univerjs/engine-formula'),require(_0x38962b(0x1ef)),require(_0x38962b(0x26f))):typeof define==_0x38962b(0x1f7)&&define[_0x38962b(0x1d6)]?define([_0x38962b(0x23b),_0x38962b(0x1e2),_0x38962b(0x1d0),'@univerjs/core',_0x38962b(0x1de),_0x38962b(0x1db),'@univerjs/engine-formula','@univerjs/engine-render',_0x38962b(0x26f)],_0x2ba87d):(_0xf832fb=typeof globalThis<'u'?globalThis:_0xf832fb||self,_0x2ba87d(_0xf832fb['UniverProSheetsChartUiFacade']={},_0xf832fb[_0x38962b(0x267)],_0xf832fb[_0x38962b(0x288)],_0xf832fb[_0x38962b(0x1df)],_0xf832fb['UniverSheetsDrawingUi'],_0xf832fb['UniverSheetsFacade'],_0xf832fb[_0x38962b(0x29f)],_0xf832fb['UniverEngineRender'],_0xf832fb['UniverSheetsUi']));}(this,function(_0x486882,_0x4890dc,_0x436270,_0x5a709e,_0x2d1ec8,_0x214ddb,_0x243591,_0x539168,_0x4c090b){'use strict';const _0x123e31=_0x4629;var _0x44cad2=Object[_0x123e31(0x293)],_0x33295b=(_0x378c60,_0x31ff20,_0x1dc7fc)=>_0x31ff20 in _0x378c60?_0x44cad2(_0x378c60,_0x31ff20,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x1dc7fc}):_0x378c60[_0x31ff20]=_0x1dc7fc,_0x38cb89=(_0x25f4ce,_0x3dc223,_0x35e28a)=>_0x33295b(_0x25f4ce,typeof _0x3dc223!=_0x123e31(0x242)?_0x3dc223+'':_0x3dc223,_0x35e28a);const _0xe28742=(_0x31f0d4,_0x36da87,_0x1efb1b)=>{const _0x1b7092=_0x123e31;_0x1efb1b!==void 0x0&&_0x4890dc[_0x1b7092(0x248)](_0x31f0d4,_0x36da87,_0x1efb1b);},_0x506756=(_0x187917,_0x193626,_0x15ce10,_0x2d2af4={})=>{const _0x5766ca=_0x123e31,_0x44b5ad={},_0xd9161b={};if(_0x2d2af4[_0x5766ca(0x29b)]){const _0x14aaec=_0x2d2af4[_0x5766ca(0x29b)];_0xe28742(_0x44b5ad,'titles.title.content',_0x14aaec[_0x5766ca(0x24f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x275),_0x14aaec[_0x5766ca(0x228)]),_0xe28742(_0x44b5ad,_0x5766ca(0x24b),_0x14aaec[_0x5766ca(0x20e)]),_0xe28742(_0x44b5ad,_0x5766ca(0x209),_0x14aaec[_0x5766ca(0x27f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x27e),_0x14aaec[_0x5766ca(0x1f2)]),_0xe28742(_0x44b5ad,'titles.title.bold',_0x14aaec[_0x5766ca(0x1f1)]),_0xe28742(_0x44b5ad,_0x5766ca(0x216),_0x14aaec[_0x5766ca(0x1dd)]),_0xe28742(_0x44b5ad,_0x5766ca(0x231),_0x14aaec[_0x5766ca(0x21d)]);}if(_0x2d2af4[_0x5766ca(0x1d5)]){const _0x2aa06c=_0x2d2af4[_0x5766ca(0x1d5)];_0xe28742(_0x44b5ad,_0x5766ca(0x230),_0x2aa06c[_0x5766ca(0x21d)]),_0xe28742(_0x44b5ad,_0x5766ca(0x204),_0x2aa06c[_0x5766ca(0x23d)]),_0xe28742(_0x44b5ad,_0x5766ca(0x20a),_0x2aa06c[_0x5766ca(0x20e)]),_0xe28742(_0x44b5ad,_0x5766ca(0x213),_0x2aa06c[_0x5766ca(0x247)]),_0xe28742(_0x44b5ad,_0x5766ca(0x243),_0x2aa06c[_0x5766ca(0x1f1)]),_0xe28742(_0x44b5ad,_0x5766ca(0x1e4),_0x2aa06c[_0x5766ca(0x257)]);}if(_0x2d2af4[_0x5766ca(0x208)]){const _0x9a576d=_0x2d2af4[_0x5766ca(0x208)];_0xe28742(_0x44b5ad,_0x5766ca(0x1f0),_0x9a576d[_0x5766ca(0x252)]),_0xe28742(_0x44b5ad,_0x5766ca(0x1f8),_0x9a576d[_0x5766ca(0x295)]),_0xe28742(_0x44b5ad,_0x5766ca(0x1f3),_0x9a576d['hasPaddingAngle']),_0xe28742(_0x44b5ad,_0x5766ca(0x226),_0x9a576d[_0x5766ca(0x212)]),_0xe28742(_0x44b5ad,_0x5766ca(0x234),_0x9a576d[_0x5766ca(0x269)]),_0xe28742(_0x44b5ad,_0x5766ca(0x290),_0x9a576d[_0x5766ca(0x1f9)]);}if(_0x2d2af4[_0x5766ca(0x21a)]){const _0x1486fd=_0x2d2af4[_0x5766ca(0x21a)];_0xe28742(_0x44b5ad,_0x5766ca(0x276),_0x1486fd[_0x5766ca(0x25f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x27b),_0x1486fd[_0x5766ca(0x28d)]),_0xe28742(_0x44b5ad,_0x5766ca(0x299),_0x1486fd[_0x5766ca(0x251)]),_0xe28742(_0x44b5ad,_0x5766ca(0x280),_0x1486fd[_0x5766ca(0x25c)]);}if(_0x2d2af4['allSeriesStyle']&&_0xe28742(_0x44b5ad,'allSeriesStyle.point',_0x2d2af4[_0x5766ca(0x23f)][_0x5766ca(0x256)]),_0x2d2af4[_0x5766ca(0x1e1)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x207),_0x2d2af4['area'][_0x5766ca(0x285)]),_0x2d2af4[_0x5766ca(0x237)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x237),_0x2d2af4['theme']),_0x2d2af4[_0x5766ca(0x273)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x273),_0x2d2af4['radar']),_0x2d2af4['xAxisTitle']){const _0x5cdde4=_0x2d2af4[_0x5766ca(0x200)];_0xe28742(_0x44b5ad,_0x5766ca(0x205),_0x5cdde4[_0x5766ca(0x24f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x217),_0x5cdde4['font']),_0xe28742(_0x44b5ad,_0x5766ca(0x264),_0x5cdde4[_0x5766ca(0x20e)]),_0xe28742(_0x44b5ad,_0x5766ca(0x246),_0x5cdde4[_0x5766ca(0x27f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x254),_0x5cdde4[_0x5766ca(0x1f2)]),_0xe28742(_0x44b5ad,_0x5766ca(0x25a),_0x5cdde4[_0x5766ca(0x1f1)]),_0xe28742(_0x44b5ad,_0x5766ca(0x1ed),_0x5cdde4[_0x5766ca(0x1eb)]);}if(_0x2d2af4[_0x5766ca(0x20d)]){const _0x1a6494=_0x2d2af4[_0x5766ca(0x20d)];_0xe28742(_0x44b5ad,_0x5766ca(0x221),_0x1a6494[_0x5766ca(0x24f)]),_0xe28742(_0x44b5ad,'titles.yAxisTitle.font',_0x1a6494[_0x5766ca(0x228)]),_0xe28742(_0x44b5ad,'titles.yAxisTitle.fontSize',_0x1a6494['fontSize']),_0xe28742(_0x44b5ad,_0x5766ca(0x27c),_0x1a6494[_0x5766ca(0x27f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x1fe),_0x1a6494[_0x5766ca(0x1f2)]),_0xe28742(_0x44b5ad,_0x5766ca(0x241),_0x1a6494[_0x5766ca(0x1f1)]),_0xe28742(_0x44b5ad,_0x5766ca(0x23a),_0x1a6494[_0x5766ca(0x1eb)]);}if(_0x2d2af4[_0x5766ca(0x278)]){const _0x1fb0ce=_0x2d2af4[_0x5766ca(0x278)];_0xe28742(_0x44b5ad,_0x5766ca(0x24a),_0x1fb0ce[_0x5766ca(0x24f)]),_0xe28742(_0x44b5ad,_0x5766ca(0x270),_0x1fb0ce[_0x5766ca(0x228)]),_0xe28742(_0x44b5ad,_0x5766ca(0x1ec),_0x1fb0ce[_0x5766ca(0x20e)]),_0xe28742(_0x44b5ad,_0x5766ca(0x292),_0x1fb0ce['fontColor']),_0xe28742(_0x44b5ad,_0x5766ca(0x22d),_0x1fb0ce[_0x5766ca(0x1f2)]),_0xe28742(_0x44b5ad,'titles.rightYAxisTitle.bold',_0x1fb0ce[_0x5766ca(0x1f1)]),_0xe28742(_0x44b5ad,_0x5766ca(0x202),_0x1fb0ce[_0x5766ca(0x1eb)]);}_0x2d2af4[_0x5766ca(0x298)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x298),_0x2d2af4['xAxis']),_0x2d2af4[_0x5766ca(0x287)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x287),_0x2d2af4[_0x5766ca(0x287)]),_0x2d2af4[_0x5766ca(0x23c)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x1d9),_0x2d2af4['yRightAxis']),_0x2d2af4[_0x5766ca(0x244)]&&_0xe28742(_0x44b5ad,_0x5766ca(0x244),_0x2d2af4['seriesStyleMap']);const _0x45ef41={'unitId':_0x187917,'chartModelId':_0x193626};let _0x497cf9=!0x1;if(_0x15ce10!==void 0x0&&(_0x45ef41[_0x5766ca(0x229)]=_0x15ce10,_0x497cf9=!0x0),Object['keys'](_0x44b5ad)[_0x5766ca(0x206)]>0x0&&(_0x45ef41['style']=_0x44b5ad,_0x497cf9=!0x0),Object['keys'](_0xd9161b)[_0x5766ca(0x206)]>0x0&&(_0x45ef41[_0x5766ca(0x1d8)]=_0xd9161b,_0x497cf9=!0x0),_0x497cf9)return _0x45ef41;};class _0x455c47 extends _0x5a709e['FBase']{constructor(_0x398c8e,_0x189e0b,_0x5bcf91,_0x5973be,_0x50fffe){const _0xcaa181=_0x123e31;super(),_0x38cb89(this,_0xcaa181(0x1d4)),_0x38cb89(this,_0xcaa181(0x240)),_0x38cb89(this,_0xcaa181(0x291)),_0x38cb89(this,_0xcaa181(0x225)),_0x38cb89(this,_0xcaa181(0x1f6)),_0x38cb89(this,_0xcaa181(0x1d1)),_0x38cb89(this,'sourceSheetName'),_0x38cb89(this,'x'),_0x38cb89(this,'y'),_0x38cb89(this,_0xcaa181(0x214)),_0x38cb89(this,_0xcaa181(0x1cb)),_0x38cb89(this,_0xcaa181(0x229)),_0x38cb89(this,_0xcaa181(0x224)),_0x38cb89(this,_0xcaa181(0x260)),(this['unitId']=_0x398c8e,this['subUnitId']=_0x189e0b,this[_0xcaa181(0x1d4)]=_0x5bcf91,this[_0xcaa181(0x240)]=_0x5973be,_0x50fffe&&(this['chartId']=_0x50fffe));}[_0x123e31(0x258)](){const _0x3282f1=_0x123e31;return this[_0x3282f1(0x229)];}[_0x123e31(0x28f)](_0x12310d){const _0x5f2b7d=_0x123e31;if(typeof _0x12310d==_0x5f2b7d(0x1cc)){const _0x4cca1c=_0x243591[_0x5f2b7d(0x22c)](_0x12310d);_0x4cca1c[_0x5f2b7d(0x1ee)]&&(this[_0x5f2b7d(0x266)]=_0x4cca1c[_0x5f2b7d(0x1ee)]),this['range']=_0x4cca1c[_0x5f2b7d(0x1d1)];}else this['range']=_0x12310d;return this;}[_0x123e31(0x1ea)](){const _0xa5f54a=_0x123e31;return this[_0xa5f54a(0x1d1)]=void 0x0,this[_0xa5f54a(0x266)]=void 0x0,this;}[_0x123e31(0x21f)](_0x529d31,_0x4c8e6c,_0x2fb2c0,_0x17b5f6){const _0x2a7d2=_0x123e31,_0x14d07e=this[_0x2a7d2(0x240)]['get'](_0x539168[_0x2a7d2(0x21e)])[_0x2a7d2(0x28a)](this['unitId']);if(!_0x14d07e)throw new Error('This\x20api\x20only\x20works\x20in\x20the\x20active\x20sheet.');const _0x28776f=_0x14d07e[_0x2a7d2(0x236)](_0x4c090b[_0x2a7d2(0x265)]),_0x26ca8a=_0x14d07e[_0x2a7d2(0x236)](_0x4c090b['SheetSkeletonManagerService']),{transform:_0x4fa563}=_0x4c090b[_0x2a7d2(0x1e9)](this[_0x2a7d2(0x291)],this[_0x2a7d2(0x225)],{'row':_0x529d31,'column':_0x4c8e6c,'rowOffset':_0x2fb2c0,'columnOffset':_0x17b5f6},0x1,0x1,_0x28776f,_0x26ca8a),_0x13e541=_0x4fa563['top'],_0x2c2650=_0x4fa563[_0x2a7d2(0x274)];return this['x']=_0x2c2650,this['y']=_0x13e541,this;}['setAbsolutePosition'](_0x470c88,_0x33d87b){return this['x']=_0x470c88,this['y']=_0x33d87b,this;}[_0x123e31(0x1fd)](_0x59d974){const _0x438f8a=_0x123e31;return this[_0x438f8a(0x229)]=_0x59d974,this;}['setWidth'](_0x1d9390){const _0x9e1f9d=_0x123e31;return this[_0x9e1f9d(0x214)]=_0x1d9390,this;}[_0x123e31(0x289)](_0x2c8ad5){const _0x41575c=_0x123e31;return this[_0x41575c(0x1cb)]=_0x2c8ad5,this;}[_0x123e31(0x284)](_0x514a16,_0x3db763){const _0xcef1aa=_0x123e31;return this[_0xcef1aa(0x224)]||(this[_0xcef1aa(0x224)]={}),_0x514a16===''?(this[_0xcef1aa(0x224)]={...this[_0xcef1aa(0x224)],..._0x3db763},this):(_0x4890dc[_0xcef1aa(0x248)](this[_0xcef1aa(0x224)],_0x514a16,_0x3db763),this);}[_0x123e31(0x1d3)](_0x3df9db){const _0x2bb978=_0x123e31;return this[_0x2bb978(0x260)]=_0x3df9db,this;}['setTheme'](_0x251c88){const _0x23441c=_0x123e31;return this[_0x23441c(0x284)](_0x23441c(0x237),_0x251c88),this;}['setXAxisTitle'](_0x49183b){const _0x1cf841=_0x123e31;var _0x489ac4;const _0x13b211=((_0x489ac4=this[_0x1cf841(0x224)])==null?void 0x0:_0x489ac4[_0x1cf841(0x200)])||{};return _0x13b211[_0x1cf841(0x24f)]=_0x49183b,this[_0x1cf841(0x284)](_0x1cf841(0x200),_0x13b211),this;}['setYAxisTitle'](_0x558d5f){const _0x3bde95=_0x123e31;var _0x5ea7ff;const _0x3cfdbf=((_0x5ea7ff=this[_0x3bde95(0x224)])==null?void 0x0:_0x5ea7ff[_0x3bde95(0x20d)])||{};return _0x3cfdbf[_0x3bde95(0x24f)]=_0x558d5f,this[_0x3bde95(0x284)](_0x3bde95(0x20d),_0x3cfdbf),this;}[_0x123e31(0x222)](_0x3d0025){const _0x116032=_0x123e31;var _0x353739;const _0x4ce1f9=((_0x353739=this[_0x116032(0x224)])==null?void 0x0:_0x353739[_0x116032(0x278)])||{};return _0x4ce1f9['content']=_0x3d0025,this[_0x116032(0x284)](_0x116032(0x278),_0x4ce1f9),this;}['setXAxisTextStyle'](_0x1a59fe){const _0x29a65c=_0x123e31;var _0x2e1fd0;const _0x538909=((_0x2e1fd0=this[_0x29a65c(0x224)])==null?void 0x0:_0x2e1fd0[_0x29a65c(0x200)])||{};return this[_0x29a65c(0x284)](_0x29a65c(0x200),{..._0x538909,..._0x1a59fe}),this;}['setYAxisTextStyle'](_0x4d3c0f){const _0x484e6b=_0x123e31;var _0x279377;const _0x543de8=((_0x279377=this[_0x484e6b(0x224)])==null?void 0x0:_0x279377[_0x484e6b(0x20d)])||{};return this[_0x484e6b(0x284)](_0x484e6b(0x20d),{..._0x543de8,..._0x4d3c0f}),this;}['setRightYAxisTextStyle'](_0x5ed51c){const _0xd69753=_0x123e31;var _0x5090a6;const _0x8af91b=((_0x5090a6=this[_0xd69753(0x224)])==null?void 0x0:_0x5090a6['rightYAxisTitle'])||{};return this['setOptions'](_0xd69753(0x278),{..._0x8af91b,..._0x5ed51c}),this;}[_0x123e31(0x1e7)](_0x452cd2){const _0x5f3f57=_0x123e31;return this[_0x5f3f57(0x284)](_0x5f3f57(0x22e),_0x452cd2),this;}['setAxisPointerStyle'](_0x4090f6){const _0x509e89=_0x123e31;return this[_0x509e89(0x284)]('axisPointer',_0x4090f6),this;}[_0x123e31(0x26c)](_0xc7f715){return this['setOptions']('allSeriesStyle',_0xc7f715),this;}[_0x123e31(0x218)](_0xe81c4c,_0x1148a2){const _0x2620ce=_0x123e31;return this[_0x2620ce(0x284)](_0x2620ce(0x244),{[_0xe81c4c]:_0x1148a2}),this;}[_0x123e31(0x235)](){const _0x19fedd=_0x123e31;var _0x12aa2a;let _0x286b69=this[_0x19fedd(0x225)];if(this['sourceSheetName']){const _0x450927=(_0x12aa2a=this[_0x19fedd(0x1d4)]['getSheetBySheetName'](this['sourceSheetName']))==null?void 0x0:_0x12aa2a['getSheetId']();if(!_0x450927)throw new Error('Sheet\x20'+this['sourceSheetName']+'\x20not\x20found');_0x286b69=_0x450927;}return{'unitId':this[_0x19fedd(0x291)],'subUnitId':_0x286b69,'chartId':this['chartId'],'range':this[_0x19fedd(0x1d1)],'x':this['x'],'y':this['y'],'width':this[_0x19fedd(0x214)],'height':this[_0x19fedd(0x1cb)],'chartType':this[_0x19fedd(0x229)],'options':this[_0x19fedd(0x224)],'isRowDirection':this[_0x19fedd(0x260)]};}}class _0x2e4849{constructor(_0x311510,_0x385fd2,_0x2c2aed,_0x83b029){const _0x478b15=_0x123e31;_0x38cb89(this,_0x478b15(0x291)),_0x38cb89(this,_0x478b15(0x225)),_0x38cb89(this,'chartId'),_0x38cb89(this,_0x478b15(0x240)),(this['unitId']=_0x311510,this['subUnitId']=_0x385fd2,this[_0x478b15(0x1f6)]=_0x2c2aed,this[_0x478b15(0x240)]=_0x83b029);}['getChartId'](){return this['chartId'];}[_0x123e31(0x1fc)](){const _0x1ba16d=_0x123e31,_0x283f83=this[_0x1ba16d(0x240)]['get'](_0x4890dc[_0x1ba16d(0x215)])['getChartModel'](this[_0x1ba16d(0x1f6)]);if(_0x283f83)return _0x283f83[_0x1ba16d(0x26d)][_0x1ba16d(0x253)]();}[_0x123e31(0x282)](_0x123b14){const _0x3dc323=_0x123e31;return this[_0x3dc323(0x240)][_0x3dc323(0x245)](_0x5a709e[_0x3dc323(0x203)])[_0x3dc323(0x281)](_0x4890dc['ChartUpdateSourceCommand']['id'],{'unitId':this[_0x3dc323(0x291)],'chartModelId':this[_0x3dc323(0x1f6)],'range':_0x123b14});}[_0x123e31(0x27d)](){const _0x465773=_0x123e31;var _0x3babfc;const _0x369bf5=this['_injector'][_0x465773(0x245)](_0x4890dc[_0x465773(0x215)])['getChartModel'](this['chartId']);if(_0x369bf5)return(_0x3babfc=_0x369bf5[_0x465773(0x29c)])==null?void 0x0:_0x3babfc[_0x465773(0x201)];}['getCategoryData'](){const _0x509180=_0x123e31;var _0x336885;const _0xa2520b=this[_0x509180(0x240)][_0x509180(0x245)](_0x4890dc[_0x509180(0x215)])[_0x509180(0x249)](this['chartId']);if(_0xa2520b)return(_0x336885=_0xa2520b[_0x509180(0x29c)])==null?void 0x0:_0x336885[_0x509180(0x272)];}[_0x123e31(0x1e8)](){const _0x298933=_0x123e31,_0xeff2d3=this['_injector'][_0x298933(0x245)](_0x5a709e[_0x298933(0x263)])[_0x298933(0x1e5)](_0x5a709e[_0x298933(0x1f5)]['UNIVER_SHEET']);return new _0x455c47(this[_0x298933(0x291)],this[_0x298933(0x225)],_0xeff2d3,this[_0x298933(0x240)],this[_0x298933(0x1f6)]);}}class _0x249106 extends _0x214ddb[_0x123e31(0x294)]{async[_0x123e31(0x1cd)](_0x16eb73){const _0x1a84f8=_0x123e31;var _0x504bcf,_0x58c2ae,_0x5bef62;const _0x46901c=_0x16eb73[_0x1a84f8(0x291)]||this['getWorkbook']()['getUnitId'](),_0x43793b=_0x16eb73[_0x1a84f8(0x225)]||this[_0x1a84f8(0x27a)](),_0x17d770=_0x16eb73[_0x1a84f8(0x1f6)]||_0x5a709e[_0x1a84f8(0x29d)](),_0x4ae48f=_0x16eb73[_0x1a84f8(0x229)],_0x526ba4=_0x16eb73[_0x1a84f8(0x1d1)],_0x3da782={'x':_0x16eb73['x'],'y':_0x16eb73['y']},_0x109c9b=_0x16eb73[_0x1a84f8(0x214)],_0x42517c=_0x16eb73[_0x1a84f8(0x1cb)],_0x2d8b5a=(_0x504bcf=_0x16eb73[_0x1a84f8(0x224)])==null?void 0x0:_0x504bcf[_0x1a84f8(0x24d)],_0x47e1b8=(_0x58c2ae=_0x16eb73[_0x1a84f8(0x224)])==null?void 0x0:_0x58c2ae['borderColor'],_0x3b3b0e=_0x506756(_0x46901c,_0x17d770,_0x4ae48f,_0x16eb73[_0x1a84f8(0x224)]),_0x1a800b=(_0x5bef62=_0x16eb73['isRowDirection'])!=null?_0x5bef62:!0x0;if(!_0x526ba4)throw new Error(_0x1a84f8(0x29e));return await this[_0x1a84f8(0x279)][_0x1a84f8(0x281)](_0x436270[_0x1a84f8(0x1ff)]['id'],{'unitId':_0x46901c,'subUnitId':_0x43793b,'chartId':_0x17d770,'chartType':_0x4ae48f,'range':_0x526ba4,'position':_0x3da782,'width':_0x109c9b,'height':_0x42517c,'backgroundColor':_0x2d8b5a,'borderColor':_0x47e1b8,'config':_0x3b3b0e,'isRowDirection':_0x1a800b}),new _0x2e4849(_0x46901c,_0x43793b,_0x17d770,this[_0x1a84f8(0x240)]);}[_0x123e31(0x28b)](_0x21b4bf){const _0x526f07=_0x123e31,{unitId:_0x5c9d1d,chartId:_0x1d771b,chartType:_0x305cab,options:_0x42c188}=_0x21b4bf,_0x442661=_0x506756(_0x5c9d1d,_0x1d771b,_0x305cab,_0x42c188);this['_commandService'][_0x526f07(0x281)](_0x4890dc['ChartUpdateConfigCommand']['id'],_0x442661);}['newChart'](_0x475590){const _0x4fd1f4=_0x123e31;if(_0x475590)return new _0x455c47(_0x475590[_0x4fd1f4(0x291)],_0x475590[_0x4fd1f4(0x225)],this[_0x4fd1f4(0x1d4)],this[_0x4fd1f4(0x240)],_0x475590[_0x4fd1f4(0x1f6)]);const _0x218c01=this[_0x4fd1f4(0x28e)]()['getUnitId'](),_0x5d811e=this[_0x4fd1f4(0x27a)]();return new _0x455c47(_0x218c01,_0x5d811e,this[_0x4fd1f4(0x1d4)],this['_injector']);}[_0x123e31(0x26a)](){const _0x5a7a16=_0x123e31,_0x53e716=this['_injector'][_0x5a7a16(0x245)](_0x4890dc[_0x5a7a16(0x215)]),_0x7deec6=this[_0x5a7a16(0x28e)]()[_0x5a7a16(0x277)]();return _0x53e716[_0x5a7a16(0x29a)](_0x7deec6,this[_0x5a7a16(0x27a)]())['map'](_0x335478=>new _0x2e4849(_0x7deec6,this[_0x5a7a16(0x27a)](),_0x335478['id'],this[_0x5a7a16(0x240)]));}[_0x123e31(0x20b)](_0x1d5f4b){const _0x2be2c9=_0x123e31,_0x133317=_0x1d5f4b['unitId'],_0x3cc704=_0x1d5f4b[_0x2be2c9(0x225)],_0x54b075=_0x1d5f4b['chartId'],_0x477856={'unitId':_0x133317,'drawings':[{'unitId':_0x133317,'subUnitId':_0x3cc704,'drawingId':_0x54b075,'drawingType':_0x5a709e[_0x2be2c9(0x239)][_0x2be2c9(0x250)]}]};return this[_0x2be2c9(0x279)]['executeCommand'](_0x2d1ec8[_0x2be2c9(0x296)]['id'],_0x477856);}[_0x123e31(0x232)](_0x5285f8,_0x2173eb){const _0x299abf=_0x123e31;this[_0x299abf(0x240)][_0x299abf(0x245)](_0x4890dc[_0x299abf(0x227)])[_0x299abf(0x24e)](_0x5285f8,_0x2173eb);}}_0x214ddb[_0x123e31(0x294)][_0x123e31(0x22f)](_0x249106);class _0x14627c extends _0x455c47{constructor(_0x2cb01c,_0x22ea39,_0x59f8e8,_0x4fba04,_0x58c7bb){const _0x1d1bd6=_0x123e31;super(_0x2cb01c,_0x22ea39,_0x59f8e8,_0x4fba04,_0x58c7bb),_0x38cb89(this,_0x1d1bd6(0x285)),_0x38cb89(this,_0x1d1bd6(0x23e)),_0x38cb89(this,'dataPointColor'),_0x38cb89(this,_0x1d1bd6(0x1e6));}['setLineStyle'](_0x3bc30b){const _0x26fa62=_0x123e31;return this[_0x26fa62(0x285)]=_0x3bc30b,this;}['setDataPointShape'](_0x2acf03){const _0x35b2b0=_0x123e31;return this[_0x35b2b0(0x23e)]=_0x2acf03,this;}[_0x123e31(0x211)](_0x3bd5cb){const _0x3e17fa=_0x123e31;return this[_0x3e17fa(0x1fb)]=_0x3bd5cb,this;}[_0x123e31(0x20f)](_0x490492){const _0x2b2cba=_0x123e31;return this[_0x2b2cba(0x1e6)]=_0x490492,this;}['build'](){const _0x356f1e=_0x123e31,_0x1fe617=super[_0x356f1e(0x235)]();_0x1fe617[_0x356f1e(0x229)]=_0x4890dc[_0x356f1e(0x1f4)][_0x356f1e(0x262)];const _0x478788=_0x1fe617[_0x356f1e(0x224)]||{};return _0xe28742(_0x478788,'area.lineStyle',this[_0x356f1e(0x285)]),_0xe28742(_0x478788,_0x356f1e(0x20c),this[_0x356f1e(0x23e)]),_0xe28742(_0x478788,_0x356f1e(0x1ce),this[_0x356f1e(0x1fb)]),_0xe28742(_0x478788,_0x356f1e(0x26e),this[_0x356f1e(0x1e6)]),_0x1fe617[_0x356f1e(0x224)]=_0x478788,_0x1fe617;}}class _0x509659 extends _0x455c47{[_0x123e31(0x28c)](){const _0x291f2d=_0x123e31;return new _0x14627c(this[_0x291f2d(0x291)],this[_0x291f2d(0x225)],this[_0x291f2d(0x1d4)],this[_0x291f2d(0x240)],this[_0x291f2d(0x1f6)]);}}_0x455c47['extend'](_0x509659);class _0x4f2d18 extends _0x455c47{constructor(_0x2a3a39,_0x2a9645,_0x2c31b4,_0x2228bd,_0x308bba){const _0x439815=_0x123e31;super(_0x2a3a39,_0x2a9645,_0x2c31b4,_0x2228bd,_0x308bba),_0x38cb89(this,_0x439815(0x252)),_0x38cb89(this,_0x439815(0x295)),_0x38cb89(this,_0x439815(0x25e)),_0x38cb89(this,_0x439815(0x212)),_0x38cb89(this,_0x439815(0x269)),_0x38cb89(this,'showLabelLine');}[_0x123e31(0x1e3)](_0x1db4d1){const _0x4c6270=_0x123e31;return this[_0x4c6270(0x252)]=_0x1db4d1,this;}[_0x123e31(0x1dc)](_0x3fb479){return this['borderColor']=_0x3fb479,this;}[_0x123e31(0x283)](_0x179679){const _0x37a7c9=_0x123e31;return this[_0x37a7c9(0x25e)]=_0x179679,this;}[_0x123e31(0x268)](_0x11472c){const _0x7ef44=_0x123e31;return this[_0x7ef44(0x212)]=_0x11472c,this;}[_0x123e31(0x1fa)](_0x37ea2c){return this['rosePie']=_0x37ea2c,this;}[_0x123e31(0x261)](_0x1e00c3){return this['showLabelLine']=_0x1e00c3,this;}[_0x123e31(0x235)](){const _0x3471ce=_0x123e31,_0x3a2b00=super[_0x3471ce(0x235)]();_0x3a2b00['chartType']=_0x4890dc[_0x3471ce(0x1f4)][_0x3471ce(0x22a)];const _0x88a25a=_0x3a2b00[_0x3471ce(0x224)]||{};return _0xe28742(_0x88a25a,'pie.doughnutHole',this[_0x3471ce(0x252)]),_0xe28742(_0x88a25a,'pie.borderColor',this['borderColor']),_0xe28742(_0x88a25a,'pie.hasPaddingAngle',this['hasPaddingAngle']),_0xe28742(_0x88a25a,_0x3471ce(0x226),this[_0x3471ce(0x212)]),_0xe28742(_0x88a25a,_0x3471ce(0x234),this[_0x3471ce(0x269)]),_0xe28742(_0x88a25a,_0x3471ce(0x290),this[_0x3471ce(0x1f9)]),_0x3a2b00[_0x3471ce(0x224)]=_0x88a25a,_0x3a2b00;}}class _0x2d4c3d extends _0x455c47{[_0x123e31(0x22b)](){const _0x2b2ad5=_0x123e31;return new _0x4f2d18(this[_0x2b2ad5(0x291)],this['subUnitId'],this['_workbook'],this[_0x2b2ad5(0x240)],this[_0x2b2ad5(0x1f6)]);}}_0x455c47[_0x123e31(0x22f)](_0x2d4c3d);class _0x3bbdbe extends _0x455c47{constructor(_0x1be9b7,_0x3559d0,_0x138512,_0xde0df3,_0x34f2be){super(_0x1be9b7,_0x3559d0,_0x138512,_0xde0df3,_0x34f2be),_0x38cb89(this,'shape'),_0x38cb89(this,'fill');}[_0x123e31(0x259)](_0x3aee9d){const _0x2096f5=_0x123e31;return this[_0x2096f5(0x1d7)]=_0x3aee9d,this;}[_0x123e31(0x223)](_0x47110c){const _0x6e5352=_0x123e31;return this[_0x6e5352(0x1d2)]=_0x47110c,this;}['build'](){const _0x25dd4f=_0x123e31,_0x4febbb=super[_0x25dd4f(0x235)]();_0x4febbb[_0x25dd4f(0x229)]=_0x4890dc['ChartTypeBits'][_0x25dd4f(0x238)];const _0x5ad077=_0x4febbb[_0x25dd4f(0x224)]||{};return _0xe28742(_0x5ad077,_0x25dd4f(0x25b),this['shape']),_0xe28742(_0x5ad077,'radar.fill',this['fill']),_0x4febbb[_0x25dd4f(0x224)]=_0x5ad077,_0x4febbb;}}class _0x960242 extends _0x455c47{[_0x123e31(0x1cf)](){const _0x4abf94=_0x123e31;return new _0x3bbdbe(this[_0x4abf94(0x291)],this[_0x4abf94(0x225)],this[_0x4abf94(0x1d4)],this[_0x4abf94(0x240)],this['chartId']);}}_0x455c47[_0x123e31(0x22f)](_0x960242),_0x486882['FChart']=_0x2e4849,_0x486882[_0x123e31(0x271)]=_0x455c47,_0x486882['LineChartBuilder']=_0x14627c,_0x486882['PieChartBuilder']=_0x4f2d18,_0x486882[_0x123e31(0x255)]=_0x3bbdbe,Object[_0x123e31(0x293)](_0x486882,Symbol[_0x123e31(0x219)],{'value':'Module'});}));
1
+ (function(_0x275ca,_0x791da3){const _0x3f5c01=_0x4f6e,_0x1b2a5c=_0x275ca();while(!![]){try{const _0x52a44c=parseInt(_0x3f5c01(0x112))/0x1+-parseInt(_0x3f5c01(0xbe))/0x2*(parseInt(_0x3f5c01(0x14a))/0x3)+-parseInt(_0x3f5c01(0x15a))/0x4+-parseInt(_0x3f5c01(0xd7))/0x5+parseInt(_0x3f5c01(0xe3))/0x6*(parseInt(_0x3f5c01(0x10f))/0x7)+-parseInt(_0x3f5c01(0xe0))/0x8*(-parseInt(_0x3f5c01(0xde))/0x9)+-parseInt(_0x3f5c01(0x142))/0xa*(-parseInt(_0x3f5c01(0x147))/0xb);if(_0x52a44c===_0x791da3)break;else _0x1b2a5c['push'](_0x1b2a5c['shift']());}catch(_0x4c38f9){_0x1b2a5c['push'](_0x1b2a5c['shift']());}}}(_0x17b2,0x54817),function(_0x49595f,_0x5bf563){const _0x257040=_0x4f6e;typeof exports==_0x257040(0xae)&&typeof module<'u'?_0x5bf563(exports,require(_0x257040(0xf0)),require(_0x257040(0x15b)),require('@univerjs/core'),require(_0x257040(0x94)),require(_0x257040(0xce)),require(_0x257040(0x117)),require('@univerjs/engine-render'),require(_0x257040(0x87))):typeof define==_0x257040(0x14f)&&define['amd']?define(['exports',_0x257040(0xf0),_0x257040(0x15b),_0x257040(0x106),_0x257040(0x94),_0x257040(0xce),_0x257040(0x117),'@univerjs/engine-render',_0x257040(0x87)],_0x5bf563):(_0x49595f=typeof globalThis<'u'?globalThis:_0x49595f||self,_0x5bf563(_0x49595f[_0x257040(0xfa)]={},_0x49595f['UniverProSheetsChart'],_0x49595f[_0x257040(0xc3)],_0x49595f[_0x257040(0x11c)],_0x49595f[_0x257040(0xe4)],_0x49595f['UniverSheetsFacade'],_0x49595f[_0x257040(0x11e)],_0x49595f['UniverEngineRender'],_0x49595f[_0x257040(0x103)]));}(this,function(_0x274d2a,_0x364405,_0x398485,_0x58ea46,_0x408014,_0x4967c9,_0x5e1d07,_0x3a0b5a,_0x424813){'use strict';const _0x215d71=_0x4f6e;var _0x18ba6f=Object[_0x215d71(0x101)],_0x3b1fe0=(_0x13213a,_0x580351,_0x45d8ac)=>_0x580351 in _0x13213a?_0x18ba6f(_0x13213a,_0x580351,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x45d8ac}):_0x13213a[_0x580351]=_0x45d8ac,_0x33761b=(_0x3f0a5b,_0x5a59d1,_0xb80a0a)=>_0x3b1fe0(_0x3f0a5b,typeof _0x5a59d1!=_0x215d71(0xb5)?_0x5a59d1+'':_0x5a59d1,_0xb80a0a);const _0x4a9d1d=(_0x5caa8a,_0x1e1941,_0x1a9ddd)=>{_0x1a9ddd!==void 0x0&&_0x364405['setProperty'](_0x5caa8a,_0x1e1941,_0x1a9ddd);},_0x675d4b=(_0x22309d,_0x41e4c5,_0x208b65,_0xbe74a1={})=>{const _0x188daf=_0x215d71,_0x7d7208={},_0x2ed75c={};if(_0xbe74a1[_0x188daf(0x11a)]){const _0x2b96f5=_0xbe74a1[_0x188daf(0x11a)];_0x4a9d1d(_0x7d7208,_0x188daf(0xba),_0x2b96f5[_0x188daf(0x98)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x126),_0x2b96f5[_0x188daf(0x153)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xb6),_0x2b96f5[_0x188daf(0x124)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x139),_0x2b96f5[_0x188daf(0x111)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xb8),_0x2b96f5[_0x188daf(0xf9)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x10a),_0x2b96f5['bold']),_0x4a9d1d(_0x7d7208,_0x188daf(0xc1),_0x2b96f5['titleAlignment']),_0x4a9d1d(_0x7d7208,_0x188daf(0xd9),_0x2b96f5['position']);}if(_0xbe74a1[_0x188daf(0xbd)]){const _0x157275=_0xbe74a1[_0x188daf(0xbd)];_0x4a9d1d(_0x7d7208,_0x188daf(0x8d),_0x157275[_0x188daf(0xc9)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x13e),_0x157275[_0x188daf(0x9e)]),_0x4a9d1d(_0x7d7208,'legend.label.fontSize',_0x157275['fontSize']),_0x4a9d1d(_0x7d7208,_0x188daf(0xa3),_0x157275[_0x188daf(0x15c)]),_0x4a9d1d(_0x7d7208,'legend.label.bold',_0x157275[_0x188daf(0x9a)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x85),_0x157275[_0x188daf(0xa2)]);}if(_0xbe74a1[_0x188daf(0xe9)]){const _0x4abd9a=_0xbe74a1[_0x188daf(0xe9)];_0x4a9d1d(_0x7d7208,_0x188daf(0xf5),_0x4abd9a[_0x188daf(0x120)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xb9),_0x4abd9a[_0x188daf(0xb4)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xf2),_0x4abd9a['hasPaddingAngle']),_0x4a9d1d(_0x7d7208,'pie.isHalfPie',_0x4abd9a[_0x188daf(0xcd)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x13c),_0x4abd9a['rosePie']),_0x4a9d1d(_0x7d7208,'pie.showLabelLine',_0x4abd9a[_0x188daf(0x160)]);}if(_0xbe74a1[_0x188daf(0xdf)]){const _0x408fbc=_0xbe74a1[_0x188daf(0xdf)];_0x4a9d1d(_0x7d7208,_0x188daf(0xf1),_0x408fbc['indicatorLabelColor']),_0x4a9d1d(_0x7d7208,_0x188daf(0xdb),_0x408fbc[_0x188daf(0xaa)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x14e),_0x408fbc['indicatorLineColor']),_0x4a9d1d(_0x7d7208,_0x188daf(0x114),_0x408fbc[_0x188daf(0xac)]);}if(_0xbe74a1[_0x188daf(0x14c)]&&_0x4a9d1d(_0x7d7208,_0x188daf(0xaf),_0xbe74a1[_0x188daf(0x14c)][_0x188daf(0x146)]),_0xbe74a1[_0x188daf(0xcc)]&&_0x4a9d1d(_0x7d7208,'area.lineStyle',_0xbe74a1[_0x188daf(0xcc)][_0x188daf(0x90)]),_0xbe74a1[_0x188daf(0x125)]&&_0x4a9d1d(_0x7d7208,_0x188daf(0x125),_0xbe74a1[_0x188daf(0x125)]),_0xbe74a1['radar']&&_0x4a9d1d(_0x7d7208,'radar',_0xbe74a1[_0x188daf(0x113)]),_0xbe74a1[_0x188daf(0x82)]){const _0x5a22d4=_0xbe74a1[_0x188daf(0x82)];_0x4a9d1d(_0x7d7208,_0x188daf(0x115),_0x5a22d4['content']),_0x4a9d1d(_0x7d7208,_0x188daf(0xe6),_0x5a22d4[_0x188daf(0x153)]),_0x4a9d1d(_0x7d7208,'titles.xAxisTitle.fontSize',_0x5a22d4[_0x188daf(0x124)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xfb),_0x5a22d4[_0x188daf(0x111)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xdc),_0x5a22d4['fontStyle']),_0x4a9d1d(_0x7d7208,_0x188daf(0x92),_0x5a22d4[_0x188daf(0x9a)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xc4),_0x5a22d4['axisAlignment']);}if(_0xbe74a1[_0x188daf(0x149)]){const _0x235f2b=_0xbe74a1['yAxisTitle'];_0x4a9d1d(_0x7d7208,_0x188daf(0xf8),_0x235f2b[_0x188daf(0x98)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xa8),_0x235f2b[_0x188daf(0x153)]),_0x4a9d1d(_0x7d7208,'titles.yAxisTitle.fontSize',_0x235f2b[_0x188daf(0x124)]),_0x4a9d1d(_0x7d7208,'titles.yAxisTitle.color',_0x235f2b[_0x188daf(0x111)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x8c),_0x235f2b['fontStyle']),_0x4a9d1d(_0x7d7208,_0x188daf(0x83),_0x235f2b[_0x188daf(0x9a)]),_0x4a9d1d(_0x7d7208,_0x188daf(0xc8),_0x235f2b['axisAlignment']);}if(_0xbe74a1['rightYAxisTitle']){const _0x245e98=_0xbe74a1[_0x188daf(0x96)];_0x4a9d1d(_0x7d7208,_0x188daf(0xe1),_0x245e98['content']),_0x4a9d1d(_0x7d7208,_0x188daf(0xa5),_0x245e98['font']),_0x4a9d1d(_0x7d7208,_0x188daf(0xd6),_0x245e98[_0x188daf(0x124)]),_0x4a9d1d(_0x7d7208,'titles.rightYAxisTitle.color',_0x245e98[_0x188daf(0x111)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x81),_0x245e98[_0x188daf(0xf9)]),_0x4a9d1d(_0x7d7208,'titles.rightYAxisTitle.bold',_0x245e98[_0x188daf(0x9a)]),_0x4a9d1d(_0x7d7208,_0x188daf(0x12e),_0x245e98[_0x188daf(0x10c)]);}_0xbe74a1[_0x188daf(0x13a)]&&_0x4a9d1d(_0x7d7208,'xAxis',_0xbe74a1[_0x188daf(0x13a)]),_0xbe74a1[_0x188daf(0x132)]&&_0x4a9d1d(_0x7d7208,'yAxis',_0xbe74a1['yAxis']),_0xbe74a1['yRightAxis']&&_0x4a9d1d(_0x7d7208,_0x188daf(0xfd),_0xbe74a1[_0x188daf(0xe8)]),_0xbe74a1[_0x188daf(0x12d)]&&_0x4a9d1d(_0x7d7208,_0x188daf(0x12d),_0xbe74a1['seriesStyleMap']);const _0x148624={'unitId':_0x22309d,'chartModelId':_0x41e4c5};let _0x182e3f=!0x1;if(_0x208b65!==void 0x0&&(_0x148624[_0x188daf(0x152)]=_0x208b65,_0x182e3f=!0x0),Object[_0x188daf(0xa9)](_0x7d7208)[_0x188daf(0xfc)]>0x0&&(_0x148624['style']=_0x7d7208,_0x182e3f=!0x0),Object[_0x188daf(0xa9)](_0x2ed75c)['length']>0x0&&(_0x148624[_0x188daf(0xf3)]=_0x2ed75c,_0x182e3f=!0x0),_0x182e3f)return _0x148624;};class _0x2e428e extends _0x58ea46[_0x215d71(0x104)]{constructor(_0x3eac70,_0x385327,_0x1c0eb5,_0x90d075,_0x1b1d44){const _0x39b2e8=_0x215d71;super(),_0x33761b(this,_0x39b2e8(0xd2)),_0x33761b(this,_0x39b2e8(0x12a)),_0x33761b(this,_0x39b2e8(0xcb)),_0x33761b(this,_0x39b2e8(0x116)),_0x33761b(this,'chartId'),_0x33761b(this,_0x39b2e8(0xfe)),_0x33761b(this,'sourceSheetName'),_0x33761b(this,'x'),_0x33761b(this,'y'),_0x33761b(this,_0x39b2e8(0xcf)),_0x33761b(this,'height'),_0x33761b(this,_0x39b2e8(0x152)),_0x33761b(this,_0x39b2e8(0xa7)),_0x33761b(this,_0x39b2e8(0x129)),(this[_0x39b2e8(0xcb)]=_0x3eac70,this[_0x39b2e8(0x116)]=_0x385327,this['_workbook']=_0x1c0eb5,this[_0x39b2e8(0x12a)]=_0x90d075,_0x1b1d44&&(this[_0x39b2e8(0xeb)]=_0x1b1d44));}['getChartType'](){const _0x1ade72=_0x215d71;return this[_0x1ade72(0x152)];}['addRange'](_0x13147e){const _0x260712=_0x215d71;if(typeof _0x13147e==_0x260712(0x97)){const _0x1e7575=_0x5e1d07[_0x260712(0xca)](_0x13147e);_0x1e7575[_0x260712(0xb1)]&&(this[_0x260712(0x144)]=_0x1e7575[_0x260712(0xb1)]),this[_0x260712(0xfe)]=_0x1e7575['range'];}else this['range']=_0x13147e;return this;}['clearRange'](){const _0x5988a0=_0x215d71;return this['range']=void 0x0,this[_0x5988a0(0x144)]=void 0x0,this;}[_0x215d71(0xa6)](_0xca7d8e,_0x1f4798,_0x483800,_0x3c3b37){const _0x17159f=_0x215d71,_0x2fab96=this['_injector']['get'](_0x3a0b5a[_0x17159f(0xe5)])[_0x17159f(0x10d)](this[_0x17159f(0xcb)]);if(!_0x2fab96)throw new Error(_0x17159f(0xee));const _0x50704e=_0x2fab96[_0x17159f(0x119)](_0x424813[_0x17159f(0x14d)]),_0x2e35e0=_0x2fab96['with'](_0x424813[_0x17159f(0x123)]),{transform:_0x1460e5}=_0x424813[_0x17159f(0x156)](this['unitId'],this[_0x17159f(0x116)],{'row':_0xca7d8e,'column':_0x1f4798,'rowOffset':_0x483800,'columnOffset':_0x3c3b37},0x1,0x1,_0x50704e,_0x2e35e0),_0xa0d1a7=_0x1460e5['top'],_0x200230=_0x1460e5['left'];return this['x']=_0x200230,this['y']=_0xa0d1a7,this;}[_0x215d71(0x159)](_0x3d5330,_0x70941a){return this['x']=_0x3d5330,this['y']=_0x70941a,this;}['setChartType'](_0x2f3785){const _0x2e8a16=_0x215d71;return this[_0x2e8a16(0x152)]=_0x2f3785,this;}[_0x215d71(0xc7)](_0x2212b1){return this['width']=_0x2212b1,this;}[_0x215d71(0xe7)](_0x24980e){const _0x5a7ae9=_0x215d71;return this[_0x5a7ae9(0x91)]=_0x24980e,this;}['setOptions'](_0x379015,_0x44f508){const _0x3997b5=_0x215d71;return this[_0x3997b5(0xa7)]||(this[_0x3997b5(0xa7)]={}),_0x379015===''?(this[_0x3997b5(0xa7)]={...this[_0x3997b5(0xa7)],..._0x44f508},this):(_0x364405[_0x3997b5(0xd5)](this[_0x3997b5(0xa7)],_0x379015,_0x44f508),this);}[_0x215d71(0x135)](_0x246fa9){const _0x1e9f79=_0x215d71;return this[_0x1e9f79(0x129)]=_0x246fa9,this;}[_0x215d71(0x141)](_0x4fdae5){const _0x20fa25=_0x215d71;return this[_0x20fa25(0x118)](_0x20fa25(0x125),_0x4fdae5),this;}[_0x215d71(0xd8)](_0x5ad9f6){const _0x3ab340=_0x215d71;var _0x4bed1a;const _0x6f4e2a=((_0x4bed1a=this[_0x3ab340(0xa7)])==null?void 0x0:_0x4bed1a[_0x3ab340(0x82)])||{};return _0x6f4e2a[_0x3ab340(0x98)]=_0x5ad9f6,this[_0x3ab340(0x118)](_0x3ab340(0x82),_0x6f4e2a),this;}[_0x215d71(0x121)](_0x52dab5){const _0x498619=_0x215d71;var _0x3e94f0;const _0x325dbb=((_0x3e94f0=this[_0x498619(0xa7)])==null?void 0x0:_0x3e94f0[_0x498619(0x149)])||{};return _0x325dbb[_0x498619(0x98)]=_0x52dab5,this[_0x498619(0x118)](_0x498619(0x149),_0x325dbb),this;}['setRightYAxisTitle'](_0x278efa){const _0x54b78f=_0x215d71;var _0x49ba7a;const _0x68ff1c=((_0x49ba7a=this[_0x54b78f(0xa7)])==null?void 0x0:_0x49ba7a['rightYAxisTitle'])||{};return _0x68ff1c['content']=_0x278efa,this['setOptions'](_0x54b78f(0x96),_0x68ff1c),this;}['setXAxisTextStyle'](_0x4e0a8d){const _0x5967f1=_0x215d71;var _0x3c4fe8;const _0xeb55ca=((_0x3c4fe8=this[_0x5967f1(0xa7)])==null?void 0x0:_0x3c4fe8[_0x5967f1(0x82)])||{};return this[_0x5967f1(0x118)]('xAxisTitle',{..._0xeb55ca,..._0x4e0a8d}),this;}[_0x215d71(0xbb)](_0x1ab9eb){const _0x3cdda7=_0x215d71;var _0x392644;const _0x22e882=((_0x392644=this['options'])==null?void 0x0:_0x392644['yAxisTitle'])||{};return this[_0x3cdda7(0x118)](_0x3cdda7(0x149),{..._0x22e882,..._0x1ab9eb}),this;}[_0x215d71(0x140)](_0x1aefef){const _0x535a2a=_0x215d71;var _0x1a6362;const _0x19257c=((_0x1a6362=this[_0x535a2a(0xa7)])==null?void 0x0:_0x1a6362['rightYAxisTitle'])||{};return this['setOptions'](_0x535a2a(0x96),{..._0x19257c,..._0x1aefef}),this;}[_0x215d71(0x13f)](_0x96e933){const _0x47597b=_0x215d71;return this[_0x47597b(0x118)]('invalidValueType',_0x96e933),this;}[_0x215d71(0x11d)](_0x3a9c63){const _0x170053=_0x215d71;return this['setOptions'](_0x170053(0xdf),_0x3a9c63),this;}[_0x215d71(0xab)](_0x4b9007){const _0x5911ac=_0x215d71;return this[_0x5911ac(0x118)](_0x5911ac(0x14c),_0x4b9007),this;}['setSeriesStyle'](_0xf565ee,_0x10d5f7){const _0x2bb5fe=_0x215d71;return this[_0x2bb5fe(0x118)](_0x2bb5fe(0x12d),{[_0xf565ee]:_0x10d5f7}),this;}['build'](){const _0x5a366e=_0x215d71;var _0x1d8675;let _0x56305e=this[_0x5a366e(0x116)];if(this[_0x5a366e(0x144)]){const _0x237c7a=(_0x1d8675=this[_0x5a366e(0xd2)][_0x5a366e(0x9b)](this[_0x5a366e(0x144)]))==null?void 0x0:_0x1d8675[_0x5a366e(0x11f)]();if(!_0x237c7a)throw new Error(_0x5a366e(0xa4)+this[_0x5a366e(0x144)]+_0x5a366e(0x86));_0x56305e=_0x237c7a;}return{'unitId':this[_0x5a366e(0xcb)],'subUnitId':_0x56305e,'chartId':this[_0x5a366e(0xeb)],'range':this['range'],'x':this['x'],'y':this['y'],'width':this['width'],'height':this[_0x5a366e(0x91)],'chartType':this[_0x5a366e(0x152)],'options':this[_0x5a366e(0xa7)],'isRowDirection':this['transposeRowsAndColumns']};}}class _0x2767f2{constructor(_0x5e6fda,_0x350c77,_0x3fa17c,_0x3ac1e8){const _0xfac731=_0x215d71;_0x33761b(this,_0xfac731(0xcb)),_0x33761b(this,_0xfac731(0x116)),_0x33761b(this,'chartId'),_0x33761b(this,_0xfac731(0x12a)),(this[_0xfac731(0xcb)]=_0x5e6fda,this[_0xfac731(0x116)]=_0x350c77,this[_0xfac731(0xeb)]=_0x3fa17c,this[_0xfac731(0x12a)]=_0x3ac1e8);}[_0x215d71(0x138)](){return this['chartId'];}[_0x215d71(0x11b)](){const _0x2db499=_0x215d71,_0x183bb6=this[_0x2db499(0x12a)]['get'](_0x364405[_0x2db499(0x137)])[_0x2db499(0x13d)](this[_0x2db499(0xeb)]);if(_0x183bb6)return _0x183bb6[_0x2db499(0x155)]['getRangeInfo']();}[_0x215d71(0x105)](_0x19cfaa){const _0x2d815d=_0x215d71;return this['_injector'][_0x2d815d(0x80)](_0x58ea46[_0x2d815d(0xff)])[_0x2d815d(0xd4)](_0x364405[_0x2d815d(0x128)]['id'],{'unitId':this[_0x2d815d(0xcb)],'chartModelId':this[_0x2d815d(0xeb)],'range':_0x19cfaa});}[_0x215d71(0xd3)](){const _0x59b391=_0x215d71;var _0x3b2872;const _0x251c1d=this[_0x59b391(0x12a)][_0x59b391(0x80)](_0x364405[_0x59b391(0x137)])[_0x59b391(0x13d)](this[_0x59b391(0xeb)]);if(_0x251c1d)return(_0x3b2872=_0x251c1d['config'])==null?void 0x0:_0x3b2872[_0x59b391(0x95)];}[_0x215d71(0x145)](){const _0x50bfa0=_0x215d71;var _0x321e77;const _0xf0f2de=this[_0x50bfa0(0x12a)][_0x50bfa0(0x80)](_0x364405[_0x50bfa0(0x137)])[_0x50bfa0(0x13d)](this[_0x50bfa0(0xeb)]);if(_0xf0f2de)return(_0x321e77=_0xf0f2de['config'])==null?void 0x0:_0x321e77[_0x50bfa0(0x148)];}['modify'](){const _0x3941e3=_0x215d71,_0x5110cf=this[_0x3941e3(0x12a)][_0x3941e3(0x80)](_0x58ea46[_0x3941e3(0x133)])['getCurrentUnitForType'](_0x58ea46[_0x3941e3(0xc2)][_0x3941e3(0x122)]);return new _0x2e428e(this[_0x3941e3(0xcb)],this[_0x3941e3(0x116)],_0x5110cf,this[_0x3941e3(0x12a)],this[_0x3941e3(0xeb)]);}}class _0x4feb36 extends _0x4967c9[_0x215d71(0x136)]{async[_0x215d71(0x130)](_0x25717b){const _0xee21fc=_0x215d71;var _0x401713,_0x3a7dfa,_0xb8fe6b;const _0x9fd30a=_0x25717b[_0xee21fc(0xcb)]||this[_0xee21fc(0xf7)]()[_0xee21fc(0xad)](),_0x410a7f=_0x25717b[_0xee21fc(0x116)]||this[_0xee21fc(0x11f)](),_0x41812f=_0x25717b[_0xee21fc(0xeb)]||_0x58ea46[_0xee21fc(0x89)](),_0x5102c7=_0x25717b[_0xee21fc(0x152)],_0x4b9244=_0x25717b[_0xee21fc(0xfe)],_0x396034={'x':_0x25717b['x'],'y':_0x25717b['y']},_0x25dfb5=_0x25717b['width'],_0x2f26bf=_0x25717b[_0xee21fc(0x91)],_0x489982=(_0x401713=_0x25717b['options'])==null?void 0x0:_0x401713[_0xee21fc(0x9f)],_0x44a724=(_0x3a7dfa=_0x25717b[_0xee21fc(0xa7)])==null?void 0x0:_0x3a7dfa[_0xee21fc(0xb4)],_0x46dbb1=_0x675d4b(_0x9fd30a,_0x41812f,_0x5102c7,_0x25717b['options']),_0x30c871=(_0xb8fe6b=_0x25717b[_0xee21fc(0x107)])!=null?_0xb8fe6b:!0x0;if(!_0x4b9244)throw new Error(_0xee21fc(0x151));return await this['_commandService'][_0xee21fc(0xd4)](_0x398485[_0xee21fc(0x134)]['id'],{'unitId':_0x9fd30a,'subUnitId':_0x410a7f,'chartId':_0x41812f,'chartType':_0x5102c7,'range':_0x4b9244,'position':_0x396034,'width':_0x25dfb5,'height':_0x2f26bf,'backgroundColor':_0x489982,'borderColor':_0x44a724,'config':_0x46dbb1,'isRowDirection':_0x30c871}),new _0x2767f2(_0x9fd30a,_0x410a7f,_0x41812f,this['_injector']);}[_0x215d71(0x8b)](_0x38ead5){const _0x636da2=_0x215d71,{unitId:_0x793489,chartId:_0x30651a,chartType:_0x208cd8,options:_0xcba633}=_0x38ead5,_0x526cf7=_0x675d4b(_0x793489,_0x30651a,_0x208cd8,_0xcba633);this[_0x636da2(0x88)][_0x636da2(0xd4)](_0x364405[_0x636da2(0x100)]['id'],_0x526cf7);}[_0x215d71(0x10b)](_0x42c394){const _0x32c5f6=_0x215d71;if(_0x42c394)return new _0x2e428e(_0x42c394[_0x32c5f6(0xcb)],_0x42c394['subUnitId'],this[_0x32c5f6(0xd2)],this[_0x32c5f6(0x12a)],_0x42c394[_0x32c5f6(0xeb)]);const _0x166754=this[_0x32c5f6(0xf7)]()['getUnitId'](),_0x1d2f8f=this['getSheetId']();return new _0x2e428e(_0x166754,_0x1d2f8f,this['_workbook'],this[_0x32c5f6(0x12a)]);}[_0x215d71(0x108)](){const _0x48ad56=_0x215d71,_0x1e0a4d=this['_injector'][_0x48ad56(0x80)](_0x364405[_0x48ad56(0x137)]),_0x587652=this[_0x48ad56(0xf7)]()[_0x48ad56(0xad)]();return _0x1e0a4d[_0x48ad56(0xb2)](_0x587652,this[_0x48ad56(0x11f)]())[_0x48ad56(0x109)](_0x4e2227=>new _0x2767f2(_0x587652,this[_0x48ad56(0x11f)](),_0x4e2227['id'],this[_0x48ad56(0x12a)]));}['removeChart'](_0x419ffb){const _0x3b4b39=_0x215d71,_0x568669=_0x419ffb[_0x3b4b39(0xcb)],_0x13f047=_0x419ffb['subUnitId'],_0x1ad43d=_0x419ffb[_0x3b4b39(0xeb)],_0x437d6e={'unitId':_0x568669,'drawings':[{'unitId':_0x568669,'subUnitId':_0x13f047,'drawingId':_0x1ad43d,'drawingType':_0x58ea46['DrawingTypeEnum']['DRAWING_CHART']}]};return this[_0x3b4b39(0x88)]['executeCommand'](_0x408014[_0x3b4b39(0xd0)]['id'],_0x437d6e);}[_0x215d71(0x13b)](_0x1d545b,_0x55aa30){const _0x3e072a=_0x215d71;this[_0x3e072a(0x12a)]['get'](_0x364405[_0x3e072a(0xb3)])[_0x3e072a(0xc5)](_0x1d545b,_0x55aa30);}}_0x4967c9[_0x215d71(0x136)][_0x215d71(0x8a)](_0x4feb36);class _0x4f1e9a extends _0x58ea46[_0x215d71(0xa1)]{get[_0x215d71(0x99)](){const _0x245529=_0x215d71;return _0x364405[_0x245529(0xe2)];}get[_0x215d71(0x150)](){const _0x45249a=_0x215d71;return _0x364405[_0x45249a(0x150)];}get[_0x215d71(0x9d)](){return _0x364405['SelectModeEnum'];}get[_0x215d71(0xdd)](){const _0x59825e=_0x215d71;return _0x364405[_0x59825e(0xdd)];}get['ChartBorderDashType'](){const _0x1cfea3=_0x215d71;return _0x364405[_0x1cfea3(0x110)];}get[_0x215d71(0x143)](){const _0x34758c=_0x215d71;return _0x364405[_0x34758c(0x143)];}get[_0x215d71(0xa0)](){const _0x4c8ef7=_0x215d71;return _0x364405[_0x4c8ef7(0xa0)];}}_0x58ea46[_0x215d71(0xa1)][_0x215d71(0x8a)](_0x4f1e9a);class _0xd5bccf extends _0x2e428e{constructor(_0x59c234,_0x4de5f9,_0x5f192b,_0x48debd,_0xe42d73){const _0x1a0e2b=_0x215d71;super(_0x59c234,_0x4de5f9,_0x5f192b,_0x48debd,_0xe42d73),_0x33761b(this,'lineStyle'),_0x33761b(this,_0x1a0e2b(0x158)),_0x33761b(this,_0x1a0e2b(0xbc)),_0x33761b(this,_0x1a0e2b(0x93));}['setLineStyle'](_0x5cea4b){const _0x5966c4=_0x215d71;return this[_0x5966c4(0x90)]=_0x5cea4b,this;}[_0x215d71(0x157)](_0x58b184){const _0x577bf7=_0x215d71;return this[_0x577bf7(0x158)]=_0x58b184,this;}['setDataPointColor'](_0x508bf5){const _0x114a05=_0x215d71;return this[_0x114a05(0xbc)]=_0x508bf5,this;}['setDataPointSize'](_0x298533){const _0x490f86=_0x215d71;return this[_0x490f86(0x93)]=_0x298533,this;}['build'](){const _0x851113=_0x215d71,_0x3bba3e=super['build']();_0x3bba3e[_0x851113(0x152)]=_0x364405[_0x851113(0xe2)][_0x851113(0x127)];const _0x4cb4d9=_0x3bba3e['options']||{};return _0x4a9d1d(_0x4cb4d9,'area.lineStyle',this[_0x851113(0x90)]),_0x4a9d1d(_0x4cb4d9,_0x851113(0xb7),this[_0x851113(0x158)]),_0x4a9d1d(_0x4cb4d9,'allSeriesStyle.point.color',this[_0x851113(0xbc)]),_0x4a9d1d(_0x4cb4d9,_0x851113(0x14b),this[_0x851113(0x93)]),_0x3bba3e[_0x851113(0xa7)]=_0x4cb4d9,_0x3bba3e;}}class _0x593673 extends _0x2e428e{[_0x215d71(0x8f)](){const _0x523248=_0x215d71;return new _0xd5bccf(this[_0x523248(0xcb)],this[_0x523248(0x116)],this['_workbook'],this[_0x523248(0x12a)],this[_0x523248(0xeb)]);}}_0x2e428e[_0x215d71(0x8a)](_0x593673);class _0x11b8a5 extends _0x2e428e{constructor(_0x35d457,_0x8db6b6,_0x37d39d,_0x74013b,_0x4c5978){const _0x330d90=_0x215d71;super(_0x35d457,_0x8db6b6,_0x37d39d,_0x74013b,_0x4c5978),_0x33761b(this,_0x330d90(0x120)),_0x33761b(this,_0x330d90(0xb4)),_0x33761b(this,_0x330d90(0x15f)),_0x33761b(this,_0x330d90(0xcd)),_0x33761b(this,_0x330d90(0x12f)),_0x33761b(this,_0x330d90(0x160));}['setDoughnutHole'](_0x3f45c5){const _0x360c30=_0x215d71;return this[_0x360c30(0x120)]=_0x3f45c5,this;}[_0x215d71(0x102)](_0x4a8953){const _0x35da3d=_0x215d71;return this[_0x35da3d(0xb4)]=_0x4a8953,this;}[_0x215d71(0x154)](_0xee6077){const _0x147068=_0x215d71;return this[_0x147068(0x15f)]=_0xee6077,this;}[_0x215d71(0xc0)](_0x37b538){const _0x4b514f=_0x215d71;return this[_0x4b514f(0xcd)]=_0x37b538,this;}[_0x215d71(0xf4)](_0xc4f77a){const _0x5aa7b8=_0x215d71;return this[_0x5aa7b8(0x12f)]=_0xc4f77a,this;}[_0x215d71(0xc6)](_0x38bebd){const _0x502fbc=_0x215d71;return this[_0x502fbc(0x160)]=_0x38bebd,this;}[_0x215d71(0x15d)](){const _0x2f4282=_0x215d71,_0x456526=super[_0x2f4282(0x15d)]();_0x456526[_0x2f4282(0x152)]=_0x364405[_0x2f4282(0xe2)]['Pie'];const _0x279308=_0x456526[_0x2f4282(0xa7)]||{};return _0x4a9d1d(_0x279308,_0x2f4282(0xf5),this['doughnutHole']),_0x4a9d1d(_0x279308,_0x2f4282(0xb9),this['borderColor']),_0x4a9d1d(_0x279308,'pie.hasPaddingAngle',this[_0x2f4282(0x15f)]),_0x4a9d1d(_0x279308,_0x2f4282(0xef),this[_0x2f4282(0xcd)]),_0x4a9d1d(_0x279308,_0x2f4282(0x13c),this[_0x2f4282(0x12f)]),_0x4a9d1d(_0x279308,_0x2f4282(0xec),this[_0x2f4282(0x160)]),_0x456526['options']=_0x279308,_0x456526;}}class _0x589a34 extends _0x2e428e{[_0x215d71(0xb0)](){const _0x3e12fd=_0x215d71;return new _0x11b8a5(this[_0x3e12fd(0xcb)],this[_0x3e12fd(0x116)],this[_0x3e12fd(0xd2)],this['_injector'],this[_0x3e12fd(0xeb)]);}}_0x2e428e[_0x215d71(0x8a)](_0x589a34);class _0x3649c1 extends _0x2e428e{constructor(_0x2993e5,_0x587305,_0xc0a526,_0x5d5efa,_0x43d623){super(_0x2993e5,_0x587305,_0xc0a526,_0x5d5efa,_0x43d623),_0x33761b(this,'shape'),_0x33761b(this,'fill');}[_0x215d71(0xea)](_0x28e1fb){return this['shape']=_0x28e1fb,this;}[_0x215d71(0xd1)](_0x29a55f){return this['fill']=_0x29a55f,this;}[_0x215d71(0x15d)](){const _0x40fd9e=_0x215d71,_0x22992d=super['build']();_0x22992d['chartType']=_0x364405['ChartTypeBits'][_0x40fd9e(0x10e)];const _0x2f2ae5=_0x22992d[_0x40fd9e(0xa7)]||{};return _0x4a9d1d(_0x2f2ae5,_0x40fd9e(0x84),this[_0x40fd9e(0x12c)]),_0x4a9d1d(_0x2f2ae5,_0x40fd9e(0x131),this[_0x40fd9e(0xed)]),_0x22992d['options']=_0x2f2ae5,_0x22992d;}}class _0x8f04bf extends _0x2e428e{[_0x215d71(0xf6)](){const _0x42f9f3=_0x215d71;return new _0x3649c1(this[_0x42f9f3(0xcb)],this['subUnitId'],this[_0x42f9f3(0xd2)],this[_0x42f9f3(0x12a)],this[_0x42f9f3(0xeb)]);}}_0x2e428e[_0x215d71(0x8a)](_0x8f04bf),_0x274d2a[_0x215d71(0x9c)]=_0x2767f2,_0x274d2a['FChartBuilderBase']=_0x2e428e,_0x274d2a[_0x215d71(0xda)]=_0xd5bccf,_0x274d2a[_0x215d71(0x12b)]=_0x11b8a5,_0x274d2a[_0x215d71(0x8e)]=_0x3649c1,Object['defineProperty'](_0x274d2a,Symbol[_0x215d71(0x15e)],{'value':_0x215d71(0xbf)});}));function _0x4f6e(_0x2b74db,_0x307721){const _0x17b2b2=_0x17b2();return _0x4f6e=function(_0x4f6e29,_0x3c4263){_0x4f6e29=_0x4f6e29-0x80;let _0x530a64=_0x17b2b2[_0x4f6e29];return _0x530a64;},_0x4f6e(_0x2b74db,_0x307721);}function _0x17b2(){const _0x20f8a9=['updateChart','titles.yAxisTitle.family','legend.position','RadarChartBuilder','asLineChart','lineStyle','height','titles.xAxisTitle.bold','dataPointSize','@univerjs/sheets-drawing-ui','series','rightYAxisTitle','string','content','ChartType','bold','getSheetBySheetName','FChart','SelectModeEnum','selectMode','backgroundColor','TitlePositionEnum','FEnum','italic','legend.label.color','Sheet\x20','titles.rightYAxisTitle.font','setPosition','options','titles.yAxisTitle.font','keys','indicatorLineType','setAllSeriesStyle','indicatorLabelTextColor','getUnitId','object','allSeriesStyle.point','asPieChart','sheetName','getUnitChartModels','ChartThemeService','borderColor','symbol','titles.title.fontSize','allSeriesStyle.point.shape','titles.title.family','pie.borderColor','titles.title.content','setYAxisTextStyle','dataPointColor','legend','2DJlGjT','Module','setIsHalfPie','titles.title.align','UniverInstanceType','UniverProSheetsChartUi','xAxis.label.axisTitleAlign','registerTheme','setShowLabelLine','setWidth','yAxis.label.axisTitleAlign','position','deserializeRangeWithSheet','unitId','area','isHalfPie','@univerjs/sheets/facade','width','RemoveSheetDrawingCommand','setFill','_workbook','getSeriesData','executeCommand','setProperty','titles.rightYAxisTitle.fontSize','202915zmoAKI','setXAxisTitle','titles.titlePosition','LineChartBuilder','tooltip.indicatorLineType','titles.xAxisTitle.family','AxisAlignEnum','1131606NxbyjW','axisPointer','24PueMny','titles.rightYAxisTitle.content','ChartTypeBits','6810JHIKKl','UniverSheetsDrawingUi','IRenderManagerService','titles.xAxisTitle.font','setHeight','yRightAxis','pie','setShape','chartId','pie.showLabelLine','fill','This\x20api\x20only\x20works\x20in\x20the\x20active\x20sheet.','pie.isHalfPie','@univerjs-pro/sheets-chart','tooltip.indicatorLabelColor','pie.hasPaddingAngle','context','setRosePie','pie.doughnutHole','asRadarChart','getWorkbook','titles.yAxisTitle.content','fontStyle','UniverProSheetsChartUiFacade','titles.xAxisTitle.color','length','rightYAxis','range','CommandService','ChartUpdateConfigCommand','defineProperty','setBorderColor','UniverSheetsUi','FBase','updateRange','@univerjs/core','isRowDirection','getCharts','map','titles.title.bold','newChart','axisAlignment','getRenderById','Radar','1589MFrWaO','ChartBorderDashType','fontColor','85946XNtdtY','radar','tooltip.indicatorLabelTextColor','titles.xAxisTitle.content','subUnitId','@univerjs/engine-formula','setOptions','with','title','getRange','UniverCore','setAxisPointerStyle','UniverEngineFormula','getSheetId','doughnutHole','setYAxisTitle','UNIVER_SHEET','SheetSkeletonManagerService','fontSize','theme','titles.title.font','Line','ChartUpdateSourceCommand','transposeRowsAndColumns','_injector','PieChartBuilder','shape','seriesStyleMap','rightYAxis.label.axisTitleAlign','rosePie','insertChart','radar.fill','yAxis','IUniverInstanceService','InsertChartCommand','setTransposeRowsAndColumns','FWorksheet','SheetsChartService','getChartId','titles.title.color','xAxis','registerChartTheme','pie.rosePie','getChartModel','legend.selectMode','setInvalidValueStrategy','setRightYAxisTextStyle','setTheme','10ohQhRx','LinePointShape','sourceSheetName','getCategoryData','point','10394263iZeChF','category','yAxisTitle','1791717ouPuXu','allSeriesStyle.point.size','allSeriesStyle','ISheetSelectionRenderService','tooltip.indicatorLineColor','function','LegendPositionEnum','Range\x20is\x20required\x20to\x20insert\x20a\x20chart','chartType','font','setHasPaddingAngle','dataSource','convertPositionCellToSheetOverGrid','setDataPointShape','dataPointShape','setAbsolutePosition','2727076GTouHn','@univerjs-pro/sheets-chart-ui','color','build','toStringTag','hasPaddingAngle','showLabelLine','get','titles.rightYAxisTitle.family','xAxisTitle','titles.yAxisTitle.bold','radar.shape','legend.label.italic','\x20not\x20found','@univerjs/sheets-ui','_commandService','generateRandomId','extend'];_0x17b2=function(){return _0x20f8a9;};return _0x17b2();}