@univerjs-pro/sheets-chart-ui 0.5.2 → 0.5.3

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.
@@ -1,4 +1,4 @@
1
- import { AreaLineStyle, ChartBorderDashType, ChartTypeBits, IAllSeriesStyle, IAxisOptions, InvalidValueType, ISeriesStyle, LegendPositionEnum, SelectModeEnum, TitlePositionEnum } from '@univerjs-pro/sheets-chart';
1
+ import { AreaLineStyle, AxisAlignEnum, ChartBorderDashType, ChartTypeBits, IAllSeriesStyle, IAxisOptions, InvalidValueType, ISeriesStyle, LabelAlignEnum, LegendPositionEnum, RadarShape, SelectModeEnum, TitlePositionEnum } from '@univerjs-pro/sheets-chart';
2
2
  import { Injector, IRange, Workbook, FBase } from '@univerjs/core';
3
3
  export interface IChartBuilderInfo {
4
4
  unitId: string;
@@ -35,13 +35,13 @@ export interface IChartTextStyle {
35
35
  */
36
36
  fontStyle?: string;
37
37
  /**
38
- * @property {string} [fontWeight] The font weight for the chart title.
38
+ * @property {boolean} [bold] The font is bold.
39
39
  */
40
- fontWeight?: string;
40
+ bold?: boolean;
41
41
  /**
42
- * @property {string} [alignment] The alignment of the chart title.
42
+ * @property {AxisAlignEnum} [axisAlignment] The alignment of the chart axis.The possible values are 'start', 'center' & 'end'.
43
43
  */
44
- alignment?: string;
44
+ axisAlignment?: AxisAlignEnum;
45
45
  }
46
46
  export interface IChartBuildOptions {
47
47
  /**
@@ -52,6 +52,10 @@ export interface IChartBuildOptions {
52
52
  * @property {string} [titlePosition] The position of the chart title.
53
53
  */
54
54
  position?: TitlePositionEnum;
55
+ /**
56
+ * @property {string} [titleAlignment] The alignment of the chart title.The possible values are 'left', 'center' & 'right'.
57
+ */
58
+ titleAlignment: LabelAlignEnum;
55
59
  } & IChartTextStyle;
56
60
  /**
57
61
  * @property {string} [legend] The legend of the chart.
@@ -123,7 +127,7 @@ export interface IChartBuildOptions {
123
127
  */
124
128
  indicatorLabelTextColor?: string;
125
129
  };
126
- allSeriesStyle?: IAllSeriesStyle;
130
+ allSeriesStyle?: Partial<IAllSeriesStyle>;
127
131
  seriesStyleMap?: {
128
132
  [id: string]: ISeriesStyle;
129
133
  };
@@ -138,6 +142,10 @@ export interface IChartBuildOptions {
138
142
  gradientFill?: boolean;
139
143
  theme?: string;
140
144
  invalidValueType?: InvalidValueType;
145
+ radar?: {
146
+ shape?: RadarShape;
147
+ fill?: boolean;
148
+ };
141
149
  }
