@univerjs-pro/sheets-chart-ui 0.12.3-experimental.20251205-8c9a6bf → 0.12.3-nightly.202512060617
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ca-ES.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/es-ES.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/ja-JP.js +1 -1
- package/lib/cjs/locale/ko-KR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/ca-ES.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/es-ES.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/ja-JP.js +1 -1
- package/lib/es/locale/ko-KR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/facade.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/ca-ES.js +1 -1
- package/lib/locale/en-US.js +1 -1
- package/lib/locale/es-ES.js +1 -1
- package/lib/locale/fa-IR.js +1 -1
- package/lib/locale/fr-FR.js +1 -1
- package/lib/locale/ja-JP.js +1 -1
- package/lib/locale/ko-KR.js +1 -1
- package/lib/locale/ru-RU.js +1 -1
- package/lib/locale/vi-VN.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/lib/types/commands/commands/sheets-chart.command.d.ts +1 -0
- package/lib/types/facade/chart-builder/chart-builder-base.d.ts +17 -11
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ca-ES.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/es-ES.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/ja-JP.js +1 -1
- package/lib/umd/locale/ko-KR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +14 -14
|
@@ -6,21 +6,26 @@ import { FBase } from '@univerjs/core/facade';
|
|
|
6
6
|
*/
|
|
7
7
|
export interface IChartBuilderInfo {
|
|
8
8
|
/**
|
|
9
|
-
* @property {string} unitId The
|
|
9
|
+
* @property {string} unitId The workbook id where the chart is located.
|
|
10
10
|
*/
|
|
11
11
|
unitId: string;
|
|
12
12
|
/**
|
|
13
|
-
* @property {string} subUnitId The
|
|
13
|
+
* @property {string} subUnitId The worksheet id where the chart is located.
|
|
14
14
|
*/
|
|
15
15
|
subUnitId: string;
|
|
16
16
|
/**
|
|
17
|
-
* @property {string} chartId The
|
|
17
|
+
* @property {string} chartId The id of the chart.
|
|
18
18
|
*/
|
|
19
19
|
chartId: string;
|
|
20
20
|
/**
|
|
21
|
-
* @property {IRange} range The range of the chart.
|
|
21
|
+
* @property {IRange} range The data source range of the chart.
|
|
22
22
|
*/
|
|
23
23
|
range: IRange | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @property {string} sourceSheetName The name of the worksheet which the data source range of the chart belongs to.
|
|
26
|
+
* If not set, the data source range is in the current active worksheet.
|
|
27
|
+
*/
|
|
28
|
+
sourceSheetName: string | undefined;
|
|
24
29
|
/**
|
|
25
30
|
* @property {number} x The x-coordinate of the chart.
|
|
26
31
|
*/
|
|
@@ -38,7 +43,7 @@ export interface IChartBuilderInfo {
|
|
|
38
43
|
*/
|
|
39
44
|
height: number;
|
|
40
45
|
/**
|
|
41
|
-
* @property {ChartTypeBits} chartType The
|
|
46
|
+
* @property {ChartTypeBits} chartType The type of the chart.
|
|
42
47
|
*/
|
|
43
48
|
chartType: ChartTypeBits;
|
|
44
49
|
/**
|
|
@@ -242,23 +247,24 @@ export declare class FChartBuilderBase extends FBase {
|
|
|
242
247
|
protected readonly _workbook: Workbook;
|
|
243
248
|
protected readonly _injector: Injector;
|
|
244
249
|
/**
|
|
245
|
-
* @property {string} unitId The
|
|
250
|
+
* @property {string} unitId The workbook id where the chart is located.
|
|
246
251
|
*/
|
|
247
252
|
unitId: string;
|
|
248
253
|
/**
|
|
249
|
-
* @property {string} subUnitId The
|
|
254
|
+
* @property {string} subUnitId The worksheet id where the chart is located.
|
|
250
255
|
*/
|
|
251
256
|
subUnitId: string;
|
|
252
257
|
/**
|
|
253
|
-
* @property {string} chartId The
|
|
258
|
+
* @property {string} chartId The id of the chart.
|
|
254
259
|
*/
|
|
255
260
|
chartId: string;
|
|
256
261
|
/**
|
|
257
|
-
* @property {IRange} range The source range of the chart.
|
|
262
|
+
* @property {IRange} range The data source range of the chart.
|
|
258
263
|
*/
|
|
259
264
|
range: IRange | undefined;
|
|
260
265
|
/**
|
|
261
|
-
* @property {string} sourceSheetName The source
|
|
266
|
+
* @property {string} sourceSheetName The name of the worksheet which the data source range of the chart belongs to.
|
|
267
|
+
* If not set, the data source range is in the current active worksheet.
|
|
262
268
|
*/
|
|
263
269
|
sourceSheetName: string | undefined;
|
|
264
270
|
/**
|
|
@@ -278,7 +284,7 @@ export declare class FChartBuilderBase extends FBase {
|
|
|
278
284
|
*/
|
|
279
285
|
height: number;
|
|
280
286
|
/**
|
|
281
|
-
* @property {ChartTypeBits} chartType The
|
|
287
|
+
* @property {ChartTypeBits} chartType The type of the chart.
|
|
282
288
|
*/
|
|
283
289
|
chartType: ChartTypeBits;
|
|
284
290
|
/**
|
package/lib/umd/facade.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x34e4(_0x481c88,_0x5117b9){_0x481c88=_0x481c88-0x1e0;const _0x2d91fe=_0x2d91();let _0x34e417=_0x2d91fe[_0x481c88];return _0x34e417;}(function(_0xd8a64f,_0x21742b){const _0x4cc292=_0x34e4,_0x292da=_0xd8a64f();while(!![]){try{const _0x4b08c7=-parseInt(_0x4cc292(0x221))/0x1+parseInt(_0x4cc292(0x1ff))/0x2*(-parseInt(_0x4cc292(0x1e4))/0x3)+parseInt(_0x4cc292(0x230))/0x4*(parseInt(_0x4cc292(0x207))/0x5)+-parseInt(_0x4cc292(0x2c7))/0x6+-parseInt(_0x4cc292(0x20c))/0x7+parseInt(_0x4cc292(0x255))/0x8+parseInt(_0x4cc292(0x22a))/0x9;if(_0x4b08c7===_0x21742b)break;else _0x292da['push'](_0x292da['shift']());}catch(_0x5d2307){_0x292da['push'](_0x292da['shift']());}}}(_0x2d91,0xa3314),function(_0x32a568,_0x308bdb){const _0x29b0c4=_0x34e4;typeof exports==_0x29b0c4(0x23a)&&typeof module<'u'?_0x308bdb(exports,require('@univerjs-pro/engine-chart'),require('@univerjs-pro/sheets-chart'),require('@univerjs-pro/sheets-chart-ui'),require('@univerjs/core'),require('@univerjs/sheets-drawing-ui'),require('@univerjs/sheets/facade'),require('@univerjs/core/facade'),require('@univerjs/engine-formula'),require('@univerjs/engine-render'),require('@univerjs/sheets-ui')):typeof define=='function'&&define[_0x29b0c4(0x271)]?define([_0x29b0c4(0x278),'@univerjs-pro/engine-chart',_0x29b0c4(0x1ec),_0x29b0c4(0x231),_0x29b0c4(0x249),'@univerjs/sheets-drawing-ui',_0x29b0c4(0x2c3),_0x29b0c4(0x289),'@univerjs/engine-formula','@univerjs/engine-render',_0x29b0c4(0x253)],_0x308bdb):(_0x32a568=typeof globalThis<'u'?globalThis:_0x32a568||self,_0x308bdb(_0x32a568[_0x29b0c4(0x2b1)]={},_0x32a568[_0x29b0c4(0x29b)],_0x32a568[_0x29b0c4(0x28e)],_0x32a568['UniverProSheetsChartUi'],_0x32a568[_0x29b0c4(0x2ad)],_0x32a568[_0x29b0c4(0x234)],_0x32a568[_0x29b0c4(0x2bd)],_0x32a568[_0x29b0c4(0x298)],_0x32a568[_0x29b0c4(0x1e3)],_0x32a568['UniverEngineRender'],_0x32a568[_0x29b0c4(0x229)]));}(this,function(_0xbd4ca,_0x22f4a9,_0x5ce881,_0x32eada,_0x1779d9,_0x387652,_0x54ab30,_0x4c27dc,_0x18b9ca,_0xb1392f,_0x1b11ae){'use strict';const _0xf991da=_0x34e4;var _0xb0684f=Object[_0xf991da(0x268)],_0x3ff993=(_0x1640a5,_0x290d3f,_0x323d93)=>_0x290d3f in _0x1640a5?_0xb0684f(_0x1640a5,_0x290d3f,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x323d93}):_0x1640a5[_0x290d3f]=_0x323d93,_0x3510a0=(_0x2120a6,_0x3a37a3,_0x38f88b)=>_0x3ff993(_0x2120a6,typeof _0x3a37a3!=_0xf991da(0x27b)?_0x3a37a3+'':_0x3a37a3,_0x38f88b);const _0x571aae=(_0xb76a6e,_0x2d741a,_0x394617)=>{const _0x4e898d=_0xf991da;_0x394617!==void 0x0&&_0x5ce881[_0x4e898d(0x1f5)](_0xb76a6e,_0x2d741a,_0x394617);},_0x20d153=(_0x249a5a,_0xa127cf,_0x27f95f,_0x44b556={})=>{const _0x339875=_0xf991da,_0xc1e5c3={},_0x1f7725={};if(_0x44b556['title']){const _0xd6f78d=_0x44b556['title'];_0x571aae(_0xc1e5c3,'titles.title.content',_0xd6f78d[_0x339875(0x2b4)]),_0x571aae(_0xc1e5c3,_0x339875(0x2af),_0xd6f78d['font']),_0x571aae(_0xc1e5c3,'titles.title.fontSize',_0xd6f78d[_0x339875(0x222)]),_0x571aae(_0xc1e5c3,_0x339875(0x26b),_0xd6f78d[_0x339875(0x22b)]),_0x571aae(_0xc1e5c3,_0x339875(0x27a),_0xd6f78d['fontStyle']),_0x571aae(_0xc1e5c3,_0x339875(0x2b5),_0xd6f78d['bold']),_0x571aae(_0xc1e5c3,_0x339875(0x279),_0xd6f78d[_0x339875(0x242)]),_0x571aae(_0xc1e5c3,_0x339875(0x235),_0xd6f78d[_0x339875(0x219)]);}if(_0x44b556[_0x339875(0x27f)]){const _0x481a03=_0x44b556[_0x339875(0x27f)];_0x571aae(_0xc1e5c3,_0x339875(0x24a),_0x481a03[_0x339875(0x219)]),_0x571aae(_0xc1e5c3,'legend.selectMode',_0x481a03[_0x339875(0x294)]),_0x571aae(_0xc1e5c3,_0x339875(0x2a4),_0x481a03[_0x339875(0x222)]),_0x571aae(_0xc1e5c3,_0x339875(0x22e),_0x481a03['color']),_0x571aae(_0xc1e5c3,_0x339875(0x2a2),_0x481a03['bold']),_0x571aae(_0xc1e5c3,_0x339875(0x290),_0x481a03[_0x339875(0x228)]);}if(_0x44b556[_0x339875(0x295)]){const _0x2ea77c=_0x44b556[_0x339875(0x295)];_0x571aae(_0xc1e5c3,_0x339875(0x208),_0x2ea77c[_0x339875(0x1ea)]),_0x571aae(_0xc1e5c3,_0x339875(0x237),_0x2ea77c['borderColor']),_0x571aae(_0xc1e5c3,_0x339875(0x2c9),_0x2ea77c[_0x339875(0x213)]),_0x571aae(_0xc1e5c3,_0x339875(0x24f),_0x2ea77c[_0x339875(0x275)]),_0x571aae(_0xc1e5c3,'pie.rosePie',_0x2ea77c[_0x339875(0x224)]),_0x571aae(_0xc1e5c3,_0x339875(0x2cb),_0x2ea77c[_0x339875(0x21f)]);}if(_0x44b556['axisPointer']){const _0x3fb94c=_0x44b556[_0x339875(0x238)];_0x571aae(_0xc1e5c3,_0x339875(0x2bc),_0x3fb94c[_0x339875(0x24b)]),_0x571aae(_0xc1e5c3,'tooltip.indicatorLineType',_0x3fb94c[_0x339875(0x274)]),_0x571aae(_0xc1e5c3,_0x339875(0x212),_0x3fb94c[_0x339875(0x2a0)]),_0x571aae(_0xc1e5c3,_0x339875(0x2a5),_0x3fb94c[_0x339875(0x20a)]);}if(_0x44b556[_0x339875(0x267)]&&(_0x571aae(_0xc1e5c3,_0x339875(0x263),_0x44b556[_0x339875(0x267)]['border']),_0x571aae(_0xc1e5c3,_0x339875(0x28d),_0x44b556[_0x339875(0x267)]['label']),_0x571aae(_0xc1e5c3,_0x339875(0x202),_0x44b556['allSeriesStyle'][_0x339875(0x259)]),_0x571aae(_0xc1e5c3,_0x339875(0x23e),_0x44b556['allSeriesStyle'][_0x339875(0x27e)]),_0x571aae(_0xc1e5c3,_0x339875(0x29a),_0x44b556[_0x339875(0x267)][_0x339875(0x21b)])),_0x44b556['area']&&_0x571aae(_0xc1e5c3,'area.lineStyle',_0x44b556['area'][_0x339875(0x201)]),_0x44b556[_0x339875(0x283)]&&_0x571aae(_0xc1e5c3,_0x339875(0x283),_0x44b556[_0x339875(0x283)]),_0x44b556[_0x339875(0x29f)]&&_0x571aae(_0xc1e5c3,_0x339875(0x29f),_0x44b556['backgroundColor']),_0x44b556[_0x339875(0x1ed)]&&_0x571aae(_0xc1e5c3,_0x339875(0x1ed),_0x44b556[_0x339875(0x1ed)]),_0x44b556[_0x339875(0x2c5)]&&_0x571aae(_0xc1e5c3,_0x339875(0x2c5),_0x44b556[_0x339875(0x2c5)]),_0x44b556[_0x339875(0x23c)]&&_0x571aae(_0xc1e5c3,_0x339875(0x23c),_0x44b556['invalidValueType']),_0x44b556[_0x339875(0x1f6)]&&_0x571aae(_0xc1e5c3,_0x339875(0x1f6),_0x44b556[_0x339875(0x1f6)]),_0x44b556[_0x339875(0x22d)]){const _0x36a990=_0x44b556[_0x339875(0x22d)];_0x571aae(_0xc1e5c3,_0x339875(0x264),_0x36a990[_0x339875(0x2b4)]),_0x571aae(_0xc1e5c3,_0x339875(0x2b2),_0x36a990['font']),_0x571aae(_0xc1e5c3,'titles.xAxisTitle.fontSize',_0x36a990[_0x339875(0x222)]),_0x571aae(_0xc1e5c3,_0x339875(0x2c2),_0x36a990['fontColor']),_0x571aae(_0xc1e5c3,_0x339875(0x20b),_0x36a990[_0x339875(0x27c)]),_0x571aae(_0xc1e5c3,_0x339875(0x252),_0x36a990['bold']),_0x571aae(_0xc1e5c3,_0x339875(0x211),_0x36a990[_0x339875(0x282)]);}if(_0x44b556[_0x339875(0x214)]){const _0x294076=_0x44b556['yAxisTitle'];_0x571aae(_0xc1e5c3,_0x339875(0x227),_0x294076[_0x339875(0x2b4)]),_0x571aae(_0xc1e5c3,_0x339875(0x28a),_0x294076['font']),_0x571aae(_0xc1e5c3,'titles.yAxisTitle.fontSize',_0x294076[_0x339875(0x222)]),_0x571aae(_0xc1e5c3,_0x339875(0x21e),_0x294076[_0x339875(0x22b)]),_0x571aae(_0xc1e5c3,_0x339875(0x1e1),_0x294076[_0x339875(0x27c)]),_0x571aae(_0xc1e5c3,'titles.yAxisTitle.bold',_0x294076[_0x339875(0x22f)]),_0x571aae(_0xc1e5c3,'yAxis.label.axisTitleAlign',_0x294076[_0x339875(0x282)]);}if(_0x44b556[_0x339875(0x1fc)]){const _0x4ac0cf=_0x44b556[_0x339875(0x1fc)];_0x571aae(_0xc1e5c3,_0x339875(0x257),_0x4ac0cf[_0x339875(0x2b4)]),_0x571aae(_0xc1e5c3,_0x339875(0x2c6),_0x4ac0cf[_0x339875(0x20e)]),_0x571aae(_0xc1e5c3,_0x339875(0x20f),_0x4ac0cf[_0x339875(0x222)]),_0x571aae(_0xc1e5c3,_0x339875(0x1fb),_0x4ac0cf[_0x339875(0x22b)]),_0x571aae(_0xc1e5c3,_0x339875(0x2bb),_0x4ac0cf[_0x339875(0x27c)]),_0x571aae(_0xc1e5c3,_0x339875(0x285),_0x4ac0cf['bold']),_0x571aae(_0xc1e5c3,_0x339875(0x203),_0x4ac0cf[_0x339875(0x282)]);}_0x44b556[_0x339875(0x23f)]&&_0x571aae(_0xc1e5c3,'xAxis',_0x44b556['xAxis']),_0x44b556[_0x339875(0x26d)]&&_0x571aae(_0xc1e5c3,_0x339875(0x26d),_0x44b556[_0x339875(0x26d)]),_0x44b556[_0x339875(0x248)]&&_0x571aae(_0xc1e5c3,'rightYAxis',_0x44b556['yRightAxis']),_0x44b556[_0x339875(0x287)]&&_0x571aae(_0xc1e5c3,'seriesStyleMap',_0x44b556[_0x339875(0x287)]);const _0x4f51f1={'unitId':_0x249a5a,'chartModelId':_0xa127cf};let _0x399890=!0x1;if(_0x27f95f!==void 0x0&&(_0x4f51f1[_0x339875(0x205)]=_0x27f95f,_0x399890=!0x0),Object[_0x339875(0x1e8)](_0xc1e5c3)[_0x339875(0x20d)]>0x0&&(_0x4f51f1['style']=_0xc1e5c3,_0x399890=!0x0),Object[_0x339875(0x1e8)](_0x1f7725)['length']>0x0&&(_0x4f51f1[_0x339875(0x2b9)]=_0x1f7725,_0x399890=!0x0),_0x399890)return _0x4f51f1;};class _0x3bffa3 extends _0x4c27dc['FBase']{constructor(_0x1840ec,_0x2172af,_0x3f503f,_0x5c86ba,_0x4f9d94){const _0x9a871c=_0xf991da;super(),_0x3510a0(this,'_workbook'),_0x3510a0(this,_0x9a871c(0x2c1)),_0x3510a0(this,_0x9a871c(0x2ae)),_0x3510a0(this,'subUnitId'),_0x3510a0(this,_0x9a871c(0x29c)),_0x3510a0(this,_0x9a871c(0x241)),_0x3510a0(this,_0x9a871c(0x28b)),_0x3510a0(this,'x'),_0x3510a0(this,'y'),_0x3510a0(this,_0x9a871c(0x288)),_0x3510a0(this,'height'),_0x3510a0(this,_0x9a871c(0x205)),_0x3510a0(this,_0x9a871c(0x273)),_0x3510a0(this,_0x9a871c(0x25e)),(this['unitId']=_0x1840ec,this[_0x9a871c(0x261)]=_0x2172af,this['_workbook']=_0x3f503f,this[_0x9a871c(0x2c1)]=_0x5c86ba,_0x4f9d94&&(this[_0x9a871c(0x29c)]=_0x4f9d94));}[_0xf991da(0x26a)](){const _0x46dd4c=_0xf991da;return this[_0x46dd4c(0x205)];}[_0xf991da(0x284)](_0x28d402){const _0x3dbd4c=_0xf991da;if(typeof _0x28d402=='string'){const _0x5281d1=_0x18b9ca[_0x3dbd4c(0x1f8)](_0x28d402);_0x5281d1[_0x3dbd4c(0x24e)]&&(this[_0x3dbd4c(0x28b)]=_0x5281d1[_0x3dbd4c(0x24e)]),this[_0x3dbd4c(0x241)]=_0x5281d1['range'];}else this[_0x3dbd4c(0x241)]=_0x28d402;return this;}[_0xf991da(0x21a)](){const _0x34e7ef=_0xf991da;return this[_0x34e7ef(0x241)]=void 0x0,this[_0x34e7ef(0x28b)]=void 0x0,this;}[_0xf991da(0x2a8)](_0x11c894,_0x46305b,_0x1f1016,_0x504d32){const _0x275c00=_0xf991da,_0x1e25dd=this[_0x275c00(0x2c1)][_0x275c00(0x25a)](_0xb1392f[_0x275c00(0x281)])[_0x275c00(0x2ab)](this[_0x275c00(0x2ae)]);if(!_0x1e25dd)throw new Error(_0x275c00(0x297));const _0x4989d0=_0x1e25dd['with'](_0x1b11ae[_0x275c00(0x1fd)]),_0x19bd5c=_0x1e25dd['with'](_0x1b11ae['SheetSkeletonManagerService']),{transform:_0x5a3aa1}=_0x1b11ae['convertPositionCellToSheetOverGrid'](this[_0x275c00(0x2ae)],this[_0x275c00(0x261)],{'row':_0x11c894,'column':_0x46305b,'rowOffset':_0x1f1016,'columnOffset':_0x504d32},0x1,0x1,_0x4989d0,_0x19bd5c),_0x989f49=_0x5a3aa1[_0x275c00(0x209)],_0x32008b=_0x5a3aa1['left'];return this['x']=_0x32008b,this['y']=_0x989f49,this;}[_0xf991da(0x1e0)](_0x536906,_0x259524){return this['x']=_0x536906,this['y']=_0x259524,this;}['setChartType'](_0x5ac759){const _0x4dd3f2=_0xf991da;return this[_0x4dd3f2(0x205)]=_0x5ac759,this;}['setWidth'](_0x1bf316){return this['width']=_0x1bf316,this;}['setHeight'](_0x1b754e){const _0x1494a3=_0xf991da;return this[_0x1494a3(0x225)]=_0x1b754e,this;}[_0xf991da(0x25f)](_0x3656e5,_0x378f7c){const _0x20d489=_0xf991da;return this[_0x20d489(0x273)]||(this[_0x20d489(0x273)]={}),_0x3656e5===''?(this['options']={...this[_0x20d489(0x273)],..._0x378f7c},this):(_0x5ce881[_0x20d489(0x1f5)](this['options'],_0x3656e5,_0x378f7c),this);}[_0xf991da(0x244)](_0x539fbe){const _0x41eb1b=_0xf991da;return this[_0x41eb1b(0x25e)]=_0x539fbe,this;}[_0xf991da(0x1f0)](_0x490cf9){const _0x34942b=_0xf991da;return this['setOptions'](_0x34942b(0x283),_0x490cf9),this;}[_0xf991da(0x250)](_0x5da9e7){const _0x217c8e=_0xf991da;var _0x2ce7fe;const _0x4d8aa2=((_0x2ce7fe=this['options'])==null?void 0x0:_0x2ce7fe['xAxisTitle'])||{};return _0x4d8aa2[_0x217c8e(0x2b4)]=_0x5da9e7,this[_0x217c8e(0x25f)](_0x217c8e(0x22d),_0x4d8aa2),this;}[_0xf991da(0x26f)](_0xe3262){const _0x261a3c=_0xf991da;var _0x2d9673;const _0x1c0966=((_0x2d9673=this[_0x261a3c(0x273)])==null?void 0x0:_0x2d9673[_0x261a3c(0x214)])||{};return _0x1c0966[_0x261a3c(0x2b4)]=_0xe3262,this[_0x261a3c(0x25f)](_0x261a3c(0x214),_0x1c0966),this;}['setRightYAxisTitle'](_0x289e88){const _0x74b35=_0xf991da;var _0x26c430;const _0x30f1ba=((_0x26c430=this[_0x74b35(0x273)])==null?void 0x0:_0x26c430[_0x74b35(0x1fc)])||{};return _0x30f1ba[_0x74b35(0x2b4)]=_0x289e88,this[_0x74b35(0x25f)]('rightYAxisTitle',_0x30f1ba),this;}[_0xf991da(0x2b6)](_0x5f4836){const _0x34cc91=_0xf991da;var _0x3cfa5a;const _0x584c4e=((_0x3cfa5a=this[_0x34cc91(0x273)])==null?void 0x0:_0x3cfa5a[_0x34cc91(0x22d)])||{};return this[_0x34cc91(0x25f)]('xAxisTitle',{..._0x584c4e,..._0x5f4836}),this;}[_0xf991da(0x239)](_0x563c0b){const _0xf45505=_0xf991da;var _0x12f6a0;const _0x1c3fdd=((_0x12f6a0=this[_0xf45505(0x273)])==null?void 0x0:_0x12f6a0[_0xf45505(0x214)])||{};return this['setOptions'](_0xf45505(0x214),{..._0x1c3fdd,..._0x563c0b}),this;}[_0xf991da(0x236)](_0x4a088c){const _0xb9be14=_0xf991da;var _0x2b57de;const _0x2663bd=((_0x2b57de=this['options'])==null?void 0x0:_0x2b57de[_0xb9be14(0x1fc)])||{};return this[_0xb9be14(0x25f)](_0xb9be14(0x1fc),{..._0x2663bd,..._0x4a088c}),this;}['setInvalidValueStrategy'](_0x201118){const _0x37fc64=_0xf991da;return this[_0x37fc64(0x25f)](_0x37fc64(0x23c),_0x201118),this;}[_0xf991da(0x246)](_0x680bcf){const _0x5bf261=_0xf991da;return this[_0x5bf261(0x25f)](_0x5bf261(0x238),_0x680bcf),this;}[_0xf991da(0x22c)](_0x1478b6){const _0x37b310=_0xf991da;return this[_0x37b310(0x25f)](_0x37b310(0x267),_0x1478b6),this;}[_0xf991da(0x232)](_0x5a124e,_0x5c9784){const _0x5e0a11=_0xf991da;return this[_0x5e0a11(0x25f)](_0x5e0a11(0x287),{[_0x5a124e]:_0x5c9784}),this;}[_0xf991da(0x1e5)](){const _0x366e00=_0xf991da;var _0x5cf23e;let _0x3f1f94=this[_0x366e00(0x261)];if(this['sourceSheetName']){const _0x1258fe=(_0x5cf23e=this[_0x366e00(0x296)]['getSheetBySheetName'](this[_0x366e00(0x28b)]))==null?void 0x0:_0x5cf23e[_0x366e00(0x247)]();if(!_0x1258fe)throw new Error(_0x366e00(0x262)+this['sourceSheetName']+'\x20not\x20found');_0x3f1f94=_0x1258fe;}return{'unitId':this[_0x366e00(0x2ae)],'subUnitId':_0x3f1f94,'chartId':this[_0x366e00(0x29c)],'range':this[_0x366e00(0x241)],'x':this['x'],'y':this['y'],'width':this[_0x366e00(0x288)],'height':this[_0x366e00(0x225)],'chartType':this['chartType'],'options':this[_0x366e00(0x273)],'isRowDirection':this[_0x366e00(0x25e)]};}}class _0x49fcde{constructor(_0x9a0940,_0x52701f,_0x313645,_0x2fb129){const _0x565478=_0xf991da;_0x3510a0(this,_0x565478(0x2ae)),_0x3510a0(this,_0x565478(0x261)),_0x3510a0(this,_0x565478(0x29c)),_0x3510a0(this,_0x565478(0x2c1)),(this[_0x565478(0x2ae)]=_0x9a0940,this[_0x565478(0x261)]=_0x52701f,this['chartId']=_0x313645,this['_injector']=_0x2fb129);}[_0xf991da(0x277)](){const _0x5b9256=_0xf991da;return this[_0x5b9256(0x29c)];}[_0xf991da(0x1ee)](){const _0x4ec42d=_0xf991da,_0xa0f906=this[_0x4ec42d(0x2c1)][_0x4ec42d(0x25a)](_0x5ce881[_0x4ec42d(0x29e)])[_0x4ec42d(0x1ef)](this[_0x4ec42d(0x29c)]);if(_0xa0f906)return _0xa0f906['dataSource'][_0x4ec42d(0x23b)]();}[_0xf991da(0x204)](_0x5ad631){const _0x4df732=_0xf991da;return this[_0x4df732(0x2c1)]['get'](_0x1779d9[_0x4df732(0x210)])[_0x4df732(0x286)](_0x5ce881[_0x4df732(0x1fe)]['id'],{'unitId':this['unitId'],'chartModelId':this[_0x4df732(0x29c)],'range':_0x5ad631});}[_0xf991da(0x25d)](){const _0x4c6cc2=_0xf991da;var _0x32cff8;const _0x33a6fd=this[_0x4c6cc2(0x2c1)][_0x4c6cc2(0x25a)](_0x5ce881[_0x4c6cc2(0x29e)])[_0x4c6cc2(0x1ef)](this[_0x4c6cc2(0x29c)]);if(_0x33a6fd)return(_0x32cff8=_0x33a6fd[_0x4c6cc2(0x28c)])==null?void 0x0:_0x32cff8[_0x4c6cc2(0x270)];}['getCategoryData'](){const _0x1466d8=_0xf991da;var _0xeea740;const _0x1cdba1=this[_0x1466d8(0x2c1)][_0x1466d8(0x25a)](_0x5ce881['SheetsChartService'])[_0x1466d8(0x1ef)](this['chartId']);if(_0x1cdba1)return(_0xeea740=_0x1cdba1['config'])==null?void 0x0:_0xeea740['category'];}['modify'](){const _0x54cd20=_0xf991da,_0x67ac30=this['_injector'][_0x54cd20(0x25a)](_0x1779d9[_0x54cd20(0x2b0)])[_0x54cd20(0x1e2)](_0x1779d9[_0x54cd20(0x28f)][_0x54cd20(0x24d)]);return new _0x3bffa3(this['unitId'],this['subUnitId'],_0x67ac30,this[_0x54cd20(0x2c1)],this[_0x54cd20(0x29c)]);}}class _0x37a7e0 extends _0x54ab30['FWorksheet']{async[_0xf991da(0x2ba)](_0x12f29b){const _0x1f015a=_0xf991da;var _0x17177d,_0x1cd79d,_0x41a401;const _0x18c5c0=_0x12f29b[_0x1f015a(0x2ae)]||this[_0x1f015a(0x2b3)]()[_0x1f015a(0x29d)](),_0x39a2bf=_0x12f29b[_0x1f015a(0x261)]||this[_0x1f015a(0x247)](),_0x455c44=_0x12f29b['chartId']||_0x1779d9['generateRandomId'](),_0x52e9ee=_0x12f29b[_0x1f015a(0x205)],_0x2c5387=_0x12f29b[_0x1f015a(0x241)],_0x4f5c5f={'x':_0x12f29b['x'],'y':_0x12f29b['y']},_0xe5dbef=_0x12f29b['width'],_0xd50923=_0x12f29b[_0x1f015a(0x225)],_0x3ed4b5=(_0x17177d=_0x12f29b['options'])==null?void 0x0:_0x17177d[_0x1f015a(0x29f)],_0x2f452f=(_0x1cd79d=_0x12f29b['options'])==null?void 0x0:_0x1cd79d[_0x1f015a(0x1ed)],_0x5b478a=_0x20d153(_0x18c5c0,_0x455c44,_0x52e9ee,_0x12f29b[_0x1f015a(0x273)]),_0x15dbda=(_0x41a401=_0x12f29b[_0x1f015a(0x251)])!=null?_0x41a401:!0x0;if(!_0x2c5387)throw new Error(_0x1f015a(0x21c));return await this[_0x1f015a(0x266)][_0x1f015a(0x286)](_0x32eada[_0x1f015a(0x2a7)]['id'],{'unitId':_0x18c5c0,'subUnitId':_0x39a2bf,'chartId':_0x455c44,'chartType':_0x52e9ee,'range':_0x2c5387,'position':_0x4f5c5f,'width':_0xe5dbef,'height':_0xd50923,'backgroundColor':_0x3ed4b5,'borderColor':_0x2f452f,'config':_0x5b478a,'isRowDirection':_0x15dbda}),new _0x49fcde(_0x18c5c0,_0x39a2bf,_0x455c44,this['_injector']);}[_0xf991da(0x243)](_0x1e3448){const _0x286b9b=_0xf991da,{unitId:_0x704e4d,chartId:_0x35d614,chartType:_0x2866ea,options:_0x849964}=_0x1e3448,_0x2618ed=_0x20d153(_0x704e4d,_0x35d614,_0x2866ea,_0x849964);this[_0x286b9b(0x266)]['executeCommand'](_0x5ce881[_0x286b9b(0x272)]['id'],_0x2618ed);}[_0xf991da(0x206)](_0x3dfc6a){const _0x45a412=_0xf991da;if(_0x3dfc6a)return new _0x3bffa3(_0x3dfc6a[_0x45a412(0x2ae)],_0x3dfc6a[_0x45a412(0x261)],this['_workbook'],this[_0x45a412(0x2c1)],_0x3dfc6a['chartId']);const _0x1246d1=this[_0x45a412(0x2b3)]()[_0x45a412(0x29d)](),_0x463b08=this[_0x45a412(0x247)]();return new _0x3bffa3(_0x1246d1,_0x463b08,this['_workbook'],this[_0x45a412(0x2c1)]);}[_0xf991da(0x254)](){const _0x4cf532=_0xf991da,_0xbe80=this[_0x4cf532(0x2c1)]['get'](_0x5ce881[_0x4cf532(0x29e)]),_0x255928=this[_0x4cf532(0x2b3)]()['getUnitId']();return _0xbe80[_0x4cf532(0x276)](_0x255928,this[_0x4cf532(0x247)]())[_0x4cf532(0x1f2)](_0x593a42=>new _0x49fcde(_0x255928,this['getSheetId'](),_0x593a42['id'],this[_0x4cf532(0x2c1)]));}[_0xf991da(0x299)](_0x4339bb){const _0x4bbaa1=_0xf991da,_0x2f6e04=_0x4339bb[_0x4bbaa1(0x2ae)],_0x2f6cb2=_0x4339bb['subUnitId'],_0x42944c=_0x4339bb[_0x4bbaa1(0x29c)],_0x3138b4={'unitId':_0x2f6e04,'drawings':[{'unitId':_0x2f6e04,'subUnitId':_0x2f6cb2,'drawingId':_0x42944c,'drawingType':_0x1779d9[_0x4bbaa1(0x1f4)][_0x4bbaa1(0x2bf)]}]};return this[_0x4bbaa1(0x266)][_0x4bbaa1(0x286)](_0x387652['RemoveSheetDrawingCommand']['id'],_0x3138b4);}[_0xf991da(0x2aa)](_0x174daa,_0x296d1a){const _0x37594d=_0xf991da;this[_0x37594d(0x2c1)][_0x37594d(0x25a)](_0x22f4a9[_0x37594d(0x27d)])[_0x37594d(0x2c4)](_0x174daa,_0x296d1a);}}_0x54ab30[_0xf991da(0x1f9)]['extend'](_0x37a7e0);class _0x529655 extends _0x4c27dc[_0xf991da(0x1e6)]{get[_0xf991da(0x25b)](){const _0x3dc09e=_0xf991da;return _0x22f4a9[_0x3dc09e(0x223)];}get['LegendPositionEnum'](){const _0x435b5d=_0xf991da;return _0x22f4a9[_0x435b5d(0x256)];}get['SelectModeEnum'](){const _0x451f02=_0xf991da;return _0x22f4a9[_0x451f02(0x215)];}get['AxisAlignEnum'](){const _0x325cd4=_0xf991da;return _0x22f4a9[_0x325cd4(0x240)];}get[_0xf991da(0x2a3)](){const _0x247b4a=_0xf991da;return _0x22f4a9[_0x247b4a(0x2a3)];}get[_0xf991da(0x216)](){const _0x24663c=_0xf991da;return _0x22f4a9[_0x24663c(0x216)];}get[_0xf991da(0x1f7)](){const _0x2f5ccf=_0xf991da;return _0x22f4a9[_0x2f5ccf(0x1f7)];}get[_0xf991da(0x2c8)](){const _0x289dbe=_0xf991da;return _0x22f4a9[_0x289dbe(0x2c8)];}}_0x4c27dc[_0xf991da(0x1e6)][_0xf991da(0x280)](_0x529655);class _0x446d5c extends _0x3bffa3{constructor(_0xfc656,_0x26a504,_0x586938,_0x216aa0,_0x551572){const _0x450232=_0xf991da;super(_0xfc656,_0x26a504,_0x586938,_0x216aa0,_0x551572),_0x3510a0(this,_0x450232(0x201)),_0x3510a0(this,_0x450232(0x292)),_0x3510a0(this,_0x450232(0x245)),_0x3510a0(this,_0x450232(0x2ca));}[_0xf991da(0x26e)](_0x4abebd){const _0x581640=_0xf991da;return this[_0x581640(0x201)]=_0x4abebd,this;}[_0xf991da(0x2c0)](_0x2e5138){const _0x4a179f=_0xf991da;return this[_0x4a179f(0x292)]=_0x2e5138,this;}[_0xf991da(0x2b8)](_0x42f019){const _0x45f73d=_0xf991da;return this[_0x45f73d(0x245)]=_0x42f019,this;}['setDataPointSize'](_0x4a0d05){const _0x551bf7=_0xf991da;return this[_0x551bf7(0x2ca)]=_0x4a0d05,this;}['build'](){const _0x1c2fa1=_0xf991da,_0x5c14f7=super[_0x1c2fa1(0x1e5)]();_0x5c14f7['chartType']=_0x22f4a9[_0x1c2fa1(0x223)][_0x1c2fa1(0x2ac)];const _0x12dc91=_0x5c14f7[_0x1c2fa1(0x273)]||{};return _0x571aae(_0x12dc91,_0x1c2fa1(0x1e7),this[_0x1c2fa1(0x201)]),_0x571aae(_0x12dc91,_0x1c2fa1(0x1e9),this[_0x1c2fa1(0x292)]),_0x571aae(_0x12dc91,_0x1c2fa1(0x1f3),this[_0x1c2fa1(0x245)]),_0x571aae(_0x12dc91,_0x1c2fa1(0x2a9),this[_0x1c2fa1(0x2ca)]),_0x5c14f7[_0x1c2fa1(0x273)]=_0x12dc91,_0x5c14f7;}}class _0x460f35 extends _0x3bffa3{[_0xf991da(0x2b7)](){const _0x58d4b9=_0xf991da;return new _0x446d5c(this[_0x58d4b9(0x2ae)],this[_0x58d4b9(0x261)],this['_workbook'],this['_injector'],this[_0x58d4b9(0x29c)]);}}_0x3bffa3['extend'](_0x460f35);class _0x3e31d6 extends _0x3bffa3{constructor(_0x1bcf3e,_0x5996a3,_0x1844eb,_0xf1c982,_0x248576){const _0x4a1a03=_0xf991da;super(_0x1bcf3e,_0x5996a3,_0x1844eb,_0xf1c982,_0x248576),_0x3510a0(this,_0x4a1a03(0x1ea)),_0x3510a0(this,_0x4a1a03(0x1ed)),_0x3510a0(this,_0x4a1a03(0x213)),_0x3510a0(this,_0x4a1a03(0x275)),_0x3510a0(this,'rosePie'),_0x3510a0(this,_0x4a1a03(0x21f));}[_0xf991da(0x217)](_0xc41d2){const _0x355b41=_0xf991da;return this[_0x355b41(0x1ea)]=_0xc41d2,this;}[_0xf991da(0x291)](_0x150a98){const _0x539ff0=_0xf991da;return this[_0x539ff0(0x1ed)]=_0x150a98,this;}[_0xf991da(0x200)](_0x4a5d2c){return this['hasPaddingAngle']=_0x4a5d2c,this;}[_0xf991da(0x21d)](_0x125bab){const _0x28d618=_0xf991da;return this[_0x28d618(0x275)]=_0x125bab,this;}[_0xf991da(0x269)](_0x6fbf41){const _0x94fa4=_0xf991da;return this[_0x94fa4(0x224)]=_0x6fbf41,this;}[_0xf991da(0x2a6)](_0x5a3822){const _0x57c373=_0xf991da;return this[_0x57c373(0x21f)]=_0x5a3822,this;}['build'](){const _0x37b848=_0xf991da,_0x33ccc8=super[_0x37b848(0x1e5)]();_0x33ccc8[_0x37b848(0x205)]=_0x22f4a9['ChartTypeBits'][_0x37b848(0x2be)];const _0x19c857=_0x33ccc8['options']||{};return _0x571aae(_0x19c857,_0x37b848(0x208),this[_0x37b848(0x1ea)]),_0x571aae(_0x19c857,'pie.borderColor',this[_0x37b848(0x1ed)]),_0x571aae(_0x19c857,'pie.hasPaddingAngle',this[_0x37b848(0x213)]),_0x571aae(_0x19c857,_0x37b848(0x24f),this[_0x37b848(0x275)]),_0x571aae(_0x19c857,_0x37b848(0x26c),this[_0x37b848(0x224)]),_0x571aae(_0x19c857,'pie.showLabelLine',this[_0x37b848(0x21f)]),_0x33ccc8[_0x37b848(0x273)]=_0x19c857,_0x33ccc8;}}class _0x4260ec extends _0x3bffa3{[_0xf991da(0x233)](){const _0xaf1928=_0xf991da;return new _0x3e31d6(this[_0xaf1928(0x2ae)],this[_0xaf1928(0x261)],this[_0xaf1928(0x296)],this[_0xaf1928(0x2c1)],this[_0xaf1928(0x29c)]);}}_0x3bffa3['extend'](_0x4260ec);class _0x264490 extends _0x3bffa3{constructor(_0x339f4b,_0x4e2630,_0x40ee67,_0x570708,_0x1ab674){const _0x2fc23b=_0xf991da;super(_0x339f4b,_0x4e2630,_0x40ee67,_0x570708,_0x1ab674),_0x3510a0(this,'shape'),_0x3510a0(this,_0x2fc23b(0x265));}[_0xf991da(0x1f1)](_0x144c9a){const _0x4ea30c=_0xf991da;return this[_0x4ea30c(0x25c)]=_0x144c9a,this;}[_0xf991da(0x258)](_0x5a186f){return this['fill']=_0x5a186f,this;}[_0xf991da(0x1e5)](){const _0x4a71e3=_0xf991da,_0x980e7e=super[_0x4a71e3(0x1e5)]();_0x980e7e[_0x4a71e3(0x205)]=_0x22f4a9[_0x4a71e3(0x223)][_0x4a71e3(0x226)];const _0x9d4125=_0x980e7e[_0x4a71e3(0x273)]||{};return _0x571aae(_0x9d4125,_0x4a71e3(0x23d),this['shape']),_0x571aae(_0x9d4125,'radar.fill',this['fill']),_0x980e7e['options']=_0x9d4125,_0x980e7e;}}class _0x3c08a7 extends _0x3bffa3{[_0xf991da(0x260)](){const _0x3619f2=_0xf991da;return new _0x264490(this[_0x3619f2(0x2ae)],this['subUnitId'],this[_0x3619f2(0x296)],this[_0x3619f2(0x2c1)],this['chartId']);}}_0x3bffa3[_0xf991da(0x280)](_0x3c08a7),_0xbd4ca[_0xf991da(0x293)]=_0x49fcde,_0xbd4ca[_0xf991da(0x1fa)]=_0x3bffa3,_0xbd4ca[_0xf991da(0x220)]=_0x446d5c,_0xbd4ca[_0xf991da(0x24c)]=_0x3e31d6,_0xbd4ca[_0xf991da(0x218)]=_0x264490,Object[_0xf991da(0x268)](_0xbd4ca,Symbol[_0xf991da(0x2a1)],{'value':_0xf991da(0x1eb)});}));function _0x2d91(){const _0x54c91a=['_injector','titles.xAxisTitle.color','@univerjs/sheets/facade','registerTheme','gradientFill','titles.rightYAxisTitle.font','2253234YEtPmo','RadarShape','pie.hasPaddingAngle','dataPointSize','pie.showLabelLine','setAbsolutePosition','titles.yAxisTitle.family','getCurrentUnitForType','UniverEngineFormula','707217dmyFaL','build','FEnum','area.lineStyle','keys','allSeriesStyle.point.shape','doughnutHole','Module','@univerjs-pro/sheets-chart','borderColor','getRange','getChartModel','setTheme','setShape','map','allSeriesStyle.point.color','DrawingTypeEnum','setProperty','radar','TitlePositionEnum','deserializeRangeWithSheet','FWorksheet','FChartBuilderBase','titles.rightYAxisTitle.color','rightYAxisTitle','ISheetSelectionRenderService','ChartUpdateSourceCommand','2VGSwzJ','setHasPaddingAngle','lineStyle','allSeriesStyle.rightYAxis','rightYAxis.label.axisTitleAlign','updateRange','chartType','newChart','542815tiQizj','pie.doughnutHole','top','indicatorLabelTextColor','titles.xAxisTitle.family','8405530zKaiDP','length','font','titles.rightYAxisTitle.fontSize','ICommandService','xAxis.label.axisTitleAlign','tooltip.indicatorLineColor','hasPaddingAngle','yAxisTitle','SelectModeEnum','LinePointShape','setDoughnutHole','RadarChartBuilder','position','clearRange','color','Range\x20is\x20required\x20to\x20insert\x20a\x20chart','setIsHalfPie','titles.yAxisTitle.color','showLabelLine','LineChartBuilder','1014468MMvAcI','fontSize','ChartTypeBits','rosePie','height','Radar','titles.yAxisTitle.content','italic','UniverSheetsUi','21819006joMErT','fontColor','setAllSeriesStyle','xAxisTitle','legend.label.color','bold','24KYHUkj','@univerjs-pro/sheets-chart-ui','setSeriesStyle','asPieChart','UniverSheetsDrawingUi','titles.titlePosition','setRightYAxisTextStyle','pie.borderColor','axisPointer','setYAxisTextStyle','object','getRangeInfo','invalidValueType','radar.shape','allSeriesStyle.point','xAxis','AxisAlignEnum','range','titleAlignment','updateChart','setTransposeRowsAndColumns','dataPointColor','setAxisPointerStyle','getSheetId','yRightAxis','@univerjs/core','legend.position','indicatorLabelColor','PieChartBuilder','UNIVER_SHEET','sheetName','pie.isHalfPie','setXAxisTitle','isRowDirection','titles.xAxisTitle.bold','@univerjs/sheets-ui','getCharts','3354080AECxSJ','LegendPositionEnum','titles.rightYAxisTitle.content','setFill','rightYAxis','get','ChartType','shape','getSeriesData','transposeRowsAndColumns','setOptions','asRadarChart','subUnitId','Sheet\x20','allSeriesStyle.border','titles.xAxisTitle.content','fill','_commandService','allSeriesStyle','defineProperty','setRosePie','getChartType','titles.title.color','pie.rosePie','yAxis','setLineStyle','setYAxisTitle','series','amd','ChartUpdateConfigCommand','options','indicatorLineType','isHalfPie','getUnitChartModels','getChartId','exports','titles.title.align','titles.title.family','symbol','fontStyle','ChartThemeService','point','legend','extend','IRenderManagerService','axisAlignment','theme','addRange','titles.rightYAxisTitle.bold','executeCommand','seriesStyleMap','width','@univerjs/core/facade','titles.yAxisTitle.font','sourceSheetName','config','allSeriesStyle.label','UniverProSheetsChart','UniverInstanceType','legend.label.italic','setBorderColor','dataPointShape','FChart','selectMode','pie','_workbook','This\x20api\x20only\x20works\x20in\x20the\x20active\x20sheet.','UniverCoreFacade','removeChart','allSeriesStyle.color','UniverProEngineChart','chartId','getUnitId','SheetsChartService','backgroundColor','indicatorLineColor','toStringTag','legend.label.bold','ChartBorderDashType','legend.label.fontSize','tooltip.indicatorLabelTextColor','setShowLabelLine','InsertChartCommand','setPosition','allSeriesStyle.point.size','registerChartTheme','getRenderById','Line','UniverCore','unitId','titles.title.font','IUniverInstanceService','UniverProSheetsChartUiFacade','titles.xAxisTitle.font','getWorkbook','content','titles.title.bold','setXAxisTextStyle','asLineChart','setDataPointColor','context','insertChart','titles.rightYAxisTitle.family','tooltip.indicatorLabelColor','UniverSheetsFacade','Pie','DRAWING_CHART','setDataPointShape'];_0x2d91=function(){return _0x54c91a;};return _0x2d91();}
|
|
1
|
+
function _0x2ad4(){const _0x3bafa3=['titles.rightYAxisTitle.bold','theme','modify','setRightYAxisTextStyle','FWorksheet','get','hasPaddingAngle','ISheetSelectionRenderService','radar.shape','showLabelLine','Module','titles.title.content','ChartTypeBits','titles.title.family','border','@univerjs/engine-formula','ChartUpdateSourceCommand','2874lLyBIW','shape','clearRange','position','allSeriesStyle.point.shape','toStringTag','UNIVER_SHEET','FChartBuilderBase','setShape','allSeriesStyle.rightYAxis','@univerjs-pro/engine-chart','indicatorLabelTextColor','range','point','yRightAxis','dataSource','setOptions','titles.title.color','rightYAxis.label.axisTitleAlign','title','_workbook','getChartType','sheetName','This\x20api\x20only\x20works\x20in\x20the\x20active\x20sheet.','Line','legend.label.fontSize','allSeriesStyle','titles.rightYAxisTitle.content','asLineChart','setDataPointSize','unitId','setChartType','legend.selectMode','Pie','invalidValueType','@univerjs/engine-render','rightYAxis','fontStyle','setXAxisTextStyle','isHalfPie','amd','insertChart','function','setSeriesStyle','150852bVvPSk','TitlePositionEnum','SheetsChartService','chartId','IRenderManagerService','11570hipStx','indicatorLabelColor','dataPointShape','tooltip.indicatorLineColor','setYAxisTitle','pie','extend','259246ZQmAUC','pie.showLabelLine','content','setDataPointShape','titles.xAxisTitle.fontSize','build','setAllSeriesStyle','transposeRowsAndColumns','ChartUpdateConfigCommand','map','generateRandomId','allSeriesStyle.point.size','getCharts','titles.rightYAxisTitle.fontSize','39MYKYFR','registerChartTheme','_commandService','subUnitId','titles.titlePosition','getUnitChartModels','setXAxisTitle','titleAlignment','pie.doughnutHole','lineStyle','style','left','doughnutHole','bold','series','setAbsolutePosition','getUnitId','rosePie','UniverCore','allSeriesStyle.point.color','convertPositionCellToSheetOverGrid','seriesStyleMap','setYAxisTextStyle','UniverProSheetsChart','pie.hasPaddingAngle','AxisAlignEnum','@univerjs/sheets/facade','setHasPaddingAngle','setDoughnutHole','InsertChartCommand','borderColor','font','allSeriesStyle.label','yAxis','Radar','executeCommand','with','1865FhPBKF','width','keys','allSeriesStyle.border','UniverProEngineChart','getWorkbook','ChartThemeService','UniverSheetsFacade','newChart','titles.xAxisTitle.color','xAxis.label.axisTitleAlign','4382640VKzhMs','dataPointSize','setLineStyle','setInvalidValueStrategy','gradientFill','titles.title.bold','7FWftck','ChartBorderDashType','LineChartBuilder','fontColor','exports','SelectModeEnum','@univerjs/core','setProperty','ICommandService','axisAlignment','setTheme','chartType','context','UniverEngineRender','xAxisTitle','legend','UniverSheetsUi','setHeight','allSeriesStyle.point','titles.xAxisTitle.font','setRosePie','category','SheetSkeletonManagerService','getChartModel','rightYAxisTitle','IUniverInstanceService','@univerjs-pro/sheets-chart-ui','FBase','DrawingTypeEnum','titles.xAxisTitle.bold','dataPointColor','setShowLabelLine','getSeriesData','legend.label.italic','fontSize','setPosition','radar','registerTheme','yAxis.label.axisTitleAlign','pie.borderColor','allSeriesStyle.color','color','legend.position','top','titles.xAxisTitle.content','legend.label.bold','tooltip.indicatorLabelTextColor','DRAWING_CHART','getSheetId','isRowDirection','axisPointer','RadarShape','LegendPositionEnum','pie.isHalfPie','titles.rightYAxisTitle.font','titles.yAxisTitle.bold','area','tooltip.indicatorLineType','getRange','30XPymGz','titles.yAxisTitle.color','area.lineStyle','207933YPcLSc','RadarChartBuilder','addRange','setDataPointColor','fill','_injector','options','config','RemoveSheetDrawingCommand','updateRange','LinePointShape','UniverProSheetsChartUiFacade','sourceSheetName','legend.label.color','3170872WpcggB','removeChart','xAxis','getCategoryData','yAxisTitle','UniverEngineFormula','Range\x20is\x20required\x20to\x20insert\x20a\x20chart','titles.rightYAxisTitle.family'];_0x2ad4=function(){return _0x3bafa3;};return _0x2ad4();}function _0x3d58(_0x2edb28,_0x42ac83){_0x2edb28=_0x2edb28-0x1ad;const _0x2ad4e4=_0x2ad4();let _0x3d5809=_0x2ad4e4[_0x2edb28];return _0x3d5809;}(function(_0x57271c,_0x2edc82){const _0x35a815=_0x3d58,_0x21bd18=_0x57271c();while(!![]){try{const _0x437263=parseInt(_0x35a815(0x232))/0x1+parseInt(_0x35a815(0x22b))/0x2*(parseInt(_0x35a815(0x240))/0x3)+-parseInt(_0x35a815(0x226))/0x4+parseInt(_0x35a815(0x265))/0x5*(-parseInt(_0x35a815(0x1fa))/0x6)+-parseInt(_0x35a815(0x276))/0x7*(parseInt(_0x35a815(0x1e1))/0x8)+parseInt(_0x35a815(0x270))/0x9+-parseInt(_0x35a815(0x1d0))/0xa*(-parseInt(_0x35a815(0x1d3))/0xb);if(_0x437263===_0x2edc82)break;else _0x21bd18['push'](_0x21bd18['shift']());}catch(_0x3f3bea){_0x21bd18['push'](_0x21bd18['shift']());}}}(_0x2ad4,0x40ca5),function(_0x4d91a3,_0x485c03){const _0x4f310d=_0x3d58;typeof exports=='object'&&typeof module<'u'?_0x485c03(exports,require('@univerjs-pro/engine-chart'),require('@univerjs-pro/sheets-chart'),require('@univerjs-pro/sheets-chart-ui'),require('@univerjs/core'),require('@univerjs/sheets-drawing-ui'),require('@univerjs/sheets/facade'),require('@univerjs/core/facade'),require('@univerjs/engine-formula'),require('@univerjs/engine-render'),require('@univerjs/sheets-ui')):typeof define==_0x4f310d(0x224)&&define[_0x4f310d(0x222)]?define([_0x4f310d(0x27a),_0x4f310d(0x204),'@univerjs-pro/sheets-chart',_0x4f310d(0x1af),_0x4f310d(0x27c),'@univerjs/sheets-drawing-ui',_0x4f310d(0x25a),'@univerjs/core/facade',_0x4f310d(0x1f8),_0x4f310d(0x21d),'@univerjs/sheets-ui'],_0x485c03):(_0x4d91a3=typeof globalThis<'u'?globalThis:_0x4d91a3||self,_0x485c03(_0x4d91a3[_0x4f310d(0x1de)]={},_0x4d91a3[_0x4f310d(0x269)],_0x4d91a3[_0x4f310d(0x257)],_0x4d91a3['UniverProSheetsChartUi'],_0x4d91a3[_0x4f310d(0x252)],_0x4d91a3['UniverSheetsDrawingUi'],_0x4d91a3[_0x4f310d(0x26c)],_0x4d91a3['UniverCoreFacade'],_0x4d91a3[_0x4f310d(0x1e6)],_0x4d91a3[_0x4f310d(0x283)],_0x4d91a3[_0x4f310d(0x286)]));}(this,function(_0x40a797,_0x49df22,_0x29a706,_0x4c8636,_0x17201b,_0x268fcc,_0xa8769e,_0x3d2593,_0x45b620,_0x42e5b5,_0x487b43){'use strict';const _0x269ccd=_0x3d58;var _0x375cf2=Object['defineProperty'],_0x3518ee=(_0x165925,_0x587d3b,_0x4fdd69)=>_0x587d3b in _0x165925?_0x375cf2(_0x165925,_0x587d3b,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4fdd69}):_0x165925[_0x587d3b]=_0x4fdd69,_0x23dee8=(_0xdf7e28,_0x2cfcfc,_0x52a3b7)=>_0x3518ee(_0xdf7e28,typeof _0x2cfcfc!='symbol'?_0x2cfcfc+'':_0x2cfcfc,_0x52a3b7);const _0x25b084=(_0x17955a,_0x56588f,_0x1b410c)=>{const _0x43293a=_0x3d58;_0x1b410c!==void 0x0&&_0x29a706[_0x43293a(0x27d)](_0x17955a,_0x56588f,_0x1b410c);},_0xd65401=(_0x5c5efe,_0xf68d61,_0x27e44a,_0x3982a7={})=>{const _0x5c2f64=_0x3d58,_0x532ae8={},_0x4320fe={};if(_0x3982a7[_0x5c2f64(0x20d)]){const _0x383d47=_0x3982a7['title'];_0x25b084(_0x532ae8,_0x5c2f64(0x1f4),_0x383d47[_0x5c2f64(0x234)]),_0x25b084(_0x532ae8,'titles.title.font',_0x383d47['font']),_0x25b084(_0x532ae8,'titles.title.fontSize',_0x383d47[_0x5c2f64(0x1b7)]),_0x25b084(_0x532ae8,_0x5c2f64(0x20b),_0x383d47[_0x5c2f64(0x279)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1f6),_0x383d47[_0x5c2f64(0x21f)]),_0x25b084(_0x532ae8,_0x5c2f64(0x275),_0x383d47['bold']),_0x25b084(_0x532ae8,'titles.title.align',_0x383d47[_0x5c2f64(0x247)]),_0x25b084(_0x532ae8,_0x5c2f64(0x244),_0x383d47[_0x5c2f64(0x1fd)]);}if(_0x3982a7['legend']){const _0x5876c8=_0x3982a7[_0x5c2f64(0x285)];_0x25b084(_0x532ae8,_0x5c2f64(0x1bf),_0x5876c8['position']),_0x25b084(_0x532ae8,_0x5c2f64(0x21a),_0x5876c8['selectMode']),_0x25b084(_0x532ae8,_0x5c2f64(0x213),_0x5876c8['fontSize']),_0x25b084(_0x532ae8,_0x5c2f64(0x1e0),_0x5876c8[_0x5c2f64(0x1be)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1c2),_0x5876c8['bold']),_0x25b084(_0x532ae8,_0x5c2f64(0x1b6),_0x5876c8['italic']);}if(_0x3982a7[_0x5c2f64(0x230)]){const _0x531a47=_0x3982a7['pie'];_0x25b084(_0x532ae8,_0x5c2f64(0x248),_0x531a47[_0x5c2f64(0x24c)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1bc),_0x531a47[_0x5c2f64(0x25e)]),_0x25b084(_0x532ae8,_0x5c2f64(0x258),_0x531a47[_0x5c2f64(0x1ef)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1ca),_0x531a47[_0x5c2f64(0x221)]),_0x25b084(_0x532ae8,'pie.rosePie',_0x531a47[_0x5c2f64(0x251)]),_0x25b084(_0x532ae8,_0x5c2f64(0x233),_0x531a47[_0x5c2f64(0x1f2)]);}if(_0x3982a7[_0x5c2f64(0x1c7)]){const _0x4c80a8=_0x3982a7[_0x5c2f64(0x1c7)];_0x25b084(_0x532ae8,'tooltip.indicatorLabelColor',_0x4c80a8[_0x5c2f64(0x22c)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1ce),_0x4c80a8['indicatorLineType']),_0x25b084(_0x532ae8,_0x5c2f64(0x22e),_0x4c80a8['indicatorLineColor']),_0x25b084(_0x532ae8,_0x5c2f64(0x1c3),_0x4c80a8[_0x5c2f64(0x205)]);}if(_0x3982a7['allSeriesStyle']&&(_0x25b084(_0x532ae8,_0x5c2f64(0x268),_0x3982a7[_0x5c2f64(0x214)][_0x5c2f64(0x1f7)]),_0x25b084(_0x532ae8,_0x5c2f64(0x260),_0x3982a7[_0x5c2f64(0x214)]['label']),_0x25b084(_0x532ae8,_0x5c2f64(0x203),_0x3982a7[_0x5c2f64(0x214)][_0x5c2f64(0x21e)]),_0x25b084(_0x532ae8,_0x5c2f64(0x288),_0x3982a7[_0x5c2f64(0x214)][_0x5c2f64(0x207)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1bd),_0x3982a7[_0x5c2f64(0x214)][_0x5c2f64(0x1be)])),_0x3982a7['area']&&_0x25b084(_0x532ae8,_0x5c2f64(0x1d2),_0x3982a7[_0x5c2f64(0x1cd)]['lineStyle']),_0x3982a7[_0x5c2f64(0x1ea)]&&_0x25b084(_0x532ae8,_0x5c2f64(0x1ea),_0x3982a7['theme']),_0x3982a7['backgroundColor']&&_0x25b084(_0x532ae8,'backgroundColor',_0x3982a7['backgroundColor']),_0x3982a7[_0x5c2f64(0x25e)]&&_0x25b084(_0x532ae8,_0x5c2f64(0x25e),_0x3982a7[_0x5c2f64(0x25e)]),_0x3982a7['gradientFill']&&_0x25b084(_0x532ae8,_0x5c2f64(0x274),_0x3982a7['gradientFill']),_0x3982a7[_0x5c2f64(0x21c)]&&_0x25b084(_0x532ae8,'invalidValueType',_0x3982a7[_0x5c2f64(0x21c)]),_0x3982a7['radar']&&_0x25b084(_0x532ae8,_0x5c2f64(0x1b9),_0x3982a7[_0x5c2f64(0x1b9)]),_0x3982a7[_0x5c2f64(0x284)]){const _0x4e0795=_0x3982a7[_0x5c2f64(0x284)];_0x25b084(_0x532ae8,_0x5c2f64(0x1c1),_0x4e0795['content']),_0x25b084(_0x532ae8,_0x5c2f64(0x289),_0x4e0795['font']),_0x25b084(_0x532ae8,_0x5c2f64(0x236),_0x4e0795[_0x5c2f64(0x1b7)]),_0x25b084(_0x532ae8,_0x5c2f64(0x26e),_0x4e0795[_0x5c2f64(0x279)]),_0x25b084(_0x532ae8,'titles.xAxisTitle.family',_0x4e0795[_0x5c2f64(0x21f)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1b2),_0x4e0795['bold']),_0x25b084(_0x532ae8,_0x5c2f64(0x26f),_0x4e0795[_0x5c2f64(0x27f)]);}if(_0x3982a7[_0x5c2f64(0x1e5)]){const _0x1e0ed7=_0x3982a7[_0x5c2f64(0x1e5)];_0x25b084(_0x532ae8,'titles.yAxisTitle.content',_0x1e0ed7[_0x5c2f64(0x234)]),_0x25b084(_0x532ae8,'titles.yAxisTitle.font',_0x1e0ed7[_0x5c2f64(0x25f)]),_0x25b084(_0x532ae8,'titles.yAxisTitle.fontSize',_0x1e0ed7[_0x5c2f64(0x1b7)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1d1),_0x1e0ed7['fontColor']),_0x25b084(_0x532ae8,'titles.yAxisTitle.family',_0x1e0ed7['fontStyle']),_0x25b084(_0x532ae8,_0x5c2f64(0x1cc),_0x1e0ed7[_0x5c2f64(0x24d)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1bb),_0x1e0ed7[_0x5c2f64(0x27f)]);}if(_0x3982a7[_0x5c2f64(0x1ad)]){const _0x571dea=_0x3982a7['rightYAxisTitle'];_0x25b084(_0x532ae8,_0x5c2f64(0x215),_0x571dea[_0x5c2f64(0x234)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1cb),_0x571dea[_0x5c2f64(0x25f)]),_0x25b084(_0x532ae8,_0x5c2f64(0x23f),_0x571dea[_0x5c2f64(0x1b7)]),_0x25b084(_0x532ae8,'titles.rightYAxisTitle.color',_0x571dea[_0x5c2f64(0x279)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1e8),_0x571dea[_0x5c2f64(0x21f)]),_0x25b084(_0x532ae8,_0x5c2f64(0x1e9),_0x571dea[_0x5c2f64(0x24d)]),_0x25b084(_0x532ae8,_0x5c2f64(0x20c),_0x571dea[_0x5c2f64(0x27f)]);}_0x3982a7[_0x5c2f64(0x1e3)]&&_0x25b084(_0x532ae8,_0x5c2f64(0x1e3),_0x3982a7['xAxis']),_0x3982a7[_0x5c2f64(0x261)]&&_0x25b084(_0x532ae8,'yAxis',_0x3982a7['yAxis']),_0x3982a7[_0x5c2f64(0x208)]&&_0x25b084(_0x532ae8,'rightYAxis',_0x3982a7[_0x5c2f64(0x208)]),_0x3982a7[_0x5c2f64(0x255)]&&_0x25b084(_0x532ae8,_0x5c2f64(0x255),_0x3982a7[_0x5c2f64(0x255)]);const _0x11ef86={'unitId':_0x5c5efe,'chartModelId':_0xf68d61};let _0xd6f0d9=!0x1;if(_0x27e44a!==void 0x0&&(_0x11ef86[_0x5c2f64(0x281)]=_0x27e44a,_0xd6f0d9=!0x0),Object[_0x5c2f64(0x267)](_0x532ae8)['length']>0x0&&(_0x11ef86[_0x5c2f64(0x24a)]=_0x532ae8,_0xd6f0d9=!0x0),Object['keys'](_0x4320fe)['length']>0x0&&(_0x11ef86[_0x5c2f64(0x282)]=_0x4320fe,_0xd6f0d9=!0x0),_0xd6f0d9)return _0x11ef86;};class _0x10366b extends _0x3d2593[_0x269ccd(0x1b0)]{constructor(_0x5c87e7,_0x34a678,_0x56fcee,_0x5420c6,_0x35a078){const _0x58fab5=_0x269ccd;super(),_0x23dee8(this,'_workbook'),_0x23dee8(this,_0x58fab5(0x1d8)),_0x23dee8(this,_0x58fab5(0x218)),_0x23dee8(this,_0x58fab5(0x243)),_0x23dee8(this,'chartId'),_0x23dee8(this,_0x58fab5(0x206)),_0x23dee8(this,_0x58fab5(0x1df)),_0x23dee8(this,'x'),_0x23dee8(this,'y'),_0x23dee8(this,_0x58fab5(0x266)),_0x23dee8(this,'height'),_0x23dee8(this,_0x58fab5(0x281)),_0x23dee8(this,_0x58fab5(0x1d9)),_0x23dee8(this,_0x58fab5(0x239)),(this[_0x58fab5(0x218)]=_0x5c87e7,this[_0x58fab5(0x243)]=_0x34a678,this[_0x58fab5(0x20e)]=_0x56fcee,this[_0x58fab5(0x1d8)]=_0x5420c6,_0x35a078&&(this['chartId']=_0x35a078));}[_0x269ccd(0x20f)](){const _0xaca857=_0x269ccd;return this[_0xaca857(0x281)];}[_0x269ccd(0x1d5)](_0x1b7b93){const _0x5251a5=_0x269ccd;if(typeof _0x1b7b93=='string'){const _0x37c27b=_0x45b620['deserializeRangeWithSheet'](_0x1b7b93);_0x37c27b['sheetName']&&(this[_0x5251a5(0x1df)]=_0x37c27b[_0x5251a5(0x210)]),this[_0x5251a5(0x206)]=_0x37c27b[_0x5251a5(0x206)];}else this['range']=_0x1b7b93;return this;}[_0x269ccd(0x1fc)](){const _0x256345=_0x269ccd;return this[_0x256345(0x206)]=void 0x0,this[_0x256345(0x1df)]=void 0x0,this;}[_0x269ccd(0x1b8)](_0x33bdcb,_0x202abd,_0x40e495,_0x1946f8){const _0x28fccf=_0x269ccd,_0x4c2f3e=this['_injector'][_0x28fccf(0x1ee)](_0x42e5b5[_0x28fccf(0x22a)])['getRenderById'](this[_0x28fccf(0x218)]);if(!_0x4c2f3e)throw new Error(_0x28fccf(0x211));const _0x23a4ba=_0x4c2f3e[_0x28fccf(0x264)](_0x487b43[_0x28fccf(0x1f0)]),_0x5f5241=_0x4c2f3e[_0x28fccf(0x264)](_0x487b43[_0x28fccf(0x28c)]),{transform:_0x4b6ed7}=_0x487b43[_0x28fccf(0x254)](this[_0x28fccf(0x218)],this[_0x28fccf(0x243)],{'row':_0x33bdcb,'column':_0x202abd,'rowOffset':_0x40e495,'columnOffset':_0x1946f8},0x1,0x1,_0x23a4ba,_0x5f5241),_0x2068eb=_0x4b6ed7[_0x28fccf(0x1c0)],_0x4b7dc0=_0x4b6ed7[_0x28fccf(0x24b)];return this['x']=_0x4b7dc0,this['y']=_0x2068eb,this;}[_0x269ccd(0x24f)](_0x525e1a,_0x17976e){return this['x']=_0x525e1a,this['y']=_0x17976e,this;}[_0x269ccd(0x219)](_0x4d7fc1){const _0x4e4232=_0x269ccd;return this[_0x4e4232(0x281)]=_0x4d7fc1,this;}['setWidth'](_0x15d8f8){const _0x42bb17=_0x269ccd;return this[_0x42bb17(0x266)]=_0x15d8f8,this;}[_0x269ccd(0x287)](_0x2cf25b){return this['height']=_0x2cf25b,this;}[_0x269ccd(0x20a)](_0x1e0077,_0x3fd7c3){const _0x4c11bd=_0x269ccd;return this[_0x4c11bd(0x1d9)]||(this[_0x4c11bd(0x1d9)]={}),_0x1e0077===''?(this[_0x4c11bd(0x1d9)]={...this['options'],..._0x3fd7c3},this):(_0x29a706[_0x4c11bd(0x27d)](this['options'],_0x1e0077,_0x3fd7c3),this);}['setTransposeRowsAndColumns'](_0x1c0065){return this['transposeRowsAndColumns']=_0x1c0065,this;}[_0x269ccd(0x280)](_0x538700){const _0x28d544=_0x269ccd;return this[_0x28d544(0x20a)](_0x28d544(0x1ea),_0x538700),this;}[_0x269ccd(0x246)](_0x17f3f4){const _0x3c3be7=_0x269ccd;var _0x1788bf;const _0x3dc0c6=((_0x1788bf=this[_0x3c3be7(0x1d9)])==null?void 0x0:_0x1788bf[_0x3c3be7(0x284)])||{};return _0x3dc0c6[_0x3c3be7(0x234)]=_0x17f3f4,this[_0x3c3be7(0x20a)](_0x3c3be7(0x284),_0x3dc0c6),this;}[_0x269ccd(0x22f)](_0x3df53c){const _0x56a71f=_0x269ccd;var _0x520297;const _0x4776fd=((_0x520297=this[_0x56a71f(0x1d9)])==null?void 0x0:_0x520297[_0x56a71f(0x1e5)])||{};return _0x4776fd['content']=_0x3df53c,this['setOptions'](_0x56a71f(0x1e5),_0x4776fd),this;}['setRightYAxisTitle'](_0x4cbf69){const _0x1b2fe3=_0x269ccd;var _0x19e587;const _0x17fca1=((_0x19e587=this['options'])==null?void 0x0:_0x19e587[_0x1b2fe3(0x1ad)])||{};return _0x17fca1['content']=_0x4cbf69,this[_0x1b2fe3(0x20a)](_0x1b2fe3(0x1ad),_0x17fca1),this;}[_0x269ccd(0x220)](_0x144c0e){const _0x58971d=_0x269ccd;var _0xbb7895;const _0x3a6637=((_0xbb7895=this[_0x58971d(0x1d9)])==null?void 0x0:_0xbb7895['xAxisTitle'])||{};return this[_0x58971d(0x20a)](_0x58971d(0x284),{..._0x3a6637,..._0x144c0e}),this;}[_0x269ccd(0x256)](_0x35276d){const _0x58db5b=_0x269ccd;var _0x2335b8;const _0x30d320=((_0x2335b8=this[_0x58db5b(0x1d9)])==null?void 0x0:_0x2335b8[_0x58db5b(0x1e5)])||{};return this[_0x58db5b(0x20a)]('yAxisTitle',{..._0x30d320,..._0x35276d}),this;}[_0x269ccd(0x1ec)](_0x4ad74a){const _0x3910c1=_0x269ccd;var _0x29d399;const _0x79969b=((_0x29d399=this['options'])==null?void 0x0:_0x29d399[_0x3910c1(0x1ad)])||{};return this['setOptions'](_0x3910c1(0x1ad),{..._0x79969b,..._0x4ad74a}),this;}[_0x269ccd(0x273)](_0x285547){const _0x4efbf0=_0x269ccd;return this['setOptions'](_0x4efbf0(0x21c),_0x285547),this;}['setAxisPointerStyle'](_0x4ec102){const _0x1ed19c=_0x269ccd;return this[_0x1ed19c(0x20a)](_0x1ed19c(0x1c7),_0x4ec102),this;}[_0x269ccd(0x238)](_0x173194){return this['setOptions']('allSeriesStyle',_0x173194),this;}[_0x269ccd(0x225)](_0x4785a6,_0x5c0dc1){return this['setOptions']('seriesStyleMap',{[_0x4785a6]:_0x5c0dc1}),this;}[_0x269ccd(0x237)](){const _0x2ecacd=_0x269ccd;return{'unitId':this[_0x2ecacd(0x218)],'subUnitId':this[_0x2ecacd(0x243)],'chartId':this[_0x2ecacd(0x229)],'range':this[_0x2ecacd(0x206)],'sourceSheetName':this[_0x2ecacd(0x1df)],'x':this['x'],'y':this['y'],'width':this[_0x2ecacd(0x266)],'height':this['height'],'chartType':this['chartType'],'options':this[_0x2ecacd(0x1d9)],'isRowDirection':this[_0x2ecacd(0x239)]};}}class _0x260d21{constructor(_0x2b5c92,_0x34ef6d,_0x1efba1,_0x1398bf){const _0x11e325=_0x269ccd;_0x23dee8(this,_0x11e325(0x218)),_0x23dee8(this,_0x11e325(0x243)),_0x23dee8(this,_0x11e325(0x229)),_0x23dee8(this,_0x11e325(0x1d8)),(this[_0x11e325(0x218)]=_0x2b5c92,this['subUnitId']=_0x34ef6d,this[_0x11e325(0x229)]=_0x1efba1,this[_0x11e325(0x1d8)]=_0x1398bf);}['getChartId'](){const _0x32e21c=_0x269ccd;return this[_0x32e21c(0x229)];}[_0x269ccd(0x1cf)](){const _0x26bc6f=_0x269ccd,_0x122a5d=this[_0x26bc6f(0x1d8)]['get'](_0x29a706[_0x26bc6f(0x228)])['getChartModel'](this[_0x26bc6f(0x229)]);if(_0x122a5d)return _0x122a5d[_0x26bc6f(0x209)]['getRangeInfo']();}[_0x269ccd(0x1dc)](_0x3843e1){const _0x46f6cc=_0x269ccd;return this[_0x46f6cc(0x1d8)][_0x46f6cc(0x1ee)](_0x17201b[_0x46f6cc(0x27e)])['executeCommand'](_0x29a706[_0x46f6cc(0x1f9)]['id'],{'unitId':this[_0x46f6cc(0x218)],'chartModelId':this[_0x46f6cc(0x229)],'range':_0x3843e1});}[_0x269ccd(0x1b5)](){const _0x129aa8=_0x269ccd;var _0x37703a;const _0x168503=this[_0x129aa8(0x1d8)]['get'](_0x29a706['SheetsChartService'])[_0x129aa8(0x28d)](this['chartId']);if(_0x168503)return(_0x37703a=_0x168503[_0x129aa8(0x1da)])==null?void 0x0:_0x37703a[_0x129aa8(0x24e)];}[_0x269ccd(0x1e4)](){const _0x3436cf=_0x269ccd;var _0x596d25;const _0x2b8bd0=this[_0x3436cf(0x1d8)]['get'](_0x29a706[_0x3436cf(0x228)])[_0x3436cf(0x28d)](this[_0x3436cf(0x229)]);if(_0x2b8bd0)return(_0x596d25=_0x2b8bd0[_0x3436cf(0x1da)])==null?void 0x0:_0x596d25[_0x3436cf(0x28b)];}[_0x269ccd(0x1eb)](){const _0x459263=_0x269ccd,_0x86ea38=this['_injector'][_0x459263(0x1ee)](_0x17201b[_0x459263(0x1ae)])['getCurrentUnitForType'](_0x17201b['UniverInstanceType'][_0x459263(0x200)]);return new _0x10366b(this[_0x459263(0x218)],this['subUnitId'],_0x86ea38,this['_injector'],this[_0x459263(0x229)]);}}class _0x258c94 extends _0xa8769e[_0x269ccd(0x1ed)]{async[_0x269ccd(0x223)](_0x5d0929){const _0x540a83=_0x269ccd;var _0x337451,_0x11b9c5,_0x5c7b0a;const _0x55678b=_0x5d0929[_0x540a83(0x218)]||this['getWorkbook']()['getUnitId'](),_0x5b7132=_0x5d0929[_0x540a83(0x243)]||this[_0x540a83(0x1c5)](),_0x5785fa=_0x5d0929[_0x540a83(0x229)]||_0x17201b[_0x540a83(0x23c)](),_0x5b555c=_0x5d0929[_0x540a83(0x281)],_0x207c32=_0x5d0929[_0x540a83(0x206)],_0xbab2fa=_0x5d0929['sourceSheetName'],_0x5cd221={'x':_0x5d0929['x'],'y':_0x5d0929['y']},_0x5f451f=_0x5d0929[_0x540a83(0x266)],_0x34cd5f=_0x5d0929['height'],_0x4e1edb=(_0x337451=_0x5d0929['options'])==null?void 0x0:_0x337451['backgroundColor'],_0x2dcb4e=(_0x11b9c5=_0x5d0929['options'])==null?void 0x0:_0x11b9c5[_0x540a83(0x25e)],_0x19fac2=_0xd65401(_0x55678b,_0x5785fa,_0x5b555c,_0x5d0929[_0x540a83(0x1d9)]),_0x3cabef=(_0x5c7b0a=_0x5d0929[_0x540a83(0x1c6)])!=null?_0x5c7b0a:!0x0;if(!_0x207c32)throw new Error(_0x540a83(0x1e7));return await this[_0x540a83(0x242)][_0x540a83(0x263)](_0x4c8636[_0x540a83(0x25d)]['id'],{'unitId':_0x55678b,'subUnitId':_0x5b7132,'chartId':_0x5785fa,'chartType':_0x5b555c,'range':_0x207c32,'sourceSheetName':_0xbab2fa,'position':_0x5cd221,'width':_0x5f451f,'height':_0x34cd5f,'backgroundColor':_0x4e1edb,'borderColor':_0x2dcb4e,'config':_0x19fac2,'isRowDirection':_0x3cabef}),new _0x260d21(_0x55678b,_0x5b7132,_0x5785fa,this[_0x540a83(0x1d8)]);}['updateChart'](_0x16a609){const _0x27e150=_0x269ccd,{unitId:_0x5387ae,chartId:_0x314ca9,chartType:_0xfacf64,options:_0x1ceaa9}=_0x16a609,_0xec328=_0xd65401(_0x5387ae,_0x314ca9,_0xfacf64,_0x1ceaa9);this[_0x27e150(0x242)]['executeCommand'](_0x29a706[_0x27e150(0x23a)]['id'],_0xec328);}[_0x269ccd(0x26d)](_0x5cab09){const _0x9cdfd4=_0x269ccd;if(_0x5cab09)return new _0x10366b(_0x5cab09[_0x9cdfd4(0x218)],_0x5cab09['subUnitId'],this['_workbook'],this[_0x9cdfd4(0x1d8)],_0x5cab09[_0x9cdfd4(0x229)]);const _0x19a525=this[_0x9cdfd4(0x26a)]()[_0x9cdfd4(0x250)](),_0x1a3010=this[_0x9cdfd4(0x1c5)]();return new _0x10366b(_0x19a525,_0x1a3010,this['_workbook'],this['_injector']);}[_0x269ccd(0x23e)](){const _0x93a7d5=_0x269ccd,_0x52cc2e=this[_0x93a7d5(0x1d8)][_0x93a7d5(0x1ee)](_0x29a706[_0x93a7d5(0x228)]),_0xae014d=this[_0x93a7d5(0x26a)]()[_0x93a7d5(0x250)]();return _0x52cc2e[_0x93a7d5(0x245)](_0xae014d,this['getSheetId']())[_0x93a7d5(0x23b)](_0xb8ff51=>new _0x260d21(_0xae014d,this['getSheetId'](),_0xb8ff51['id'],this[_0x93a7d5(0x1d8)]));}[_0x269ccd(0x1e2)](_0xc322dc){const _0x2fcd41=_0x269ccd,_0x4daa80=_0xc322dc['unitId'],_0x490345=_0xc322dc[_0x2fcd41(0x243)],_0x5f5611=_0xc322dc[_0x2fcd41(0x229)],_0x52835b={'unitId':_0x4daa80,'drawings':[{'unitId':_0x4daa80,'subUnitId':_0x490345,'drawingId':_0x5f5611,'drawingType':_0x17201b[_0x2fcd41(0x1b1)][_0x2fcd41(0x1c4)]}]};return this[_0x2fcd41(0x242)][_0x2fcd41(0x263)](_0x268fcc[_0x2fcd41(0x1db)]['id'],_0x52835b);}[_0x269ccd(0x241)](_0x501cc1,_0x51db9e){const _0x5cb51a=_0x269ccd;this[_0x5cb51a(0x1d8)][_0x5cb51a(0x1ee)](_0x49df22[_0x5cb51a(0x26b)])[_0x5cb51a(0x1ba)](_0x501cc1,_0x51db9e);}}_0xa8769e[_0x269ccd(0x1ed)][_0x269ccd(0x231)](_0x258c94);class _0x32ef38 extends _0x3d2593['FEnum']{get['ChartType'](){const _0x50b20b=_0x269ccd;return _0x49df22[_0x50b20b(0x1f5)];}get['LegendPositionEnum'](){const _0x5943be=_0x269ccd;return _0x49df22[_0x5943be(0x1c9)];}get[_0x269ccd(0x27b)](){const _0x1d97fd=_0x269ccd;return _0x49df22[_0x1d97fd(0x27b)];}get[_0x269ccd(0x259)](){const _0xa2c5ab=_0x269ccd;return _0x49df22[_0xa2c5ab(0x259)];}get['ChartBorderDashType'](){const _0xb854df=_0x269ccd;return _0x49df22[_0xb854df(0x277)];}get[_0x269ccd(0x1dd)](){return _0x49df22['LinePointShape'];}get['TitlePositionEnum'](){const _0x4df8ab=_0x269ccd;return _0x49df22[_0x4df8ab(0x227)];}get[_0x269ccd(0x1c8)](){const _0x4f6326=_0x269ccd;return _0x49df22[_0x4f6326(0x1c8)];}}_0x3d2593['FEnum'][_0x269ccd(0x231)](_0x32ef38);class _0x342b2e extends _0x10366b{constructor(_0x1e0690,_0x15260d,_0x2d5eb6,_0x46a5cb,_0x50df6c){const _0x182c14=_0x269ccd;super(_0x1e0690,_0x15260d,_0x2d5eb6,_0x46a5cb,_0x50df6c),_0x23dee8(this,_0x182c14(0x249)),_0x23dee8(this,_0x182c14(0x22d)),_0x23dee8(this,'dataPointColor'),_0x23dee8(this,'dataPointSize');}[_0x269ccd(0x272)](_0x385ce2){const _0x5c3d11=_0x269ccd;return this[_0x5c3d11(0x249)]=_0x385ce2,this;}[_0x269ccd(0x235)](_0x45b9d1){return this['dataPointShape']=_0x45b9d1,this;}[_0x269ccd(0x1d6)](_0x49ffbd){const _0x3713fd=_0x269ccd;return this[_0x3713fd(0x1b3)]=_0x49ffbd,this;}[_0x269ccd(0x217)](_0x5aa5db){const _0x585d8d=_0x269ccd;return this[_0x585d8d(0x271)]=_0x5aa5db,this;}['build'](){const _0x20c92a=_0x269ccd,_0x47bb5f=super[_0x20c92a(0x237)]();_0x47bb5f[_0x20c92a(0x281)]=_0x49df22[_0x20c92a(0x1f5)][_0x20c92a(0x212)];const _0x17b225=_0x47bb5f[_0x20c92a(0x1d9)]||{};return _0x25b084(_0x17b225,_0x20c92a(0x1d2),this[_0x20c92a(0x249)]),_0x25b084(_0x17b225,_0x20c92a(0x1fe),this[_0x20c92a(0x22d)]),_0x25b084(_0x17b225,_0x20c92a(0x253),this[_0x20c92a(0x1b3)]),_0x25b084(_0x17b225,_0x20c92a(0x23d),this['dataPointSize']),_0x47bb5f[_0x20c92a(0x1d9)]=_0x17b225,_0x47bb5f;}}class _0x3ea0c4 extends _0x10366b{[_0x269ccd(0x216)](){const _0x1efcfa=_0x269ccd;return new _0x342b2e(this['unitId'],this[_0x1efcfa(0x243)],this[_0x1efcfa(0x20e)],this[_0x1efcfa(0x1d8)],this[_0x1efcfa(0x229)]);}}_0x10366b['extend'](_0x3ea0c4);class _0xe15b6a extends _0x10366b{constructor(_0x282c0c,_0x31e70c,_0x230ebb,_0x118b79,_0x6b1e5e){const _0x414625=_0x269ccd;super(_0x282c0c,_0x31e70c,_0x230ebb,_0x118b79,_0x6b1e5e),_0x23dee8(this,_0x414625(0x24c)),_0x23dee8(this,_0x414625(0x25e)),_0x23dee8(this,_0x414625(0x1ef)),_0x23dee8(this,_0x414625(0x221)),_0x23dee8(this,_0x414625(0x251)),_0x23dee8(this,'showLabelLine');}[_0x269ccd(0x25c)](_0x3286bb){const _0x583247=_0x269ccd;return this[_0x583247(0x24c)]=_0x3286bb,this;}['setBorderColor'](_0x39d813){const _0xcf2f5b=_0x269ccd;return this[_0xcf2f5b(0x25e)]=_0x39d813,this;}[_0x269ccd(0x25b)](_0x35a5c1){const _0x16e482=_0x269ccd;return this[_0x16e482(0x1ef)]=_0x35a5c1,this;}['setIsHalfPie'](_0x308ed4){const _0x32f1c4=_0x269ccd;return this[_0x32f1c4(0x221)]=_0x308ed4,this;}[_0x269ccd(0x28a)](_0x2a41c4){return this['rosePie']=_0x2a41c4,this;}[_0x269ccd(0x1b4)](_0x5e6807){const _0x68ac50=_0x269ccd;return this[_0x68ac50(0x1f2)]=_0x5e6807,this;}[_0x269ccd(0x237)](){const _0x15bd14=_0x269ccd,_0x1457bf=super['build']();_0x1457bf['chartType']=_0x49df22['ChartTypeBits'][_0x15bd14(0x21b)];const _0x4875cd=_0x1457bf[_0x15bd14(0x1d9)]||{};return _0x25b084(_0x4875cd,_0x15bd14(0x248),this[_0x15bd14(0x24c)]),_0x25b084(_0x4875cd,'pie.borderColor',this['borderColor']),_0x25b084(_0x4875cd,_0x15bd14(0x258),this[_0x15bd14(0x1ef)]),_0x25b084(_0x4875cd,_0x15bd14(0x1ca),this[_0x15bd14(0x221)]),_0x25b084(_0x4875cd,'pie.rosePie',this[_0x15bd14(0x251)]),_0x25b084(_0x4875cd,_0x15bd14(0x233),this[_0x15bd14(0x1f2)]),_0x1457bf[_0x15bd14(0x1d9)]=_0x4875cd,_0x1457bf;}}class _0x1aa7d1 extends _0x10366b{['asPieChart'](){const _0x3e1a90=_0x269ccd;return new _0xe15b6a(this[_0x3e1a90(0x218)],this[_0x3e1a90(0x243)],this[_0x3e1a90(0x20e)],this['_injector'],this[_0x3e1a90(0x229)]);}}_0x10366b[_0x269ccd(0x231)](_0x1aa7d1);class _0x5a28a7 extends _0x10366b{constructor(_0x3daf07,_0x3d1c4a,_0x1375c6,_0x311089,_0x29ad20){const _0x48ffc9=_0x269ccd;super(_0x3daf07,_0x3d1c4a,_0x1375c6,_0x311089,_0x29ad20),_0x23dee8(this,_0x48ffc9(0x1fb)),_0x23dee8(this,_0x48ffc9(0x1d7));}[_0x269ccd(0x202)](_0xcb514c){return this['shape']=_0xcb514c,this;}['setFill'](_0x358daf){const _0x1619db=_0x269ccd;return this[_0x1619db(0x1d7)]=_0x358daf,this;}[_0x269ccd(0x237)](){const _0x33d623=_0x269ccd,_0x39b7ab=super[_0x33d623(0x237)]();_0x39b7ab[_0x33d623(0x281)]=_0x49df22[_0x33d623(0x1f5)][_0x33d623(0x262)];const _0x64d02e=_0x39b7ab[_0x33d623(0x1d9)]||{};return _0x25b084(_0x64d02e,_0x33d623(0x1f1),this['shape']),_0x25b084(_0x64d02e,'radar.fill',this[_0x33d623(0x1d7)]),_0x39b7ab[_0x33d623(0x1d9)]=_0x64d02e,_0x39b7ab;}}class _0x4b2d26 extends _0x10366b{['asRadarChart'](){const _0x25a962=_0x269ccd;return new _0x5a28a7(this[_0x25a962(0x218)],this[_0x25a962(0x243)],this[_0x25a962(0x20e)],this[_0x25a962(0x1d8)],this[_0x25a962(0x229)]);}}_0x10366b[_0x269ccd(0x231)](_0x4b2d26),_0x40a797['FChart']=_0x260d21,_0x40a797[_0x269ccd(0x201)]=_0x10366b,_0x40a797[_0x269ccd(0x278)]=_0x342b2e,_0x40a797['PieChartBuilder']=_0xe15b6a,_0x40a797[_0x269ccd(0x1d4)]=_0x5a28a7,Object['defineProperty'](_0x40a797,Symbol[_0x269ccd(0x1ff)],{'value':_0x269ccd(0x1f3)});}));
|