142
150
  export declare class FChartBuilderBase extends FBase {
143
151
  protected readonly _workbook: Workbook;
@@ -160,19 +168,43 @@ export declare class FChartBuilderBase extends FBase {
160
168
  * @description The chart type of the chart this builder modifies. The chart type (ChartTypeBits) can be found from package @univerjs-pro/sheets-chart.
161
169
  * Please pay attention to the type of the chart you are creating, a Pie chart have a property of Doughnut is donut chart, and a Pie chart have a property of Rose is rose pie chart.But the chart builder will not change the chart type to the corresponding chart type.
162
170
  * @returns {ChartTypeBits} ChartType - The chart type of the chart this builder modifies.
171
+ * @example
172
+ * ```ts
173
+ * const fWorkbook = univerAPI.getActiveWorkbook();
174
+ * const fSheet = fWorkbook.getActiveSheet();
175
+ * const charts = fSheet.getCharts();
176
+ * if(charts.length > 0) {
177
+ * const chart = charts[0];
178
+ * const chartBuilder = chart.getChartBuilder();
179
+ * const chartType = chartBuilder.getChartType();
180
+ * console.log(chartType); // The chart type of first chart.
181
+ * }
163
182
  */
164
183
  getChartType(): ChartTypeBits;
165
184
  /**
166
185
  * Adds a range to the chart this builder modifies
167
- * @param {IRange | string} range The range string or object to add for chart source data.
186
+ * @param {IRange | string} range The range string or object to add for chart source data.The should be not a single cell.
168
187
  * @returns {FChartBuilderBase} -this builder, for chaining
188
+ * @example
189
+ * ```ts
190
+ * const fWorkbook = univerAPI.getActiveWorkbook();
191
+ * const fSheet = fWorkbook.getActiveSheet();
192
+ * const chartBuilder = fSheet.newChart();
193
+ * const chartInfo = chartBuilder
194
+ * // set the source data range of the chart
195
+ * .addRange('A1:D6')
196
+ * .setChartType(ChartTypeBits.Column)
197
+ * .setPosition(1, 1, 0, 0)
198
+ * .build();
199
+ * fSheet.insertChart(chartInfo);
200
+ * ```
169
201
  */
170
- addRange(range: IRange | string): FChartBuilderBase;
202
+ addRange(range: IRange | string): this;
171
203
  /**
172
204
  * Clears the range from the chart this builder modifies
173
205
  * @returns {FChartBuilderBase} -this builder, for chaining
174
206
  */
175
- clearRange(): FChartBuilderBase;
207
+ clearRange(): this;
176
208
  /**
177
209
  * Sets the position, changing where the chart appears on the sheet. anchorRowPos and anchorColPos are 0-indexed.This api can only work in the active sheet.
178
210
  * @description The chart's start anchor position is the top left-hand corner of the chart. The rowOffset and columnOffset are the pixel offsets from the anchor position.
@@ -194,7 +226,7 @@ export declare class FChartBuilderBase extends FBase {
194
226
  * fSheet.insertChart(chartInfo);
195
227
  * ```
196
228
  */
197
- setPosition(anchorRowPos: number, anchorColPos: number, rowOffset: number, columnOffset: number): FChartBuilderBase;
229
+ setPosition(anchorRowPos: number, anchorColPos: number, rowOffset: number, columnOffset: number): this;
198
230
  /**
199
231
  * Sets the position, changing where the chart appears on the sheet by pixel.
200
232
  * @description The chart's start anchor position is the top left-hand corner of the chart. This api is opposite to setPosition.
@@ -214,7 +246,7 @@ export declare class FChartBuilderBase extends FBase {
214
246
  * fSheet.insertChart(chartInfo);
215
247
  * ```
216
248
  */
217
- setAbsolutePosition(x: number, y: number): FChartBuilderBase;
249
+ setAbsolutePosition(x: number, y: number): this;
218
250
  /**
219
251
  * The type of chart to create.
220
252
  * @param {ChartTypeBits} chartType The type of chart to create.Which can be found from package @univerjs-pro/sheets-chart.
@@ -236,23 +268,23 @@ export declare class FChartBuilderBase extends FBase {
236
268
  * fSheet.updateChart(updateChartInfo);
237
269
  * ```
238
270
  */
239
- setChartType(chartType: ChartTypeBits): FChartBuilderBase;
271
+ setChartType(chartType: ChartTypeBits): this;
240
272
  /**
241
273
  * Sets the width of the chart in pixels.
242
274
  * @param {number} width The width of the chart in pixels.
243
275
  * @returns -this builder, for chaining.
244
276
  */
245
- setWidth(width: number): FChartBuilderBase;
277
+ setWidth(width: number): this;
246
278
  /**
247
279
  * Sets the height of the chart in pixels.
248
280
  * @param {number} height The height of the chart in pixels.
249
281
  * @returns -this builder, for chaining.
250
282
  */
251
- setHeight(height: number): FChartBuilderBase;
283
+ setHeight(height: number): this;
252
284
  /**
253
285
  * The options for the chart. This function will overwrite existing options and merge new options property.
254
286
  * @param {string} optionPath The path of the option to set. A '' path means the root of the options object.
255
- * @param {IChartBuildOptions[T] | IChartBuildOptions} optionVal The value to set. Undefined value will be ignore , and null means delete the property.If a path is '', the value must be the whole options object.
287
+ * @param optionVal The value to set. Undefined value will be ignore , and null means delete the property.If a path is '', the value must be the whole options object.
256
288
  * @returns The builder, for chaining.
257
289
  * @example
258
290
  * ```ts
@@ -262,7 +294,7 @@ export declare class FChartBuilderBase extends FBase {
262
294
  *
263
295
  * const chartBuilderInfo1 = chartBuilder
264
296
  * .addRange('A1:D6')
265
- * .setOptions('title.content', 'mcc')
297
+ * .setOptions('title.content', 'Chart Title')
266
298
  * .setOptions('legend.position', 'right')
267
299
  * .setDoughnutHole(0.5)
268
300
  * .setHasPaddingAngle(true)
@@ -274,7 +306,7 @@ export declare class FChartBuilderBase extends FBase {
274
306
  * .addRange('A1:D6')
275
307
  * .setOptions('', {
276
308
  * "title": {
277
- * "content": "mcc"
309
+ * "content": "Chart Title"
278
310
  * },
279
311
  * "legend": {
280
312
  * "position": "right"
@@ -289,14 +321,28 @@ export declare class FChartBuilderBase extends FBase {
289
321
  * fWorkSheet.insertChart(chartBuilderInfo1);
290
322
  * // or they are same effect
291
323
  * // fWorkSheet.insertChart(chartBuilderInfo2);
324
+ * ```
292
325
  */
293
- setOptions<T extends keyof IChartBuildOptions>(optionPath: T | '', optionVal: IChartBuildOptions[T] | IChartBuildOptions): FChartBuilderBase;
326
+ setOptions(optionPath: string, optionVal: unknown): this;
294
327
  /**
295
328
  * Sets whether to transpose the rows and columns of the chart.
296
329
  * @param {boolean} transposeRowsAndColumns Whether to transpose the rows and columns of the chart.The default value is false.
297
330
  * @returns -this builder, for chaining.
331
+ * @example
332
+ * ```ts
333
+ * const fWorkbook = univerAPI.getActiveWorkbook();
334
+ * const fSheet = fWorkbook.getActiveSheet();
335
+ * const chartBuilder = fSheet.newChart();
336
+ * const chartInfo = chartBuilder.addRange('A1:D6')
337
+ * .setChartType(ChartTypeBits.Column)
338
+ * .setPosition(1, 1, 0, 0)
339
+ * // the chart will transpose the rows and columns
340
+ * .setTransposeRowsAndColumns(true)
341
+ * .build();
342
+ * fSheet.insertChart(chartInfo);
343
+ * ```
298
344
  */
299
- setTransposeRowsAndColumns(transposeRowsAndColumns: boolean): FChartBuilderBase;
345
+ setTransposeRowsAndColumns(transposeRowsAndColumns: boolean): this;
300
346
  /**
301
347
  * Sets the theme of the chart. If the theme name not registered, a default theme will be used.
302
348
  * @param {string} theme The theme name of the chart.
@@ -314,7 +360,7 @@ export declare class FChartBuilderBase extends FBase {
314
360
  * fSheet.insertChart(chartInfo);
315
361
  * ```
316
362
  */
317
- setTheme(theme: string): FChartBuilderBase;
363
+ setTheme(theme: string): this;
318
364
  /**
319
365
  * Sets the title of the chart x-axis.
320
366
  * @param {string} title The title of the chart x-axis.
@@ -332,7 +378,7 @@ export declare class FChartBuilderBase extends FBase {
332
378
  * fSheet.insertChart(chartInfo);
333
379
  * ```
334
380
  */
335
- setXAxisTitle(title: string): FChartBuilderBase;
381
+ setXAxisTitle(title: string): this;
336
382
  /**
337
383
  * Sets the title of the chart y-axis.
338
384
  * @param {string} title The title of the chart y-axis.
@@ -350,7 +396,7 @@ export declare class FChartBuilderBase extends FBase {
350
396
  * fSheet.insertChart(chartInfo);
351
397
  * ```
352
398
  */
353
- setYAxisTitle(title: string): FChartBuilderBase;
399
+ setYAxisTitle(title: string): this;
354
400
  /**
355
401
  * Sets the title of the chart right y-axis.
356
402
  * @param {string} title The title of the chart right y-axis.
@@ -368,7 +414,7 @@ export declare class FChartBuilderBase extends FBase {
368
414
  * fSheet.insertChart(chartInfo);
369
415
  * ```
370
416
  */
371
- setRightYAxisTitle(title: string): FChartBuilderBase;
417
+ setRightYAxisTitle(title: string): this;
372
418
  /**
373
419
  * Sets the text style for the chart x-axis.
374
420
  * @param {IChartTextStyle} textStyle The text style for the chart x-axis.
@@ -386,7 +432,7 @@ export declare class FChartBuilderBase extends FBase {
386
432
  * fSheet.insertChart(chartInfo);
387
433
  * ```
388
434
  */
389
- setXAxisTextStyle(textStyle: IChartTextStyle): FChartBuilderBase;
435
+ setXAxisTextStyle(textStyle: IChartTextStyle): this;
390
436
  /**
391
437
  * Sets the text style for the chart y-axis.
392
438
  * @param {IChartTextStyle} textStyle The text style for the chart y-axis.
@@ -404,7 +450,7 @@ export declare class FChartBuilderBase extends FBase {
404
450
  * fSheet.insertChart(chartInfo);
405
451
  * ```
406
452
  */
407
- setYAxisTextStyle(textStyle: IChartTextStyle): FChartBuilderBase;
453
+ setYAxisTextStyle(textStyle: IChartTextStyle): this;
408
454
  /**
409
455
  * Sets the text style for the chart right y-axis. Only works in charts have right y-axis.
410
456
  * @param {IChartTextStyle} textStyle The text style for the chart right y-axis.
@@ -422,7 +468,7 @@ export declare class FChartBuilderBase extends FBase {
422
468
  * fSheet.insertChart(chartInfo);
423
469
  * ```
424
470
  */
425
- setRightYAxisTextStyle(textStyle: IChartTextStyle): FChartBuilderBase;
471
+ setRightYAxisTextStyle(textStyle: IChartTextStyle): this;
426
472
  /**
427
473
  * Sets how to handle invalid data in the chart.The possible values are 'zero', 'break' & 'link'.
428
474
  * @description The default value is 'zero'. It means that invalid data will be treated as zero. 'break' means that the chart will have a gap where the invalid data is. 'link' means that the chart will connect the data points on either side of the invalid data.
@@ -441,7 +487,7 @@ export declare class FChartBuilderBase extends FBase {
441
487
  * fSheet.insertChart(chartInfo);
442
488
  * ```
443
489
  */
444
- setInvalidValueStrategy(invalidValueType: InvalidValueType): FChartBuilderBase;
490
+ setInvalidValueStrategy(invalidValueType: InvalidValueType): this;
445
491
  /**
446
492
  * Sets the axis pointer style
447
493
  * @param {IChartBuildOptions['axisPointer']} style The style for the axis pointer.
@@ -476,21 +522,22 @@ export declare class FChartBuilderBase extends FBase {
476
522
  * .build();
477
523
  * ```
478
524
  */
479
- setAxisPointerStyle(style: IChartBuildOptions['axisPointer']): FChartBuilderBase;
525
+ setAxisPointerStyle(style: IChartBuildOptions['axisPointer']): this;
480
526
  /**
481
527
  * Sets styles for all series.
482
528
  * @typedef allSeriesStyle
483
- * @property {ChartTypeBits} chartType The chart type of the series.It only works in combination chart, and the value must be one of ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area;
484
- * @property {boolean} rightYAxis Use the right y-axis for the series.
485
- * @property {string} color The color of the series.
486
- * @property {number} fillOpacity The opacity of the series fill.
487
- * @property {string} border.color The color of the series border.
488
- * @property {number} border.opacity The opacity of the series border.
489
- * @property {number} border.width The width of the series border.
490
- * @property {ChartBorderDashType} border.dashType The dash type of the series border.
491
- * @property {ISeriesLabelStyle} label The label style of the series.
492
- * @property {IPointStyle} point The point style of the series.
493
- * @property {IDataPointStyle} dataPoints The data point style of the series.Radar chart does not support this property.
529
+ * @property {ChartTypeBits} [chartType] The chart type of the series.It only works in combination chart, and the value must be one of ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area;
530
+ * @property {boolean} [rightYAxis] Use the right y-axis for the series.
531
+ * @property {string} [color] The color of the series.
532
+ * @property {number} [fillOpacity] The opacity of the series fill.
533
+ * @property {object} [border] The border style of the series.
534
+ * @property {string} [border.color] The color of the series border.
535
+ * @property {number} [border.opacity] The opacity of the series border.
536
+ * @property {number} [border.width] The width of the series border.
537
+ * @property {ChartBorderDashType} [border.dashType] The dash type of the series border.
538
+ * @property {ISeriesLabelStyle} [label] The label style of the series.
539
+ * @property {IPointStyle} [point] The point style of the series.
540
+ * @property {IDataPointStyle} [dataPoints] The data point style of the series.Radar chart does not support this property.
494
541
  * @param {allSeriesStyle} allSeriesStyle The style for all series.
495
542
  * @returns {FChartBuilderBase} -this builder, for chaining.
496
543
  * @example
@@ -516,7 +563,7 @@ export declare class FChartBuilderBase extends FBase {
516
563
  * fSheet.insertChart(chartInfo);
517
564
  * ```
518
565
  */
519
- setAllSeriesStyle(allSeriesStyle: IAllSeriesStyle): FChartBuilderBase;
566
+ setAllSeriesStyle(allSeriesStyle: Partial<IAllSeriesStyle>): this;
520
567
  /**
521
568
  * Sets the series style by series index.
522
569
  * @description Like setALLSeriesStyle, this difference is the style only set for the provide sty
@@ -545,7 +592,7 @@ export declare class FChartBuilderBase extends FBase {
545
592
  * , 1000);
546
593
  * ```
547
594
  */
548
- setSeriesStyle(index: number | string, seriesStyle: ISeriesStyle): FChartBuilderBase;
595
+ setSeriesStyle(index: number | string, seriesStyle: ISeriesStyle): this;
549
596
  /**
550
597
  * Builds the chart to reflect all changes made to it.
551
598
  * @description This method does not automatically draw the chart on top of the spreadsheet. A new chart must be inserted via sheet.insertChart(chart), and an existing chart should be updated via sheet.updateChart(chart).
@@ -12,25 +12,25 @@ export declare class LineChartBuilder extends FChartBuilderBase {
12
12
  * @param lineStyle
13
13
  * @returns - The builder, for chaining.
14
14
  */
15
- setLineStyle(lineStyle: AreaLineStyle): LineChartBuilder;
15
+ setLineStyle(lineStyle: AreaLineStyle): this;
16
16
  /**
17
17
  * The shape of the data point in the line chart.
18
18
  * @param dataPointShape
19
19
  * @returns - The builder, for chaining.
20
20
  */
21
- setDataPointShape(dataPointShape: LinePointShape): LineChartBuilder;
21
+ setDataPointShape(dataPointShape: LinePointShape): this;
22
22
  /**
23
23
  * The color of the data point in the line chart.
24
24
  * @param dataPointColor
25
25
  * @returns - The builder, for chaining.
26
26
  */
27
- setDataPointColor(dataPointColor: string): LineChartBuilder;
27
+ setDataPointColor(dataPointColor: string): this;
28
28
  /**
29
29
  * The size of the data point in the line chart.
30
30
  * @param dataPointSize
31
31
  * @returns - The builder, for chaining.
32
32
  */
33
- setDataPointSize(dataPointSize: number): LineChartBuilder;
33
+ setDataPointSize(dataPointSize: number): this;
34
34
  /**
35
35
  * Builds the chart to reflect all changes made to it.
36
36
  * @description This method does not automatically draw the chart on top of the spreadsheet. A new chart must be inserted via sheet.insertChart(chart), and an existing chart should be updated via sheet.updateChart(chart).
@@ -13,37 +13,37 @@ export declare class PieChartBuilder extends FChartBuilderBase {
13
13
  * @param {number} doughnutHole The size of the hole in the center of the pie chart as a percentage of the chart size.
14
14
  * @returns this builder, for chaining.
15
15
  */
16
- setDoughnutHole(doughnutHole: number): PieChartBuilder;
16
+ setDoughnutHole(doughnutHole: number): this;
17
17
  /**
18
18
  * Sets the color of the border around the pie chart.
19
19
  * @param {string} borderColor The color of the border around the pie chart.
20
20
  * @returns this builder, for chaining.
21
21
  */
22
- setBorderColor(borderColor: string): PieChartBuilder;
22
+ setBorderColor(borderColor: string): this;
23
23
  /**
24
24
  * Sets whether the pie chart has a padding angle.
25
25
  * @param {boolean} hasPaddingAngle True if the pie chart has a padding angle; false otherwise.
26
26
  * @returns this builder, for chaining.
27
27
  */
28
- setHasPaddingAngle(hasPaddingAngle: boolean): PieChartBuilder;
28
+ setHasPaddingAngle(hasPaddingAngle: boolean): this;
29
29
  /**
30
30
  * Sets whether the pie chart is a half pie chart.
31
31
  * @param {boolean} isHalfPie True if the pie chart is a half pie chart; false otherwise.
32
32
  * @returns this builder, for chaining.
33
33
  */
34
- setIsHalfPie(isHalfPie: boolean): PieChartBuilder;
34
+ setIsHalfPie(isHalfPie: boolean): this;
35
35
  /**
36
36
  * Sets whether the pie chart is a rose pie chart.
37
37
  * @param {boolean} rosePie True if the pie chart is a rose pie chart; false otherwise.
38
38
  * @returns this builder, for chaining.
39
39
  */
40
- setRosePie(rosePie: boolean): PieChartBuilder;
40
+ setRosePie(rosePie: boolean): this;
41
41
  /**
42
42
  * Sets whether the pie chart shows label lines.
43
43
  * @param {boolean} showLabelLine True if the pie chart shows label lines; false otherwise.
44
44
  * @returns this builder, for chaining.
45
45
  */
46
- setShowLabelLine(showLabelLine: boolean): PieChartBuilder;
46
+ setShowLabelLine(showLabelLine: boolean): this;
47
47
  /**
48
48
  * Builds the chart to reflect all changes made to it.
49
49
  * @description This method does not automatically draw the chart on top of the spreadsheet. A new chart must be inserted via sheet.insertChart(chart), and an existing chart should be updated via sheet.updateChart(chart).
@@ -9,14 +9,36 @@ export declare class RadarChartBuilder extends FChartBuilderBase {
9
9
  * Sets the shape of the radar chart.
10
10
  * @param {RadarShape} shape The shape of the radar chart.
11
11
  * @returns this builder, for chaining.
12
+ * @example
13
+ * ```ts
14
+ * // import { ChartTypeBits, RadarShape } from '@univerjs-pro/sheets-chart';
15
+ * const fWorkbook = univerAPI.getActiveWorkbook();
16
+ * const fSheet = fWorkbook.getActiveSheet();
17
+ * const chartBuilder = fSheet.newChart().asRadarChart();
18
+ * const chartInfo = chartBuilder.addRange('A1:B8')
19
+ * .setShape(RadarShape.Polygon)
20
+ * .build();
21
+ * fSheet.insertChart(chartInfo);
22
+ * ```
12
23
  */
13
- setShape(shape: RadarShape): RadarChartBuilder;
24
+ setShape(shape: RadarShape): this;
14
25
  /**
15
26
  * Sets whether the radar chart is filled.
16
27
  * @param {boolean} fill True if the radar chart is filled; false otherwise.
17
28
  * @returns this builder, for chaining.
29
+ * @example
30
+ * ```ts
31
+ * // import { ChartTypeBits } from '@univerjs-pro/sheets-chart';
32
+ * const fWorkbook = univerAPI.getActiveWorkbook();
33
+ * const fSheet = fWorkbook.getActiveSheet();
34
+ * const chartBuilder = fSheet.newChart().asRadarChart();
35
+ * const chartInfo = chartBuilder.addRange('A1:B8')
36
+ * .setFill(true)
37
+ * .build();
38
+ * fSheet.insertChart(chartInfo);
39
+ * ```
18
40
  */
19
- setFill(fill: boolean): RadarChartBuilder;
41
+ setFill(fill: boolean): this;
20
42
  /**
21
43
  * Builds the chart to reflect all changes made to it.
22
44
  * @description This method does not automatically draw the chart on top of the spreadsheet. A new chart must be inserted via sheet.insertChart(chart), and an existing chart should be updated via sheet.updateChart(chart).
package/lib/umd/facade.js CHANGED
@@ -1 +1 @@
1
- function _0x1f03(){const _0x569dc0=['titles.xAxisTitle.fontSize','titles.xAxisTitle.alignment','setRightYAxisTextStyle','xAxisTitle','fontSize','convertPositionCellToSheetOverGrid','setLineStyle','RemoveSheetDrawingCommand','fontWeight','pie.rosePie','titles.title.titlePosition','setYAxisTextStyle','bold','getCharts','tooltip.indicatorLineColor','6OVAwUo','pie.borderColor','6250937OZqYBC','indicatorLineColor','setDataPointShape','ChartThemeService','getChartModel','symbol','setSeriesStyle','with','2074960fTIsNw','getUnitId','updateRange','chartType','setChartType','dataPointShape','titles.title.alignment','sourceSheetName','926141ExoLVr','config','color','titles.yAxisTitle.alignment','This\x20api\x20only\x20works\x20in\x20the\x20active\x20sheet.','setPosition','getRange','setBorderColor','UniverProSheetsChartUiFacade','ChartUpdateSourceCommand','titles.rightYAxisTitle.fontWeight','setXAxisTextStyle','IUniverInstanceService','subUnitId','2275230rznZSz','xAxis','setDataPointSize','getWorkbook','UNIVER_SHEET','pie','titles.xAxisTitle.fontColor','borderColor','alignment','UniverEngineRender','position','radar.fill','Radar','setHeight','range','ChartTypeBits','dataPointSize','generateRandomId','sheetName','area.lineStyle','RadarChartBuilder','removeChart','seriesStyleMap','8705484xjukzr','registerTheme','titles.title.font','theme','UniverSheetsDrawingUi','setProperty','titles.rightYAxisTitle.content','fontStyle','UniverInstanceType','titles.title.fontSize','asRadarChart','getChartType','area','setTheme','chartId','UniverEngineFormula','title','indicatorLineType','shape','italic','titles.xAxisTitle.fontStyle','setAllSeriesStyle','setTransposeRowsAndColumns','titles.title.content','rightYAxisTitle','Line','@univerjs/sheets-drawing-ui','tooltip.indicatorLineType','options','legend.label.color','titles.yAxisTitle.content','function','titles.title.fontWeight','rightYAxis','showLabelLine','keys','getCategoryData','context','getSeriesData','legend','dataPointColor','string','732120WcHSnY','Module','@univerjs/sheets-ui','font','setDataPointColor','hasPaddingAngle','clearRange','defineProperty','radar.shape','setDoughnutHole','titles.xAxisTitle.content','height','deserializeRangeWithSheet','length','extend','get','8jqvnMb','allSeriesStyle.point.color','getSheetId','titles.yAxisTitle.fontSize','content','getChartId','yAxisTitle','Range\x20is\x20required\x20to\x20insert\x20a\x20chart','asPieChart','dataSource','width','@univerjs/engine-render','setAxisPointerStyle','isHalfPie','Sheet\x20','getRenderById','indicatorLabelTextColor','yRightAxis','legend.label.bold','pie.hasPaddingAngle','@univerjs/engine-formula','titles.title.fontStyle','4939760bsBiqV','fill','fontColor','DRAWING_CHART','addRange','legend.position','newChart','titles.rightYAxisTitle.fontColor','CommandService','getCurrentUnitForType','@univerjs/sheets/facade','axisPointer','pie.doughnutHole','point','invalidValueType','isRowDirection','UniverSheetsFacade','tooltip.indicatorLabelColor','UniverSheetsUi','@univerjs/core','setShowLabelLine','tooltip.indicatorLabelTextColor','ISheetSelectionRenderService','legend.label.italic','ChartUpdateConfigCommand','lineStyle','PieChartBuilder','_commandService','build','titles.yAxisTitle.fontColor','titles.rightYAxisTitle.fontStyle','backgroundColor','object','SheetsChartService','registerChartTheme','FBase','setOptions','titles.xAxisTitle.font','_workbook','allSeriesStyle','_injector','setShape','setAbsolutePosition','indicatorLabelColor','executeCommand','unitId','toStringTag','@univerjs-pro/sheets-chart','transposeRowsAndColumns','\x20not\x20found','yAxis','legend.label.fontSize','pie.showLabelLine','rosePie','DrawingTypeEnum','FChart','doughnutHole'];_0x1f03=function(){return _0x569dc0;};return _0x1f03();}function _0x1d32(_0x143941,_0x102d7b){const _0x1f03b5=_0x1f03();return _0x1d32=function(_0x1d3208,_0x34de4e){_0x1d3208=_0x1d3208-0x1cd;let _0x5769aa=_0x1f03b5[_0x1d3208];return _0x5769aa;},_0x1d32(_0x143941,_0x102d7b);}(function(_0x300258,_0x10a4d8){const _0x3e24dd=_0x1d32,_0x542925=_0x300258();while(!![]){try{const _0xb6c08e=-parseInt(_0x3e24dd(0x290))/0x1+parseInt(_0x3e24dd(0x210))/0x2+parseInt(_0x3e24dd(0x1cf))/0x3+-parseInt(_0x3e24dd(0x220))/0x4*(parseInt(_0x3e24dd(0x288))/0x5)+-parseInt(_0x3e24dd(0x27e))/0x6*(-parseInt(_0x3e24dd(0x280))/0x7)+-parseInt(_0x3e24dd(0x236))/0x8+parseInt(_0x3e24dd(0x1e6))/0x9;if(_0xb6c08e===_0x10a4d8)break;else _0x542925['push'](_0x542925['shift']());}catch(_0x3a32b8){_0x542925['push'](_0x542925['shift']());}}}(_0x1f03,0x95346),function(_0x566f63,_0xfc7e81){const _0x3c0aab=_0x1d32;typeof exports==_0x3c0aab(0x256)&&typeof module<'u'?_0xfc7e81(exports,require(_0x3c0aab(0x265)),require('@univerjs-pro/sheets-chart-ui'),require(_0x3c0aab(0x249)),require(_0x3c0aab(0x200)),require(_0x3c0aab(0x240)),require(_0x3c0aab(0x234)),require(_0x3c0aab(0x22b)),require(_0x3c0aab(0x212))):typeof define==_0x3c0aab(0x205)&&define['amd']?define(['exports',_0x3c0aab(0x265),'@univerjs-pro/sheets-chart-ui','@univerjs/core',_0x3c0aab(0x200),_0x3c0aab(0x240),'@univerjs/engine-formula',_0x3c0aab(0x22b),_0x3c0aab(0x212)],_0xfc7e81):(_0x566f63=typeof globalThis<'u'?globalThis:_0x566f63||self,_0xfc7e81(_0x566f63[_0x3c0aab(0x298)]={},_0x566f63['UniverProSheetsChart'],_0x566f63['UniverProSheetsChartUi'],_0x566f63['UniverCore'],_0x566f63[_0x3c0aab(0x1ea)],_0x566f63[_0x3c0aab(0x246)],_0x566f63[_0x3c0aab(0x1f5)],_0x566f63[_0x3c0aab(0x1d8)],_0x566f63[_0x3c0aab(0x248)]));}(this,function(_0x343f69,_0x28f2fb,_0x3faa1e,_0x28ac5e,_0x109214,_0x51d57a,_0x255e30,_0x5adb08,_0x307e37){'use strict';const _0x468c49=_0x1d32;var _0x2298ad=Object[_0x468c49(0x217)],_0xa758aa=(_0x7d91b3,_0x17abb8,_0x4083c0)=>_0x17abb8 in _0x7d91b3?_0x2298ad(_0x7d91b3,_0x17abb8,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4083c0}):_0x7d91b3[_0x17abb8]=_0x4083c0,_0x4a73e7=(_0x1a6689,_0x18e0fc,_0x25e5e7)=>_0xa758aa(_0x1a6689,typeof _0x18e0fc!=_0x468c49(0x285)?_0x18e0fc+'':_0x18e0fc,_0x25e5e7);const _0x49b778=(_0x50ebe4,_0x3678f9,_0xe81329)=>{const _0x14222f=_0x468c49;_0xe81329!==void 0x0&&_0x28f2fb[_0x14222f(0x1eb)](_0x50ebe4,_0x3678f9,_0xe81329);},_0x4b385a=(_0xa40633,_0x57c6ec,_0x12d468,_0xd7a133={})=>{const _0x57ecf4=_0x468c49,_0x1f2f17={},_0x4eb846={};if(_0xd7a133[_0x57ecf4(0x1f6)]){const _0x18ed8f=_0xd7a133[_0x57ecf4(0x1f6)];_0x49b778(_0x1f2f17,_0x57ecf4(0x1fd),_0x18ed8f[_0x57ecf4(0x224)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x1e8),_0x18ed8f['font']),_0x49b778(_0x1f2f17,_0x57ecf4(0x1ef),_0x18ed8f[_0x57ecf4(0x273)]),_0x49b778(_0x1f2f17,'titles.title.fontColor',_0x18ed8f['fontColor']),_0x49b778(_0x1f2f17,_0x57ecf4(0x235),_0x18ed8f['fontStyle']),_0x49b778(_0x1f2f17,_0x57ecf4(0x206),_0x18ed8f[_0x57ecf4(0x277)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x28e),_0x18ed8f[_0x57ecf4(0x1d7)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x279),_0x18ed8f[_0x57ecf4(0x1d9)]);}if(_0xd7a133[_0x57ecf4(0x20d)]){const _0x266315=_0xd7a133[_0x57ecf4(0x20d)];_0x49b778(_0x1f2f17,_0x57ecf4(0x23b),_0x266315['position']),_0x49b778(_0x1f2f17,'legend.selectMode',_0x266315['selectMode']),_0x49b778(_0x1f2f17,_0x57ecf4(0x269),_0x266315[_0x57ecf4(0x273)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x203),_0x266315[_0x57ecf4(0x292)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x232),_0x266315[_0x57ecf4(0x27b)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x24d),_0x266315[_0x57ecf4(0x1f9)]);}if(_0xd7a133[_0x57ecf4(0x1d4)]){const _0x76e37b=_0xd7a133[_0x57ecf4(0x1d4)];_0x49b778(_0x1f2f17,_0x57ecf4(0x242),_0x76e37b[_0x57ecf4(0x26e)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x27f),_0x76e37b[_0x57ecf4(0x1d6)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x233),_0x76e37b[_0x57ecf4(0x215)]),_0x49b778(_0x1f2f17,'pie.isHalfPie',_0x76e37b['isHalfPie']),_0x49b778(_0x1f2f17,_0x57ecf4(0x278),_0x76e37b['rosePie']),_0x49b778(_0x1f2f17,_0x57ecf4(0x26a),_0x76e37b[_0x57ecf4(0x208)]);}if(_0xd7a133[_0x57ecf4(0x241)]){const _0x16316d=_0xd7a133[_0x57ecf4(0x241)];_0x49b778(_0x1f2f17,_0x57ecf4(0x247),_0x16316d[_0x57ecf4(0x261)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x201),_0x16316d[_0x57ecf4(0x1f7)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x27d),_0x16316d[_0x57ecf4(0x281)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x24b),_0x16316d[_0x57ecf4(0x230)]);}if(_0xd7a133[_0x57ecf4(0x25d)]&&_0x49b778(_0x1f2f17,'allSeriesStyle.point',_0xd7a133[_0x57ecf4(0x25d)][_0x57ecf4(0x243)]),_0xd7a133[_0x57ecf4(0x1f2)]&&_0x49b778(_0x1f2f17,_0x57ecf4(0x1e2),_0xd7a133[_0x57ecf4(0x1f2)][_0x57ecf4(0x24f)]),_0xd7a133[_0x57ecf4(0x1e9)]&&_0x49b778(_0x1f2f17,_0x57ecf4(0x1e9),_0xd7a133['theme']),_0xd7a133[_0x57ecf4(0x272)]){const _0x4d4404=_0xd7a133[_0x57ecf4(0x272)];_0x49b778(_0x1f2f17,_0x57ecf4(0x21a),_0x4d4404['content']),_0x49b778(_0x1f2f17,_0x57ecf4(0x25b),_0x4d4404[_0x57ecf4(0x213)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x26f),_0x4d4404[_0x57ecf4(0x273)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x1d5),_0x4d4404[_0x57ecf4(0x238)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x1fa),_0x4d4404['fontStyle']),_0x49b778(_0x1f2f17,'titles.xAxisTitle.fontWeight',_0x4d4404['fontWeight']),_0x49b778(_0x1f2f17,_0x57ecf4(0x270),_0x4d4404['alignment']);}if(_0xd7a133[_0x57ecf4(0x226)]){const _0x3f9227=_0xd7a133[_0x57ecf4(0x226)];_0x49b778(_0x1f2f17,_0x57ecf4(0x204),_0x3f9227[_0x57ecf4(0x224)]),_0x49b778(_0x1f2f17,'titles.yAxisTitle.font',_0x3f9227[_0x57ecf4(0x213)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x223),_0x3f9227[_0x57ecf4(0x273)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x253),_0x3f9227[_0x57ecf4(0x238)]),_0x49b778(_0x1f2f17,'titles.yAxisTitle.fontStyle',_0x3f9227[_0x57ecf4(0x1ed)]),_0x49b778(_0x1f2f17,'titles.yAxisTitle.fontWeight',_0x3f9227[_0x57ecf4(0x277)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x293),_0x3f9227['alignment']);}if(_0xd7a133[_0x57ecf4(0x1fe)]){const _0x44c343=_0xd7a133[_0x57ecf4(0x1fe)];_0x49b778(_0x1f2f17,_0x57ecf4(0x1ec),_0x44c343[_0x57ecf4(0x224)]),_0x49b778(_0x1f2f17,'titles.rightYAxisTitle.font',_0x44c343['font']),_0x49b778(_0x1f2f17,'titles.rightYAxisTitle.fontSize',_0x44c343[_0x57ecf4(0x273)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x23d),_0x44c343[_0x57ecf4(0x238)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x254),_0x44c343[_0x57ecf4(0x1ed)]),_0x49b778(_0x1f2f17,_0x57ecf4(0x29a),_0x44c343[_0x57ecf4(0x277)]),_0x49b778(_0x1f2f17,'titles.rightYAxisTitle.alignment',_0x44c343[_0x57ecf4(0x1d7)]);}_0xd7a133[_0x57ecf4(0x1d0)]&&_0x49b778(_0x1f2f17,_0x57ecf4(0x1d0),_0xd7a133['xAxis']),_0xd7a133[_0x57ecf4(0x268)]&&_0x49b778(_0x1f2f17,_0x57ecf4(0x268),_0xd7a133[_0x57ecf4(0x268)]),_0xd7a133['yRightAxis']&&_0x49b778(_0x1f2f17,_0x57ecf4(0x207),_0xd7a133[_0x57ecf4(0x231)]),_0xd7a133['seriesStyleMap']&&_0x49b778(_0x1f2f17,_0x57ecf4(0x1e5),_0xd7a133[_0x57ecf4(0x1e5)]);const _0x51a0d9={'unitId':_0xa40633,'chartModelId':_0x57c6ec};let _0x5d7ee5=!0x1;if(_0x12d468!==void 0x0&&(_0x51a0d9[_0x57ecf4(0x28b)]=_0x12d468,_0x5d7ee5=!0x0),Object[_0x57ecf4(0x209)](_0x1f2f17)[_0x57ecf4(0x21d)]>0x0&&(_0x51a0d9['style']=_0x1f2f17,_0x5d7ee5=!0x0),Object['keys'](_0x4eb846)[_0x57ecf4(0x21d)]>0x0&&(_0x51a0d9[_0x57ecf4(0x20b)]=_0x4eb846,_0x5d7ee5=!0x0),_0x5d7ee5)return _0x51a0d9;};class _0x4c7cb0 extends _0x28ac5e[_0x468c49(0x259)]{constructor(_0x80f9e,_0x2f48dc,_0x19a489,_0x307f73,_0x2801fd){const _0x52a6ae=_0x468c49;super(),_0x4a73e7(this,_0x52a6ae(0x25c)),_0x4a73e7(this,'_injector'),_0x4a73e7(this,_0x52a6ae(0x263)),_0x4a73e7(this,_0x52a6ae(0x1ce)),_0x4a73e7(this,_0x52a6ae(0x1f4)),_0x4a73e7(this,_0x52a6ae(0x1dd)),_0x4a73e7(this,'sourceSheetName'),_0x4a73e7(this,'x'),_0x4a73e7(this,'y'),_0x4a73e7(this,_0x52a6ae(0x22a)),_0x4a73e7(this,'height'),_0x4a73e7(this,_0x52a6ae(0x28b)),_0x4a73e7(this,_0x52a6ae(0x202)),_0x4a73e7(this,_0x52a6ae(0x266)),(this[_0x52a6ae(0x263)]=_0x80f9e,this['subUnitId']=_0x2f48dc,this['_workbook']=_0x19a489,this[_0x52a6ae(0x25e)]=_0x307f73,_0x2801fd&&(this[_0x52a6ae(0x1f4)]=_0x2801fd));}[_0x468c49(0x1f1)](){const _0x1acf42=_0x468c49;return this[_0x1acf42(0x28b)];}[_0x468c49(0x23a)](_0x509470){const _0x4491b7=_0x468c49;if(typeof _0x509470==_0x4491b7(0x20f)){const _0x4032ab=_0x255e30[_0x4491b7(0x21c)](_0x509470);_0x4032ab[_0x4491b7(0x1e1)]&&(this[_0x4491b7(0x28f)]=_0x4032ab[_0x4491b7(0x1e1)]),this[_0x4491b7(0x1dd)]=_0x4032ab[_0x4491b7(0x1dd)];}else this[_0x4491b7(0x1dd)]=_0x509470;return this;}[_0x468c49(0x216)](){const _0x21fedb=_0x468c49;return this[_0x21fedb(0x1dd)]=void 0x0,this['sourceSheetName']=void 0x0,this;}[_0x468c49(0x295)](_0x1c8f47,_0xef008a,_0x404253,_0x4756cb){const _0x2a952a=_0x468c49,_0x1b7fdf=this[_0x2a952a(0x25e)][_0x2a952a(0x21f)](_0x5adb08['IRenderManagerService'])[_0x2a952a(0x22f)](this[_0x2a952a(0x263)]);if(!_0x1b7fdf)throw new Error(_0x2a952a(0x294));const _0x4657a0=_0x1b7fdf['with'](_0x307e37[_0x2a952a(0x24c)]),_0x400eab=_0x1b7fdf[_0x2a952a(0x287)](_0x307e37['SheetSkeletonManagerService']),{transform:_0x73c0a8}=_0x307e37[_0x2a952a(0x274)](this[_0x2a952a(0x263)],this['subUnitId'],{'row':_0x1c8f47,'column':_0xef008a,'rowOffset':_0x404253,'columnOffset':_0x4756cb},0x1,0x1,_0x4657a0,_0x400eab),_0x3c6d45=_0x73c0a8['top'],_0x9b1715=_0x73c0a8['left'];return this['x']=_0x9b1715,this['y']=_0x3c6d45,this;}[_0x468c49(0x260)](_0x50cf07,_0x5b32c0){return this['x']=_0x50cf07,this['y']=_0x5b32c0,this;}[_0x468c49(0x28c)](_0x443a4e){const _0xfaba61=_0x468c49;return this[_0xfaba61(0x28b)]=_0x443a4e,this;}['setWidth'](_0x58546d){const _0x4a7956=_0x468c49;return this[_0x4a7956(0x22a)]=_0x58546d,this;}[_0x468c49(0x1dc)](_0x1da3ae){const _0x3ee41f=_0x468c49;return this[_0x3ee41f(0x21b)]=_0x1da3ae,this;}[_0x468c49(0x25a)](_0x2a0d4f,_0x2420e5){const _0x482d21=_0x468c49;return this[_0x482d21(0x202)]||(this[_0x482d21(0x202)]={}),_0x2a0d4f===''?(this[_0x482d21(0x202)]={...this['options'],..._0x2420e5},this):(_0x28f2fb['setProperty'](this[_0x482d21(0x202)],_0x2a0d4f,_0x2420e5),this);}[_0x468c49(0x1fc)](_0xfb2025){const _0x10b938=_0x468c49;return this[_0x10b938(0x266)]=_0xfb2025,this;}[_0x468c49(0x1f3)](_0xdc276f){const _0x465ec0=_0x468c49;return this[_0x465ec0(0x25a)](_0x465ec0(0x1e9),_0xdc276f),this;}['setXAxisTitle'](_0x123a83){const _0x230c8e=_0x468c49;var _0x55fa87;const _0x55955d=((_0x55fa87=this[_0x230c8e(0x202)])==null?void 0x0:_0x55fa87[_0x230c8e(0x272)])||{};return _0x55955d[_0x230c8e(0x224)]=_0x123a83,this[_0x230c8e(0x25a)](_0x230c8e(0x272),_0x55955d),this;}['setYAxisTitle'](_0x13b72e){const _0x2fcb08=_0x468c49;var _0x57d19e;const _0x5db899=((_0x57d19e=this[_0x2fcb08(0x202)])==null?void 0x0:_0x57d19e['yAxisTitle'])||{};return _0x5db899[_0x2fcb08(0x224)]=_0x13b72e,this['setOptions'](_0x2fcb08(0x226),_0x5db899),this;}['setRightYAxisTitle'](_0x3db479){const _0x1ba4af=_0x468c49;var _0xab6f7e;const _0x121d86=((_0xab6f7e=this[_0x1ba4af(0x202)])==null?void 0x0:_0xab6f7e[_0x1ba4af(0x1fe)])||{};return _0x121d86[_0x1ba4af(0x224)]=_0x3db479,this['setOptions'](_0x1ba4af(0x1fe),_0x121d86),this;}[_0x468c49(0x29b)](_0x182d7b){const _0x356886=_0x468c49;var _0x15b679;const _0x3f2c19=((_0x15b679=this[_0x356886(0x202)])==null?void 0x0:_0x15b679['xAxisTitle'])||{};return this['setOptions'](_0x356886(0x272),{..._0x3f2c19,..._0x182d7b}),this;}[_0x468c49(0x27a)](_0x4602b2){const _0x399347=_0x468c49;var _0x1ae5f7;const _0x1257ee=((_0x1ae5f7=this['options'])==null?void 0x0:_0x1ae5f7[_0x399347(0x226)])||{};return this[_0x399347(0x25a)](_0x399347(0x226),{..._0x1257ee,..._0x4602b2}),this;}[_0x468c49(0x271)](_0x2a0502){const _0x3c8994=_0x468c49;var _0x22c2dc;const _0x4c6e0f=((_0x22c2dc=this['options'])==null?void 0x0:_0x22c2dc[_0x3c8994(0x1fe)])||{};return this[_0x3c8994(0x25a)](_0x3c8994(0x1fe),{..._0x4c6e0f,..._0x2a0502}),this;}['setInvalidValueStrategy'](_0x44bb09){const _0x5389aa=_0x468c49;return this['setOptions'](_0x5389aa(0x244),_0x44bb09),this;}[_0x468c49(0x22c)](_0x264aab){const _0x117a2c=_0x468c49;return this[_0x117a2c(0x25a)](_0x117a2c(0x241),_0x264aab),this;}[_0x468c49(0x1fb)](_0x4481ed){const _0x40c7f=_0x468c49;return this[_0x40c7f(0x25a)](_0x40c7f(0x25d),_0x4481ed),this;}[_0x468c49(0x286)](_0x1974b1,_0x292903){const _0x2868f2=_0x468c49;return this[_0x2868f2(0x25a)](_0x2868f2(0x1e5),{[_0x1974b1]:_0x292903}),this;}['build'](){const _0x4adfab=_0x468c49;var _0x26ffa6;let _0x5b3ac6=this[_0x4adfab(0x1ce)];if(this[_0x4adfab(0x28f)]){const _0x24f2d5=(_0x26ffa6=this[_0x4adfab(0x25c)]['getSheetBySheetName'](this[_0x4adfab(0x28f)]))==null?void 0x0:_0x26ffa6[_0x4adfab(0x222)]();if(!_0x24f2d5)throw new Error(_0x4adfab(0x22e)+this['sourceSheetName']+_0x4adfab(0x267));_0x5b3ac6=_0x24f2d5;}return{'unitId':this[_0x4adfab(0x263)],'subUnitId':_0x5b3ac6,'chartId':this['chartId'],'range':this['range'],'x':this['x'],'y':this['y'],'width':this['width'],'height':this[_0x4adfab(0x21b)],'chartType':this[_0x4adfab(0x28b)],'options':this[_0x4adfab(0x202)],'isRowDirection':this[_0x4adfab(0x266)]};}}class _0x2fd813{constructor(_0x364893,_0x13b7f3,_0x233886,_0x4c1f5c){const _0x493c82=_0x468c49;_0x4a73e7(this,_0x493c82(0x263)),_0x4a73e7(this,_0x493c82(0x1ce)),_0x4a73e7(this,_0x493c82(0x1f4)),_0x4a73e7(this,_0x493c82(0x25e)),(this[_0x493c82(0x263)]=_0x364893,this['subUnitId']=_0x13b7f3,this[_0x493c82(0x1f4)]=_0x233886,this[_0x493c82(0x25e)]=_0x4c1f5c);}[_0x468c49(0x225)](){return this['chartId'];}[_0x468c49(0x296)](){const _0x38ff12=_0x468c49,_0x9b0885=this['_injector'][_0x38ff12(0x21f)](_0x28f2fb[_0x38ff12(0x257)])[_0x38ff12(0x284)](this[_0x38ff12(0x1f4)]);if(_0x9b0885)return _0x9b0885[_0x38ff12(0x229)]['getRangeInfo']();}[_0x468c49(0x28a)](_0x4b09e2){const _0x58d072=_0x468c49;return this['_injector']['get'](_0x28ac5e[_0x58d072(0x23e)])[_0x58d072(0x262)](_0x28f2fb[_0x58d072(0x299)]['id'],{'unitId':this[_0x58d072(0x263)],'chartModelId':this['chartId'],'range':_0x4b09e2});}[_0x468c49(0x20c)](){const _0x551f84=_0x468c49;var _0x16a507;const _0x18666c=this[_0x551f84(0x25e)][_0x551f84(0x21f)](_0x28f2fb[_0x551f84(0x257)])[_0x551f84(0x284)](this['chartId']);if(_0x18666c)return(_0x16a507=_0x18666c[_0x551f84(0x291)])==null?void 0x0:_0x16a507['series'];}[_0x468c49(0x20a)](){const _0x1f2f6b=_0x468c49;var _0x28f02f;const _0x417732=this[_0x1f2f6b(0x25e)][_0x1f2f6b(0x21f)](_0x28f2fb[_0x1f2f6b(0x257)])[_0x1f2f6b(0x284)](this[_0x1f2f6b(0x1f4)]);if(_0x417732)return(_0x28f02f=_0x417732[_0x1f2f6b(0x291)])==null?void 0x0:_0x28f02f['category'];}['modify'](){const _0x634578=_0x468c49,_0x25b374=this[_0x634578(0x25e)][_0x634578(0x21f)](_0x28ac5e[_0x634578(0x1cd)])[_0x634578(0x23f)](_0x28ac5e[_0x634578(0x1ee)][_0x634578(0x1d3)]);return new _0x4c7cb0(this[_0x634578(0x263)],this[_0x634578(0x1ce)],_0x25b374,this[_0x634578(0x25e)],this[_0x634578(0x1f4)]);}}class _0x3164b9 extends _0x51d57a['FWorksheet']{async['insertChart'](_0xf293ae){const _0x18192c=_0x468c49;var _0x4cace3,_0x11d704,_0x1ca12a;const _0x1aba19=_0xf293ae[_0x18192c(0x263)]||this[_0x18192c(0x1d2)]()[_0x18192c(0x289)](),_0x3d87db=_0xf293ae[_0x18192c(0x1ce)]||this[_0x18192c(0x222)](),_0x1f3bac=_0xf293ae[_0x18192c(0x1f4)]||_0x28ac5e[_0x18192c(0x1e0)](),_0x9c4ffc=_0xf293ae[_0x18192c(0x28b)],_0x42be21=_0xf293ae[_0x18192c(0x1dd)],_0x19b6ee={'x':_0xf293ae['x'],'y':_0xf293ae['y']},_0x4a91c7=_0xf293ae[_0x18192c(0x22a)],_0x1574c7=_0xf293ae[_0x18192c(0x21b)],_0x35844c=(_0x4cace3=_0xf293ae[_0x18192c(0x202)])==null?void 0x0:_0x4cace3[_0x18192c(0x255)],_0x355bfe=(_0x11d704=_0xf293ae[_0x18192c(0x202)])==null?void 0x0:_0x11d704[_0x18192c(0x1d6)],_0x32179d=_0x4b385a(_0x1aba19,_0x1f3bac,_0x9c4ffc,_0xf293ae[_0x18192c(0x202)]),_0x54cbf0=(_0x1ca12a=_0xf293ae[_0x18192c(0x245)])!=null?_0x1ca12a:!0x0;if(!_0x42be21)throw new Error(_0x18192c(0x227));return await this[_0x18192c(0x251)][_0x18192c(0x262)](_0x3faa1e['InsertChartCommand']['id'],{'unitId':_0x1aba19,'subUnitId':_0x3d87db,'chartId':_0x1f3bac,'chartType':_0x9c4ffc,'range':_0x42be21,'position':_0x19b6ee,'width':_0x4a91c7,'height':_0x1574c7,'backgroundColor':_0x35844c,'borderColor':_0x355bfe,'config':_0x32179d,'isRowDirection':_0x54cbf0}),new _0x2fd813(_0x1aba19,_0x3d87db,_0x1f3bac,this[_0x18192c(0x25e)]);}['updateChart'](_0x4751f8){const _0x1cf9b6=_0x468c49,{unitId:_0x41572d,chartId:_0x2f2f7c,chartType:_0x4a14a8,options:_0x4a7473}=_0x4751f8,_0x436880=_0x4b385a(_0x41572d,_0x2f2f7c,_0x4a14a8,_0x4a7473);this[_0x1cf9b6(0x251)][_0x1cf9b6(0x262)](_0x28f2fb[_0x1cf9b6(0x24e)]['id'],_0x436880);}[_0x468c49(0x23c)](_0x312421){const _0x48aa76=_0x468c49;if(_0x312421)return new _0x4c7cb0(_0x312421[_0x48aa76(0x263)],_0x312421['subUnitId'],this[_0x48aa76(0x25c)],this[_0x48aa76(0x25e)],_0x312421[_0x48aa76(0x1f4)]);const _0x1c02ca=this[_0x48aa76(0x1d2)]()[_0x48aa76(0x289)](),_0x34dccc=this[_0x48aa76(0x222)]();return new _0x4c7cb0(_0x1c02ca,_0x34dccc,this['_workbook'],this[_0x48aa76(0x25e)]);}[_0x468c49(0x27c)](){const _0x4bd14f=_0x468c49,_0x434e6e=this['_injector'][_0x4bd14f(0x21f)](_0x28f2fb[_0x4bd14f(0x257)]),_0x5d2ebc=this['getWorkbook']()['getUnitId']();return _0x434e6e['getUnitChartModels'](_0x5d2ebc,this[_0x4bd14f(0x222)]())['map'](_0x174f7e=>new _0x2fd813(_0x5d2ebc,this['getSheetId'](),_0x174f7e['id'],this[_0x4bd14f(0x25e)]));}[_0x468c49(0x1e4)](_0x2b9a4b){const _0x2f9809=_0x468c49,_0x4e6bcd=_0x2b9a4b['unitId'],_0x48e970=_0x2b9a4b[_0x2f9809(0x1ce)],_0x53aaad=_0x2b9a4b[_0x2f9809(0x1f4)],_0x1f71bf={'unitId':_0x4e6bcd,'drawings':[{'unitId':_0x4e6bcd,'subUnitId':_0x48e970,'drawingId':_0x53aaad,'drawingType':_0x28ac5e[_0x2f9809(0x26c)][_0x2f9809(0x239)]}]};return this[_0x2f9809(0x251)]['executeCommand'](_0x109214[_0x2f9809(0x276)]['id'],_0x1f71bf);}[_0x468c49(0x258)](_0x37e776,_0x5f0840){const _0x4f3f1e=_0x468c49;this[_0x4f3f1e(0x25e)][_0x4f3f1e(0x21f)](_0x28f2fb[_0x4f3f1e(0x283)])[_0x4f3f1e(0x1e7)](_0x37e776,_0x5f0840);}}_0x51d57a['FWorksheet'][_0x468c49(0x21e)](_0x3164b9);class _0x2bbdd4 extends _0x4c7cb0{constructor(_0x4d8a5e,_0x5bbc5e,_0x4271f6,_0x1da10e,_0x40a5f7){const _0x8e712d=_0x468c49;super(_0x4d8a5e,_0x5bbc5e,_0x4271f6,_0x1da10e,_0x40a5f7),_0x4a73e7(this,_0x8e712d(0x24f)),_0x4a73e7(this,'dataPointShape'),_0x4a73e7(this,_0x8e712d(0x20e)),_0x4a73e7(this,'dataPointSize');}[_0x468c49(0x275)](_0x5e3b91){const _0x4b3e78=_0x468c49;return this[_0x4b3e78(0x24f)]=_0x5e3b91,this;}[_0x468c49(0x282)](_0x5ba01b){const _0x405f7c=_0x468c49;return this[_0x405f7c(0x28d)]=_0x5ba01b,this;}[_0x468c49(0x214)](_0x58e043){const _0x4d87bf=_0x468c49;return this[_0x4d87bf(0x20e)]=_0x58e043,this;}[_0x468c49(0x1d1)](_0x36205c){const _0x4142cc=_0x468c49;return this[_0x4142cc(0x1df)]=_0x36205c,this;}[_0x468c49(0x252)](){const _0x57187f=_0x468c49,_0x1e4f77=super['build']();_0x1e4f77[_0x57187f(0x28b)]=_0x28f2fb[_0x57187f(0x1de)][_0x57187f(0x1ff)];const _0x34d77c=_0x1e4f77[_0x57187f(0x202)]||{};return _0x49b778(_0x34d77c,_0x57187f(0x1e2),this[_0x57187f(0x24f)]),_0x49b778(_0x34d77c,'allSeriesStyle.point.shape',this[_0x57187f(0x28d)]),_0x49b778(_0x34d77c,_0x57187f(0x221),this['dataPointColor']),_0x49b778(_0x34d77c,'allSeriesStyle.point.size',this[_0x57187f(0x1df)]),_0x1e4f77[_0x57187f(0x202)]=_0x34d77c,_0x1e4f77;}}class _0x573466 extends _0x4c7cb0{['asLineChart'](){const _0x77df73=_0x468c49;return new _0x2bbdd4(this['unitId'],this[_0x77df73(0x1ce)],this['_workbook'],this[_0x77df73(0x25e)],this[_0x77df73(0x1f4)]);}}_0x4c7cb0['extend'](_0x573466);class _0x2bd7da extends _0x4c7cb0{constructor(_0x1f511b,_0x52663a,_0x25bb80,_0x29d22d,_0x3077b7){const _0x4bdd37=_0x468c49;super(_0x1f511b,_0x52663a,_0x25bb80,_0x29d22d,_0x3077b7),_0x4a73e7(this,_0x4bdd37(0x26e)),_0x4a73e7(this,_0x4bdd37(0x1d6)),_0x4a73e7(this,_0x4bdd37(0x215)),_0x4a73e7(this,_0x4bdd37(0x22d)),_0x4a73e7(this,_0x4bdd37(0x26b)),_0x4a73e7(this,'showLabelLine');}[_0x468c49(0x219)](_0x3b29f3){const _0x227549=_0x468c49;return this[_0x227549(0x26e)]=_0x3b29f3,this;}[_0x468c49(0x297)](_0x249120){const _0x509dcd=_0x468c49;return this[_0x509dcd(0x1d6)]=_0x249120,this;}['setHasPaddingAngle'](_0x3406ff){const _0x467ae6=_0x468c49;return this[_0x467ae6(0x215)]=_0x3406ff,this;}['setIsHalfPie'](_0x3e1501){const _0x4b9650=_0x468c49;return this[_0x4b9650(0x22d)]=_0x3e1501,this;}['setRosePie'](_0x4d6799){const _0x5d8529=_0x468c49;return this[_0x5d8529(0x26b)]=_0x4d6799,this;}[_0x468c49(0x24a)](_0x47c048){return this['showLabelLine']=_0x47c048,this;}['build'](){const _0x56c492=_0x468c49,_0x183eee=super[_0x56c492(0x252)]();_0x183eee['chartType']=_0x28f2fb[_0x56c492(0x1de)]['Pie'];const _0x307041=_0x183eee[_0x56c492(0x202)]||{};return _0x49b778(_0x307041,_0x56c492(0x242),this['doughnutHole']),_0x49b778(_0x307041,_0x56c492(0x27f),this[_0x56c492(0x1d6)]),_0x49b778(_0x307041,_0x56c492(0x233),this[_0x56c492(0x215)]),_0x49b778(_0x307041,'pie.isHalfPie',this[_0x56c492(0x22d)]),_0x49b778(_0x307041,_0x56c492(0x278),this[_0x56c492(0x26b)]),_0x49b778(_0x307041,_0x56c492(0x26a),this[_0x56c492(0x208)]),_0x183eee[_0x56c492(0x202)]=_0x307041,_0x183eee;}}class _0x3a50d0 extends _0x4c7cb0{[_0x468c49(0x228)](){const _0x2af971=_0x468c49;return new _0x2bd7da(this[_0x2af971(0x263)],this[_0x2af971(0x1ce)],this[_0x2af971(0x25c)],this[_0x2af971(0x25e)],this['chartId']);}}_0x4c7cb0[_0x468c49(0x21e)](_0x3a50d0);class _0x4e41c8 extends _0x4c7cb0{constructor(_0x3f9909,_0x1fe264,_0x2d436a,_0x19214d,_0x1a9968){const _0x391122=_0x468c49;super(_0x3f9909,_0x1fe264,_0x2d436a,_0x19214d,_0x1a9968),_0x4a73e7(this,_0x391122(0x1f8)),_0x4a73e7(this,_0x391122(0x237));}[_0x468c49(0x25f)](_0xafae98){const _0x2334ba=_0x468c49;return this[_0x2334ba(0x1f8)]=_0xafae98,this;}['setFill'](_0x238d8e){const _0x3f453d=_0x468c49;return this[_0x3f453d(0x237)]=_0x238d8e,this;}[_0x468c49(0x252)](){const _0xf3b7c4=_0x468c49,_0x33381a=super['build']();_0x33381a['chartType']=_0x28f2fb[_0xf3b7c4(0x1de)][_0xf3b7c4(0x1db)];const _0x5132ea=_0x33381a[_0xf3b7c4(0x202)]||{};return _0x49b778(_0x5132ea,_0xf3b7c4(0x218),this[_0xf3b7c4(0x1f8)]),_0x49b778(_0x5132ea,_0xf3b7c4(0x1da),this[_0xf3b7c4(0x237)]),_0x33381a['options']=_0x5132ea,_0x33381a;}}class _0x2b07df extends _0x4c7cb0{[_0x468c49(0x1f0)](){const _0x1e2c14=_0x468c49;return new _0x4e41c8(this['unitId'],this[_0x1e2c14(0x1ce)],this[_0x1e2c14(0x25c)],this[_0x1e2c14(0x25e)],this['chartId']);}}_0x4c7cb0['extend'](_0x2b07df),_0x343f69[_0x468c49(0x26d)]=_0x2fd813,_0x343f69['FChartBuilderBase']=_0x4c7cb0,_0x343f69['LineChartBuilder']=_0x2bbdd4,_0x343f69[_0x468c49(0x250)]=_0x2bd7da,_0x343f69[_0x468c49(0x1e3)]=_0x4e41c8,Object[_0x468c49(0x217)](_0x343f69,Symbol[_0x468c49(0x264)],{'value':_0x468c49(0x211)});}));
1
+ function _0x5cc4(){const _0x5ac4bf=['setDataPointSize','italic','setDataPointShape','ChartTypeBits','getSheetId','pie.isHalfPie','\x20not\x20found','fill','updateRange','CommandService','radar.shape','rightYAxis','color','Module','series','category','deserializeRangeWithSheet','legend.position','RadarChartBuilder','Sheet\x20','getRangeInfo','build','PieChartBuilder','DrawingTypeEnum','setOptions','setFill','ChartUpdateConfigCommand','insertChart','getUnitId','1701056DOELdq','radar.fill','string','axisAlignment','keys','getChartType','pie.showLabelLine','titles.title.content','@univerjs-pro/sheets-chart','Line','1408032prRyHH','axisPointer','titles.xAxisTitle.fontSize','dataPointShape','dataPointSize','allSeriesStyle','getChartId','UniverProSheetsChart','SheetSkeletonManagerService','width','setPosition','setInvalidValueStrategy','setRightYAxisTitle','UniverInstanceType','RemoveSheetDrawingCommand','titles.yAxisTitle.content','unitId','titles.yAxisTitle.bold','indicatorLineColor','allSeriesStyle.point','dataPointColor','radar','setShape','getUnitChartModels','@univerjs/core','indicatorLabelTextColor','subUnitId','legend.label.italic','setRightYAxisTextStyle','FWorksheet','FChartBuilderBase','registerChartTheme','titles.titlePosition','seriesStyleMap','UniverCore','addRange','titles.xAxisTitle.font','style','439928avRMsb','convertPositionCellToSheetOverGrid','object','UNIVER_SHEET','ChartUpdateSourceCommand','InsertChartCommand','titles.rightYAxisTitle.content','pie.doughnutHole','setHasPaddingAngle','@univerjs/engine-render','doughnutHole','UniverProSheetsChartUiFacade','titles.title.bold','lineStyle','setDataPointColor','ISheetSelectionRenderService','pie','setHeight','titles.title.align','indicatorLabelColor','_workbook','tooltip.indicatorLineColor','get','xAxisTitle','legend.label.color','titles.rightYAxisTitle.bold','20idVQhC','getSheetBySheetName','getCategoryData','FChart','getRange','theme','getChartModel','extend','SheetsChartService','getWorkbook','chartId','setChartType','context','3562821KMyYyM','asRadarChart','removeChart','fontColor','options','IUniverInstanceService','borderColor','15HhTtnc','UniverEngineFormula','titles.xAxisTitle.bold','bold','setTheme','setYAxisTitle','2613583MyAYym','length','titleAlignment','fontStyle','titles.xAxisTitle.family','titles.title.color','symbol','asPieChart','sheetName','setLineStyle','Range\x20is\x20required\x20to\x20insert\x20a\x20chart','UniverSheetsFacade','yRightAxis','UniverSheetsUi','config','yAxis','updateChart','titles.yAxisTitle.color','11XKDoTz','titles.title.family','fontSize','yAxis.label.axisTitleAlign','tooltip.indicatorLabelColor','area','isRowDirection','rightYAxis.label.axisTitleAlign','_commandService','getCharts','setXAxisTextStyle','yAxisTitle','hasPaddingAngle','clearRange','newChart','@univerjs/sheets-ui','amd','pie.rosePie','area.lineStyle','shape','legend','height','titles.rightYAxisTitle.color','font','with','xAxis','@univerjs-pro/sheets-chart-ui','DRAWING_CHART','getRenderById','chartType','asLineChart','legend.label.bold','isHalfPie','exports','pie.borderColor','point','setRosePie','sourceSheetName','xAxis.label.axisTitleAlign','titles.xAxisTitle.content','showLabelLine','defineProperty','modify','rosePie','setAllSeriesStyle','setAbsolutePosition','setXAxisTitle','titles.yAxisTitle.font','Radar','pie.hasPaddingAngle','@univerjs/engine-formula','setIsHalfPie','UniverEngineRender','content','executeCommand','setProperty','793596MpdVOX','setSeriesStyle','81222LXIaeP','setAxisPointerStyle','setDoughnutHole','_injector','function','UniverProSheetsChartUi','setYAxisTextStyle','dataSource','ChartThemeService','backgroundColor','transposeRowsAndColumns','setWidth','IRenderManagerService','range','left','getCurrentUnitForType','titles.yAxisTitle.fontSize','rightYAxisTitle','position','indicatorLineType','top'];_0x5cc4=function(){return _0x5ac4bf;};return _0x5cc4();}function _0x221c(_0x264421,_0x382552){const _0x5cc470=_0x5cc4();return _0x221c=function(_0x221c08,_0x28263c){_0x221c08=_0x221c08-0x9a;let _0x14ce86=_0x5cc470[_0x221c08];return _0x14ce86;},_0x221c(_0x264421,_0x382552);}(function(_0x53a859,_0x365340){const _0x2823ea=_0x221c,_0xf0eecd=_0x53a859();while(!![]){try{const _0x4f97cd=parseInt(_0x2823ea(0xaa))/0x1*(-parseInt(_0x2823ea(0xe4))/0x2)+-parseInt(_0x2823ea(0x120))/0x3+-parseInt(_0x2823ea(0x116))/0x4+parseInt(_0x2823ea(0x174))/0x5*(parseInt(_0x2823ea(0xe2))/0x6)+parseInt(_0x2823ea(0x17a))/0x7+parseInt(_0x2823ea(0x146))/0x8+parseInt(_0x2823ea(0x16d))/0x9*(parseInt(_0x2823ea(0x160))/0xa);if(_0x4f97cd===_0x365340)break;else _0xf0eecd['push'](_0xf0eecd['shift']());}catch(_0xe18271){_0xf0eecd['push'](_0xf0eecd['shift']());}}}(_0x5cc4,0x4346f),function(_0x271bff,_0x31bf00){const _0x48b39f=_0x221c;typeof exports==_0x48b39f(0x148)&&typeof module<'u'?_0x31bf00(exports,require(_0x48b39f(0x11e)),require(_0x48b39f(0xc4)),require(_0x48b39f(0x138)),require('@univerjs/sheets-drawing-ui'),require('@univerjs/sheets/facade'),require(_0x48b39f(0xdc)),require(_0x48b39f(0x14f)),require('@univerjs/sheets-ui')):typeof define==_0x48b39f(0xe8)&&define[_0x48b39f(0xba)]?define([_0x48b39f(0xcb),_0x48b39f(0x11e),_0x48b39f(0xc4),'@univerjs/core','@univerjs/sheets-drawing-ui','@univerjs/sheets/facade',_0x48b39f(0xdc),'@univerjs/engine-render',_0x48b39f(0xb9)],_0x31bf00):(_0x271bff=typeof globalThis<'u'?globalThis:_0x271bff||self,_0x31bf00(_0x271bff[_0x48b39f(0x151)]={},_0x271bff[_0x48b39f(0x127)],_0x271bff[_0x48b39f(0xe9)],_0x271bff[_0x48b39f(0x142)],_0x271bff['UniverSheetsDrawingUi'],_0x271bff[_0x48b39f(0xa3)],_0x271bff[_0x48b39f(0x175)],_0x271bff[_0x48b39f(0xde)],_0x271bff[_0x48b39f(0xa5)]));}(this,function(_0x20c243,_0x54d2da,_0x1ef32c,_0x4bca53,_0x1dd9ba,_0x4c47f8,_0x8217a5,_0x2f6744,_0x2d1b73){'use strict';const _0x8e1761=_0x221c;var _0x5aec79=Object[_0x8e1761(0xd3)],_0x134cf5=(_0x497be4,_0x1a10b3,_0x19f907)=>_0x1a10b3 in _0x497be4?_0x5aec79(_0x497be4,_0x1a10b3,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x19f907}):_0x497be4[_0x1a10b3]=_0x19f907,_0x4f6a80=(_0x427f1e,_0x495bc,_0x52c838)=>_0x134cf5(_0x427f1e,typeof _0x495bc!=_0x8e1761(0x9e)?_0x495bc+'':_0x495bc,_0x52c838);const _0x35bf9b=(_0x3f54c9,_0x48c4c4,_0xeebb3e)=>{const _0x541316=_0x8e1761;_0xeebb3e!==void 0x0&&_0x54d2da[_0x541316(0xe1)](_0x3f54c9,_0x48c4c4,_0xeebb3e);},_0x34a015=(_0x585761,_0x22f1cf,_0x17d692,_0x1f8ae0={})=>{const _0x145a52=_0x8e1761,_0x30d3ba={},_0x1fa71a={};if(_0x1f8ae0['title']){const _0x248ef4=_0x1f8ae0['title'];_0x35bf9b(_0x30d3ba,_0x145a52(0x11d),_0x248ef4[_0x145a52(0xdf)]),_0x35bf9b(_0x30d3ba,'titles.title.font',_0x248ef4['font']),_0x35bf9b(_0x30d3ba,'titles.title.fontSize',_0x248ef4['fontSize']),_0x35bf9b(_0x30d3ba,_0x145a52(0x9d),_0x248ef4[_0x145a52(0x170)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xab),_0x248ef4[_0x145a52(0x9b)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x152),_0x248ef4[_0x145a52(0x177)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x158),_0x248ef4[_0x145a52(0x9a)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x140),_0x248ef4[_0x145a52(0xf6)]);}if(_0x1f8ae0[_0x145a52(0xbe)]){const _0x3e11a6=_0x1f8ae0[_0x145a52(0xbe)];_0x35bf9b(_0x30d3ba,_0x145a52(0x10a),_0x3e11a6[_0x145a52(0xf6)]),_0x35bf9b(_0x30d3ba,'legend.selectMode',_0x3e11a6['selectMode']),_0x35bf9b(_0x30d3ba,'legend.label.fontSize',_0x3e11a6['fontSize']),_0x35bf9b(_0x30d3ba,_0x145a52(0x15e),_0x3e11a6[_0x145a52(0x105)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xc9),_0x3e11a6[_0x145a52(0x177)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x13b),_0x3e11a6[_0x145a52(0xfa)]);}if(_0x1f8ae0[_0x145a52(0x156)]){const _0x19afa5=_0x1f8ae0[_0x145a52(0x156)];_0x35bf9b(_0x30d3ba,_0x145a52(0x14d),_0x19afa5[_0x145a52(0x150)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xcc),_0x19afa5[_0x145a52(0x173)]),_0x35bf9b(_0x30d3ba,'pie.hasPaddingAngle',_0x19afa5['hasPaddingAngle']),_0x35bf9b(_0x30d3ba,_0x145a52(0xfe),_0x19afa5[_0x145a52(0xca)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xbb),_0x19afa5[_0x145a52(0xd5)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x11c),_0x19afa5['showLabelLine']);}if(_0x1f8ae0['axisPointer']){const _0x899ed5=_0x1f8ae0[_0x145a52(0x121)];_0x35bf9b(_0x30d3ba,_0x145a52(0xae),_0x899ed5[_0x145a52(0x159)]),_0x35bf9b(_0x30d3ba,'tooltip.indicatorLineType',_0x899ed5[_0x145a52(0xf7)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x15b),_0x899ed5[_0x145a52(0x132)]),_0x35bf9b(_0x30d3ba,'tooltip.indicatorLabelTextColor',_0x899ed5[_0x145a52(0x139)]);}if(_0x1f8ae0[_0x145a52(0x125)]&&_0x35bf9b(_0x30d3ba,_0x145a52(0x133),_0x1f8ae0['allSeriesStyle'][_0x145a52(0xcd)]),_0x1f8ae0['area']&&_0x35bf9b(_0x30d3ba,'area.lineStyle',_0x1f8ae0[_0x145a52(0xaf)][_0x145a52(0x153)]),_0x1f8ae0[_0x145a52(0x165)]&&_0x35bf9b(_0x30d3ba,_0x145a52(0x165),_0x1f8ae0[_0x145a52(0x165)]),_0x1f8ae0['radar']&&_0x35bf9b(_0x30d3ba,_0x145a52(0x135),_0x1f8ae0[_0x145a52(0x135)]),_0x1f8ae0[_0x145a52(0x15d)]){const _0x5d29d7=_0x1f8ae0[_0x145a52(0x15d)];_0x35bf9b(_0x30d3ba,_0x145a52(0xd1),_0x5d29d7['content']),_0x35bf9b(_0x30d3ba,_0x145a52(0x144),_0x5d29d7['font']),_0x35bf9b(_0x30d3ba,_0x145a52(0x122),_0x5d29d7[_0x145a52(0xac)]),_0x35bf9b(_0x30d3ba,'titles.xAxisTitle.color',_0x5d29d7[_0x145a52(0x170)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x9c),_0x5d29d7[_0x145a52(0x9b)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x176),_0x5d29d7[_0x145a52(0x177)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xd0),_0x5d29d7['axisAlignment']);}if(_0x1f8ae0['yAxisTitle']){const _0x597550=_0x1f8ae0['yAxisTitle'];_0x35bf9b(_0x30d3ba,_0x145a52(0x12f),_0x597550[_0x145a52(0xdf)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xd9),_0x597550[_0x145a52(0xc1)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xf4),_0x597550[_0x145a52(0xac)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xa9),_0x597550[_0x145a52(0x170)]),_0x35bf9b(_0x30d3ba,'titles.yAxisTitle.family',_0x597550[_0x145a52(0x9b)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x131),_0x597550[_0x145a52(0x177)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xad),_0x597550[_0x145a52(0x119)]);}if(_0x1f8ae0[_0x145a52(0xf5)]){const _0x3849d9=_0x1f8ae0['rightYAxisTitle'];_0x35bf9b(_0x30d3ba,_0x145a52(0x14c),_0x3849d9[_0x145a52(0xdf)]),_0x35bf9b(_0x30d3ba,'titles.rightYAxisTitle.font',_0x3849d9['font']),_0x35bf9b(_0x30d3ba,'titles.rightYAxisTitle.fontSize',_0x3849d9[_0x145a52(0xac)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xc0),_0x3849d9['fontColor']),_0x35bf9b(_0x30d3ba,'titles.rightYAxisTitle.family',_0x3849d9[_0x145a52(0x9b)]),_0x35bf9b(_0x30d3ba,_0x145a52(0x15f),_0x3849d9[_0x145a52(0x177)]),_0x35bf9b(_0x30d3ba,_0x145a52(0xb1),_0x3849d9[_0x145a52(0x119)]);}_0x1f8ae0['xAxis']&&_0x35bf9b(_0x30d3ba,_0x145a52(0xc3),_0x1f8ae0[_0x145a52(0xc3)]),_0x1f8ae0['yAxis']&&_0x35bf9b(_0x30d3ba,_0x145a52(0xa7),_0x1f8ae0['yAxis']),_0x1f8ae0[_0x145a52(0xa4)]&&_0x35bf9b(_0x30d3ba,_0x145a52(0x104),_0x1f8ae0[_0x145a52(0xa4)]),_0x1f8ae0[_0x145a52(0x141)]&&_0x35bf9b(_0x30d3ba,_0x145a52(0x141),_0x1f8ae0[_0x145a52(0x141)]);const _0x29de52={'unitId':_0x585761,'chartModelId':_0x22f1cf};let _0x5ac84e=!0x1;if(_0x17d692!==void 0x0&&(_0x29de52[_0x145a52(0xc7)]=_0x17d692,_0x5ac84e=!0x0),Object[_0x145a52(0x11a)](_0x30d3ba)['length']>0x0&&(_0x29de52[_0x145a52(0x145)]=_0x30d3ba,_0x5ac84e=!0x0),Object[_0x145a52(0x11a)](_0x1fa71a)[_0x145a52(0x17b)]>0x0&&(_0x29de52[_0x145a52(0x16c)]=_0x1fa71a,_0x5ac84e=!0x0),_0x5ac84e)return _0x29de52;};class _0x39311b extends _0x4bca53['FBase']{constructor(_0xb8548f,_0x518ee3,_0xcfc84c,_0x1d9c64,_0x2d9a9e){const _0x33714e=_0x8e1761;super(),_0x4f6a80(this,_0x33714e(0x15a)),_0x4f6a80(this,'_injector'),_0x4f6a80(this,_0x33714e(0x130)),_0x4f6a80(this,_0x33714e(0x13a)),_0x4f6a80(this,_0x33714e(0x16a)),_0x4f6a80(this,_0x33714e(0xf1)),_0x4f6a80(this,_0x33714e(0xcf)),_0x4f6a80(this,'x'),_0x4f6a80(this,'y'),_0x4f6a80(this,_0x33714e(0x129)),_0x4f6a80(this,_0x33714e(0xbf)),_0x4f6a80(this,'chartType'),_0x4f6a80(this,_0x33714e(0x171)),_0x4f6a80(this,_0x33714e(0xee)),(this[_0x33714e(0x130)]=_0xb8548f,this[_0x33714e(0x13a)]=_0x518ee3,this[_0x33714e(0x15a)]=_0xcfc84c,this['_injector']=_0x1d9c64,_0x2d9a9e&&(this[_0x33714e(0x16a)]=_0x2d9a9e));}[_0x8e1761(0x11b)](){return this['chartType'];}[_0x8e1761(0x143)](_0x7779e6){const _0x185297=_0x8e1761;if(typeof _0x7779e6==_0x185297(0x118)){const _0x53fbb7=_0x8217a5[_0x185297(0x109)](_0x7779e6);_0x53fbb7['sheetName']&&(this['sourceSheetName']=_0x53fbb7[_0x185297(0xa0)]),this[_0x185297(0xf1)]=_0x53fbb7['range'];}else this[_0x185297(0xf1)]=_0x7779e6;return this;}[_0x8e1761(0xb7)](){const _0x415176=_0x8e1761;return this[_0x415176(0xf1)]=void 0x0,this[_0x415176(0xcf)]=void 0x0,this;}[_0x8e1761(0x12a)](_0x27c20b,_0x17bc3d,_0x1e4b16,_0x101263){const _0x31ee8c=_0x8e1761,_0x52a64d=this[_0x31ee8c(0xe7)]['get'](_0x2f6744[_0x31ee8c(0xf0)])[_0x31ee8c(0xc6)](this['unitId']);if(!_0x52a64d)throw new Error('This\x20api\x20only\x20works\x20in\x20the\x20active\x20sheet.');const _0x18d607=_0x52a64d[_0x31ee8c(0xc2)](_0x2d1b73[_0x31ee8c(0x155)]),_0xfa6cab=_0x52a64d[_0x31ee8c(0xc2)](_0x2d1b73[_0x31ee8c(0x128)]),{transform:_0x28a105}=_0x2d1b73[_0x31ee8c(0x147)](this[_0x31ee8c(0x130)],this[_0x31ee8c(0x13a)],{'row':_0x27c20b,'column':_0x17bc3d,'rowOffset':_0x1e4b16,'columnOffset':_0x101263},0x1,0x1,_0x18d607,_0xfa6cab),_0x5c8674=_0x28a105[_0x31ee8c(0xf8)],_0x5493c5=_0x28a105[_0x31ee8c(0xf2)];return this['x']=_0x5493c5,this['y']=_0x5c8674,this;}[_0x8e1761(0xd7)](_0x22ac65,_0x181240){return this['x']=_0x22ac65,this['y']=_0x181240,this;}[_0x8e1761(0x16b)](_0x551c32){const _0x3ab158=_0x8e1761;return this[_0x3ab158(0xc7)]=_0x551c32,this;}[_0x8e1761(0xef)](_0x1a81fb){return this['width']=_0x1a81fb,this;}[_0x8e1761(0x157)](_0x40eced){const _0x2c8ad0=_0x8e1761;return this[_0x2c8ad0(0xbf)]=_0x40eced,this;}[_0x8e1761(0x111)](_0x3a81c3,_0x28fd96){const _0x8a0556=_0x8e1761;return this['options']||(this[_0x8a0556(0x171)]={}),_0x3a81c3===''?(this[_0x8a0556(0x171)]={...this['options'],..._0x28fd96},this):(_0x54d2da[_0x8a0556(0xe1)](this['options'],_0x3a81c3,_0x28fd96),this);}['setTransposeRowsAndColumns'](_0x2b50ca){const _0x4fd38c=_0x8e1761;return this[_0x4fd38c(0xee)]=_0x2b50ca,this;}[_0x8e1761(0x178)](_0x460c0a){const _0x4c5707=_0x8e1761;return this[_0x4c5707(0x111)]('theme',_0x460c0a),this;}[_0x8e1761(0xd8)](_0x5f26c9){const _0xe5451a=_0x8e1761;var _0x21f2e6;const _0x196bda=((_0x21f2e6=this['options'])==null?void 0x0:_0x21f2e6[_0xe5451a(0x15d)])||{};return _0x196bda[_0xe5451a(0xdf)]=_0x5f26c9,this[_0xe5451a(0x111)]('xAxisTitle',_0x196bda),this;}[_0x8e1761(0x179)](_0x5a17a9){const _0x5d0681=_0x8e1761;var _0xcdfaab;const _0x15cb49=((_0xcdfaab=this['options'])==null?void 0x0:_0xcdfaab['yAxisTitle'])||{};return _0x15cb49[_0x5d0681(0xdf)]=_0x5a17a9,this[_0x5d0681(0x111)]('yAxisTitle',_0x15cb49),this;}[_0x8e1761(0x12c)](_0x3bd26e){const _0x31090f=_0x8e1761;var _0x3dd481;const _0x525b1b=((_0x3dd481=this['options'])==null?void 0x0:_0x3dd481[_0x31090f(0xf5)])||{};return _0x525b1b[_0x31090f(0xdf)]=_0x3bd26e,this[_0x31090f(0x111)](_0x31090f(0xf5),_0x525b1b),this;}[_0x8e1761(0xb4)](_0x4a27b1){const _0x317738=_0x8e1761;var _0x5d598a;const _0x2abba8=((_0x5d598a=this[_0x317738(0x171)])==null?void 0x0:_0x5d598a[_0x317738(0x15d)])||{};return this[_0x317738(0x111)](_0x317738(0x15d),{..._0x2abba8,..._0x4a27b1}),this;}[_0x8e1761(0xea)](_0xfca056){const _0x32339a=_0x8e1761;var _0x34614a;const _0x5d1cff=((_0x34614a=this[_0x32339a(0x171)])==null?void 0x0:_0x34614a[_0x32339a(0xb5)])||{};return this[_0x32339a(0x111)](_0x32339a(0xb5),{..._0x5d1cff,..._0xfca056}),this;}[_0x8e1761(0x13c)](_0x567258){const _0x26acd3=_0x8e1761;var _0x40b2fd;const _0x4dc507=((_0x40b2fd=this[_0x26acd3(0x171)])==null?void 0x0:_0x40b2fd[_0x26acd3(0xf5)])||{};return this[_0x26acd3(0x111)]('rightYAxisTitle',{..._0x4dc507,..._0x567258}),this;}[_0x8e1761(0x12b)](_0x43c358){const _0x55242b=_0x8e1761;return this[_0x55242b(0x111)]('invalidValueType',_0x43c358),this;}[_0x8e1761(0xe5)](_0x267022){const _0x33ec83=_0x8e1761;return this[_0x33ec83(0x111)](_0x33ec83(0x121),_0x267022),this;}[_0x8e1761(0xd6)](_0x3e6204){const _0x4d557e=_0x8e1761;return this[_0x4d557e(0x111)]('allSeriesStyle',_0x3e6204),this;}[_0x8e1761(0xe3)](_0x115651,_0x51769d){const _0x7edb3f=_0x8e1761;return this[_0x7edb3f(0x111)]('seriesStyleMap',{[_0x115651]:_0x51769d}),this;}['build'](){const _0x4d1458=_0x8e1761;var _0x5c09e4;let _0x145af4=this[_0x4d1458(0x13a)];if(this[_0x4d1458(0xcf)]){const _0x8f1b8c=(_0x5c09e4=this[_0x4d1458(0x15a)][_0x4d1458(0x161)](this['sourceSheetName']))==null?void 0x0:_0x5c09e4[_0x4d1458(0xfd)]();if(!_0x8f1b8c)throw new Error(_0x4d1458(0x10c)+this['sourceSheetName']+_0x4d1458(0xff));_0x145af4=_0x8f1b8c;}return{'unitId':this[_0x4d1458(0x130)],'subUnitId':_0x145af4,'chartId':this['chartId'],'range':this[_0x4d1458(0xf1)],'x':this['x'],'y':this['y'],'width':this[_0x4d1458(0x129)],'height':this[_0x4d1458(0xbf)],'chartType':this[_0x4d1458(0xc7)],'options':this[_0x4d1458(0x171)],'isRowDirection':this[_0x4d1458(0xee)]};}}class _0x789323{constructor(_0x54b071,_0x17bfcd,_0x1d86bb,_0x35fdb4){const _0x998a6f=_0x8e1761;_0x4f6a80(this,_0x998a6f(0x130)),_0x4f6a80(this,_0x998a6f(0x13a)),_0x4f6a80(this,_0x998a6f(0x16a)),_0x4f6a80(this,_0x998a6f(0xe7)),(this[_0x998a6f(0x130)]=_0x54b071,this[_0x998a6f(0x13a)]=_0x17bfcd,this[_0x998a6f(0x16a)]=_0x1d86bb,this[_0x998a6f(0xe7)]=_0x35fdb4);}[_0x8e1761(0x126)](){const _0xf4a0d9=_0x8e1761;return this[_0xf4a0d9(0x16a)];}[_0x8e1761(0x164)](){const _0x201766=_0x8e1761,_0x4d9477=this[_0x201766(0xe7)]['get'](_0x54d2da[_0x201766(0x168)])[_0x201766(0x166)](this['chartId']);if(_0x4d9477)return _0x4d9477[_0x201766(0xeb)][_0x201766(0x10d)]();}[_0x8e1761(0x101)](_0x5f062c){const _0x34f290=_0x8e1761;return this[_0x34f290(0xe7)][_0x34f290(0x15c)](_0x4bca53[_0x34f290(0x102)])['executeCommand'](_0x54d2da[_0x34f290(0x14a)]['id'],{'unitId':this[_0x34f290(0x130)],'chartModelId':this[_0x34f290(0x16a)],'range':_0x5f062c});}['getSeriesData'](){const _0x403291=_0x8e1761;var _0x473318;const _0x32aec1=this[_0x403291(0xe7)]['get'](_0x54d2da['SheetsChartService'])[_0x403291(0x166)](this[_0x403291(0x16a)]);if(_0x32aec1)return(_0x473318=_0x32aec1['config'])==null?void 0x0:_0x473318[_0x403291(0x107)];}[_0x8e1761(0x162)](){const _0x5d0a34=_0x8e1761;var _0x52adb9;const _0xfda4d9=this[_0x5d0a34(0xe7)]['get'](_0x54d2da[_0x5d0a34(0x168)])[_0x5d0a34(0x166)](this['chartId']);if(_0xfda4d9)return(_0x52adb9=_0xfda4d9[_0x5d0a34(0xa6)])==null?void 0x0:_0x52adb9[_0x5d0a34(0x108)];}[_0x8e1761(0xd4)](){const _0x294cdb=_0x8e1761,_0x5bc87c=this[_0x294cdb(0xe7)]['get'](_0x4bca53[_0x294cdb(0x172)])[_0x294cdb(0xf3)](_0x4bca53[_0x294cdb(0x12d)][_0x294cdb(0x149)]);return new _0x39311b(this[_0x294cdb(0x130)],this[_0x294cdb(0x13a)],_0x5bc87c,this['_injector'],this[_0x294cdb(0x16a)]);}}class _0x1fbfec extends _0x4c47f8[_0x8e1761(0x13d)]{async[_0x8e1761(0x114)](_0x4342f7){const _0x545c4d=_0x8e1761;var _0x2d4c68,_0x246642,_0x5f3983;const _0x8ef2fa=_0x4342f7[_0x545c4d(0x130)]||this[_0x545c4d(0x169)]()[_0x545c4d(0x115)](),_0x45f83f=_0x4342f7[_0x545c4d(0x13a)]||this[_0x545c4d(0xfd)](),_0x3770bc=_0x4342f7[_0x545c4d(0x16a)]||_0x4bca53['generateRandomId'](),_0x2d3448=_0x4342f7[_0x545c4d(0xc7)],_0x11f0da=_0x4342f7[_0x545c4d(0xf1)],_0x12e81d={'x':_0x4342f7['x'],'y':_0x4342f7['y']},_0x2c7a30=_0x4342f7[_0x545c4d(0x129)],_0x378321=_0x4342f7[_0x545c4d(0xbf)],_0xa84120=(_0x2d4c68=_0x4342f7[_0x545c4d(0x171)])==null?void 0x0:_0x2d4c68[_0x545c4d(0xed)],_0x50bb03=(_0x246642=_0x4342f7['options'])==null?void 0x0:_0x246642[_0x545c4d(0x173)],_0x4b9958=_0x34a015(_0x8ef2fa,_0x3770bc,_0x2d3448,_0x4342f7['options']),_0x225932=(_0x5f3983=_0x4342f7[_0x545c4d(0xb0)])!=null?_0x5f3983:!0x0;if(!_0x11f0da)throw new Error(_0x545c4d(0xa2));return await this[_0x545c4d(0xb2)][_0x545c4d(0xe0)](_0x1ef32c[_0x545c4d(0x14b)]['id'],{'unitId':_0x8ef2fa,'subUnitId':_0x45f83f,'chartId':_0x3770bc,'chartType':_0x2d3448,'range':_0x11f0da,'position':_0x12e81d,'width':_0x2c7a30,'height':_0x378321,'backgroundColor':_0xa84120,'borderColor':_0x50bb03,'config':_0x4b9958,'isRowDirection':_0x225932}),new _0x789323(_0x8ef2fa,_0x45f83f,_0x3770bc,this[_0x545c4d(0xe7)]);}[_0x8e1761(0xa8)](_0x5469d6){const _0x222aac=_0x8e1761,{unitId:_0x299892,chartId:_0x2d7afa,chartType:_0x3b93b8,options:_0x45dd1c}=_0x5469d6,_0x30f035=_0x34a015(_0x299892,_0x2d7afa,_0x3b93b8,_0x45dd1c);this[_0x222aac(0xb2)][_0x222aac(0xe0)](_0x54d2da[_0x222aac(0x113)]['id'],_0x30f035);}[_0x8e1761(0xb8)](_0x21380c){const _0x2bd931=_0x8e1761;if(_0x21380c)return new _0x39311b(_0x21380c[_0x2bd931(0x130)],_0x21380c[_0x2bd931(0x13a)],this[_0x2bd931(0x15a)],this[_0x2bd931(0xe7)],_0x21380c['chartId']);const _0x1ea142=this[_0x2bd931(0x169)]()[_0x2bd931(0x115)](),_0x3ed5c7=this[_0x2bd931(0xfd)]();return new _0x39311b(_0x1ea142,_0x3ed5c7,this[_0x2bd931(0x15a)],this[_0x2bd931(0xe7)]);}[_0x8e1761(0xb3)](){const _0x339833=_0x8e1761,_0x2bc256=this[_0x339833(0xe7)][_0x339833(0x15c)](_0x54d2da[_0x339833(0x168)]),_0x103d0f=this[_0x339833(0x169)]()[_0x339833(0x115)]();return _0x2bc256[_0x339833(0x137)](_0x103d0f,this[_0x339833(0xfd)]())['map'](_0x287789=>new _0x789323(_0x103d0f,this[_0x339833(0xfd)](),_0x287789['id'],this[_0x339833(0xe7)]));}[_0x8e1761(0x16f)](_0x2bcb2f){const _0x23ca0d=_0x8e1761,_0x2e20a1=_0x2bcb2f['unitId'],_0x2a895e=_0x2bcb2f[_0x23ca0d(0x13a)],_0x7652f7=_0x2bcb2f[_0x23ca0d(0x16a)],_0x2f4484={'unitId':_0x2e20a1,'drawings':[{'unitId':_0x2e20a1,'subUnitId':_0x2a895e,'drawingId':_0x7652f7,'drawingType':_0x4bca53[_0x23ca0d(0x110)][_0x23ca0d(0xc5)]}]};return this[_0x23ca0d(0xb2)]['executeCommand'](_0x1dd9ba[_0x23ca0d(0x12e)]['id'],_0x2f4484);}[_0x8e1761(0x13f)](_0x258446,_0x3d9a03){const _0x4a2c44=_0x8e1761;this[_0x4a2c44(0xe7)][_0x4a2c44(0x15c)](_0x54d2da[_0x4a2c44(0xec)])['registerTheme'](_0x258446,_0x3d9a03);}}_0x4c47f8[_0x8e1761(0x13d)][_0x8e1761(0x167)](_0x1fbfec);class _0x584b6e extends _0x39311b{constructor(_0x3ca3b3,_0x506a13,_0x3152d0,_0x34fe15,_0x567d04){const _0x30b4ff=_0x8e1761;super(_0x3ca3b3,_0x506a13,_0x3152d0,_0x34fe15,_0x567d04),_0x4f6a80(this,_0x30b4ff(0x153)),_0x4f6a80(this,_0x30b4ff(0x123)),_0x4f6a80(this,_0x30b4ff(0x134)),_0x4f6a80(this,_0x30b4ff(0x124));}[_0x8e1761(0xa1)](_0xe2de4){return this['lineStyle']=_0xe2de4,this;}[_0x8e1761(0xfb)](_0x2aa718){const _0x5b466f=_0x8e1761;return this[_0x5b466f(0x123)]=_0x2aa718,this;}[_0x8e1761(0x154)](_0x3d8bf9){const _0x35f9a8=_0x8e1761;return this[_0x35f9a8(0x134)]=_0x3d8bf9,this;}[_0x8e1761(0xf9)](_0xf99c81){const _0x5d9eee=_0x8e1761;return this[_0x5d9eee(0x124)]=_0xf99c81,this;}['build'](){const _0x48f5cf=_0x8e1761,_0x163cbd=super[_0x48f5cf(0x10e)]();_0x163cbd[_0x48f5cf(0xc7)]=_0x54d2da[_0x48f5cf(0xfc)][_0x48f5cf(0x11f)];const _0x3814ef=_0x163cbd[_0x48f5cf(0x171)]||{};return _0x35bf9b(_0x3814ef,_0x48f5cf(0xbc),this[_0x48f5cf(0x153)]),_0x35bf9b(_0x3814ef,'allSeriesStyle.point.shape',this[_0x48f5cf(0x123)]),_0x35bf9b(_0x3814ef,'allSeriesStyle.point.color',this[_0x48f5cf(0x134)]),_0x35bf9b(_0x3814ef,'allSeriesStyle.point.size',this[_0x48f5cf(0x124)]),_0x163cbd['options']=_0x3814ef,_0x163cbd;}}class _0x3d3577 extends _0x39311b{[_0x8e1761(0xc8)](){const _0x1bd431=_0x8e1761;return new _0x584b6e(this[_0x1bd431(0x130)],this[_0x1bd431(0x13a)],this['_workbook'],this[_0x1bd431(0xe7)],this[_0x1bd431(0x16a)]);}}_0x39311b[_0x8e1761(0x167)](_0x3d3577);class _0x597bb6 extends _0x39311b{constructor(_0x5f4f73,_0x1b6291,_0x5cee5d,_0x444c4d,_0x2ac5f7){const _0x93b228=_0x8e1761;super(_0x5f4f73,_0x1b6291,_0x5cee5d,_0x444c4d,_0x2ac5f7),_0x4f6a80(this,_0x93b228(0x150)),_0x4f6a80(this,_0x93b228(0x173)),_0x4f6a80(this,_0x93b228(0xb6)),_0x4f6a80(this,_0x93b228(0xca)),_0x4f6a80(this,_0x93b228(0xd5)),_0x4f6a80(this,_0x93b228(0xd2));}[_0x8e1761(0xe6)](_0x375777){return this['doughnutHole']=_0x375777,this;}['setBorderColor'](_0x5508b5){const _0x3942a3=_0x8e1761;return this[_0x3942a3(0x173)]=_0x5508b5,this;}[_0x8e1761(0x14e)](_0x18e5e5){const _0x1d436e=_0x8e1761;return this[_0x1d436e(0xb6)]=_0x18e5e5,this;}[_0x8e1761(0xdd)](_0x36867f){const _0x538838=_0x8e1761;return this[_0x538838(0xca)]=_0x36867f,this;}[_0x8e1761(0xce)](_0x534677){const _0x336c87=_0x8e1761;return this[_0x336c87(0xd5)]=_0x534677,this;}['setShowLabelLine'](_0x3d2fbd){const _0x507a78=_0x8e1761;return this[_0x507a78(0xd2)]=_0x3d2fbd,this;}[_0x8e1761(0x10e)](){const _0x3c093c=_0x8e1761,_0x4285ec=super[_0x3c093c(0x10e)]();_0x4285ec[_0x3c093c(0xc7)]=_0x54d2da[_0x3c093c(0xfc)]['Pie'];const _0x42e353=_0x4285ec[_0x3c093c(0x171)]||{};return _0x35bf9b(_0x42e353,_0x3c093c(0x14d),this[_0x3c093c(0x150)]),_0x35bf9b(_0x42e353,'pie.borderColor',this[_0x3c093c(0x173)]),_0x35bf9b(_0x42e353,_0x3c093c(0xdb),this[_0x3c093c(0xb6)]),_0x35bf9b(_0x42e353,_0x3c093c(0xfe),this['isHalfPie']),_0x35bf9b(_0x42e353,'pie.rosePie',this[_0x3c093c(0xd5)]),_0x35bf9b(_0x42e353,_0x3c093c(0x11c),this['showLabelLine']),_0x4285ec[_0x3c093c(0x171)]=_0x42e353,_0x4285ec;}}class _0x4160f2 extends _0x39311b{[_0x8e1761(0x9f)](){const _0x451276=_0x8e1761;return new _0x597bb6(this['unitId'],this['subUnitId'],this[_0x451276(0x15a)],this[_0x451276(0xe7)],this[_0x451276(0x16a)]);}}_0x39311b[_0x8e1761(0x167)](_0x4160f2);class _0x17d51a extends _0x39311b{constructor(_0x42e716,_0x58e823,_0x547524,_0x1e499b,_0xada5eb){const _0x3701b6=_0x8e1761;super(_0x42e716,_0x58e823,_0x547524,_0x1e499b,_0xada5eb),_0x4f6a80(this,_0x3701b6(0xbd)),_0x4f6a80(this,_0x3701b6(0x100));}[_0x8e1761(0x136)](_0x1e3725){const _0x598bcc=_0x8e1761;return this[_0x598bcc(0xbd)]=_0x1e3725,this;}[_0x8e1761(0x112)](_0x59fecb){const _0x4629f2=_0x8e1761;return this[_0x4629f2(0x100)]=_0x59fecb,this;}[_0x8e1761(0x10e)](){const _0x4b60f3=_0x8e1761,_0x37e958=super[_0x4b60f3(0x10e)]();_0x37e958[_0x4b60f3(0xc7)]=_0x54d2da[_0x4b60f3(0xfc)][_0x4b60f3(0xda)];const _0x501769=_0x37e958['options']||{};return _0x35bf9b(_0x501769,_0x4b60f3(0x103),this[_0x4b60f3(0xbd)]),_0x35bf9b(_0x501769,_0x4b60f3(0x117),this['fill']),_0x37e958[_0x4b60f3(0x171)]=_0x501769,_0x37e958;}}class _0x4b8a4a extends _0x39311b{[_0x8e1761(0x16e)](){const _0x5a2451=_0x8e1761;return new _0x17d51a(this['unitId'],this[_0x5a2451(0x13a)],this[_0x5a2451(0x15a)],this['_injector'],this[_0x5a2451(0x16a)]);}}_0x39311b[_0x8e1761(0x167)](_0x4b8a4a),_0x20c243[_0x8e1761(0x163)]=_0x789323,_0x20c243[_0x8e1761(0x13e)]=_0x39311b,_0x20c243['LineChartBuilder']=_0x584b6e,_0x20c243[_0x8e1761(0x10f)]=_0x597bb6,_0x20c243[_0x8e1761(0x10b)]=_0x17d51a,Object['defineProperty'](_0x20c243,Symbol['toStringTag'],{'value':_0x8e1761(0x106)});}));