@mescius/spread-sheets 17.0.3 → 17.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -5313,6 +5313,10 @@ declare module GC{
5313
5313
  * Specifies the standard date formatter for "y" and "Y".
5314
5314
  */
5315
5315
  yearMonthPattern?: string;
5316
+ /**
5317
+ * Specifies the default date formatter for the case that cell formatter is null or "General" and cell value is a date with time.
5318
+ */
5319
+ defaultDatePattern?: string;
5316
5320
  }
5317
5321
 
5318
5322
 
@@ -5460,6 +5464,7 @@ declare module GC{
5460
5464
  * myCulture.DateTimeFormat.shortDatePattern = "dd.MM.yyyy";
5461
5465
  * myCulture.DateTimeFormat.shortTimePattern = "HH:mm";
5462
5466
  * myCulture.DateTimeFormat.yearMonthPattern = "MMMM yyyy";
5467
+ * myCulture.DateTimeFormat.defaultDatePattern = "MM/dd/yyyy HH:mm:ss";
5463
5468
  * //add one culture
5464
5469
  * GC.Spread.Common.CultureManager.addCultureInfo("de-DE", myCulture);
5465
5470
  * //switch to "de-DE" culture
@@ -13612,7 +13617,7 @@ declare module GC{
13612
13617
  */
13613
13618
  copyPasteHeaderOptions: GC.Spread.Sheets.CopyPasteHeaderOptions;
13614
13619
  /**
13615
- * - The recalculation behavior of the workbook. The default is auto.
13620
+ * The recalculation behavior of the workbook. The default is auto.
13616
13621
  */
13617
13622
  calculationMode: GC.Spread.Sheets.CalculationMode;
13618
13623
  /**
@@ -14362,11 +14367,11 @@ declare module GC{
14362
14367
  */
14363
14368
  rebuild= 1,
14364
14369
  /**
14365
- * This won't mark more dirty.
14370
+ * Keep the current calc dirty status, and won't mark the volatile cells, circular reference cells.
14366
14371
  */
14367
14372
  minimal= 2,
14368
14373
  /**
14369
- * This will mark the volatile cells, circular reference cells as dirty for calculate.
14374
+ * Keep the current calc dirty status, and mark the volatile cells and circular reference cells as dirty for calculate.
14370
14375
  */
14371
14376
  regular= 3
14372
14377
  }
@@ -15074,6 +15079,7 @@ declare module GC{
15074
15079
  /**
15075
15080
  * Defines the IME mode to control the state of the Input Method Editor (IME).
15076
15081
  * @enum {number}
15082
+ * @deprecated This enum currently only works in Internet Explorer.
15077
15083
  * @example
15078
15084
  * ```
15079
15085
  * //This example uses the imeMode method.
@@ -16740,6 +16746,7 @@ declare module GC{
16740
16746
  /**
16741
16747
  * Gets or sets the imeMode of the cell.
16742
16748
  * @param {GC.Spread.Sheets.ImeMode} [value] The cell imeMode.
16749
+ * @deprecated This property currently only works in Internet Explorer.
16743
16750
  * @returns {GC.Spread.Sheets.ImeMode|GC.Spread.Sheets.CellRange} If no value is set, returns the cell imeMode; otherwise, returns the cell.
16744
16751
  * @example
16745
16752
  * ```
@@ -20551,6 +20558,7 @@ declare module GC{
20551
20558
  /**
20552
20559
  * Indicates the Input Method Editor (IME) mode.
20553
20560
  * @type {GC.Spread.Sheets.ImeMode}
20561
+ * @deprecated This property currently only works in Internet Explorer.
20554
20562
  * @example
20555
20563
  * ```
20556
20564
  * //This example sets the IME mode.
@@ -27296,56 +27304,189 @@ declare module GC{
27296
27304
  module Charts{
27297
27305
 
27298
27306
  export interface ErrorBarItem{
27307
+ /**
27308
+ * The error bar type
27309
+ */
27299
27310
  type?: number;
27311
+ /**
27312
+ * The error bar value type.
27313
+ */
27300
27314
  valueType?: number;
27315
+ /**
27316
+ * The error bar has end cap or not.
27317
+ */
27301
27318
  noEndCap?: boolean;
27319
+ /**
27320
+ * The error bar value, just take effect on the FixedValue(1) / Percentage(2) / StandardDeviation(3) value type.
27321
+ */
27302
27322
  value?: number;
27303
- custom?: {
27323
+ /**
27324
+ * The error bar custom formulas, it contains positive formula and negative formula, just take effect on the Custom(0) value type.
27325
+ */
27326
+ custom?: GC.Spread.Sheets.Charts.ErrorBarItemCustom;
27327
+ /**
27328
+ * The error bar styles.
27329
+ */
27330
+ style?: GC.Spread.Sheets.Charts.ErrorBarItemStyle;
27331
+ }
27332
+
27333
+
27334
+ export interface ErrorBarItemCustom{
27335
+ /**
27336
+ * The error bar custom positive formula.
27337
+ */
27304
27338
  positive: string;
27339
+ /**
27340
+ * The error bar custom negative formula.
27341
+ */
27305
27342
  negative: string;
27306
- };
27307
- style?: {
27308
- color?: string;
27309
- width?: number;
27310
- transparency?: number;
27311
- dashStyle?: GC.Spread.Sheets.Charts.ILineStyle;
27312
- visible?: boolean;
27313
- }
27314
27343
  }
27315
27344
 
27316
27345
 
27317
27346
  export interface ErrorBarItems{
27347
+ /**
27348
+ * The vertical error bar of the series, each series may has different direction error bar(s) based on chart type.
27349
+ */
27318
27350
  vertical?: GC.Spread.Sheets.Charts.ErrorBarItem;
27351
+ /**
27352
+ * The horizontal error bar of the series, each series may has different direction error bar(s) based on chart type.
27353
+ */
27319
27354
  horizontal?: GC.Spread.Sheets.Charts.ErrorBarItem;
27320
27355
  }
27321
27356
 
27322
27357
 
27358
+ export interface ErrorBarItemStyle{
27359
+ /**
27360
+ * The error bar color.
27361
+ */
27362
+ color?: string;
27363
+ /**
27364
+ * The error bar width.
27365
+ */
27366
+ width?: number;
27367
+ /**
27368
+ * The error bar transparency.
27369
+ */
27370
+ transparency?: number;
27371
+ /**
27372
+ * The error bar dashStyle.
27373
+ */
27374
+ dashStyle?: GC.Spread.Sheets.Charts.ILineStyle;
27375
+ /**
27376
+ * The error bar visible info.
27377
+ */
27378
+ visible?: boolean;
27379
+ }
27380
+
27381
+
27323
27382
  export interface IAxes{
27324
- primaryCategory?: IAxis;
27325
- primaryValue?: IAxis;
27326
- secondaryCategory?: IAxis;
27327
- secondaryValue?: IAxis;
27383
+ /**
27384
+ * The primary category axis of the chart.
27385
+ */
27386
+ primaryCategory?: GC.Spread.Sheets.Charts.IAxis;
27387
+ /**
27388
+ * The primary value axis of the chart.
27389
+ */
27390
+ primaryValue?: GC.Spread.Sheets.Charts.IAxis;
27391
+ /**
27392
+ * The secondary category axis of the chart.
27393
+ */
27394
+ secondaryCategory?: GC.Spread.Sheets.Charts.IAxis;
27395
+ /**
27396
+ * The secondary value axis of the chart.
27397
+ */
27398
+ secondaryValue?: GC.Spread.Sheets.Charts.IAxis;
27328
27399
  }
27329
27400
 
27330
27401
 
27331
27402
  export interface IAxis{
27403
+ /**
27404
+ * Indicates if the specified axis should be shown.
27405
+ */
27332
27406
  visible?: boolean;
27407
+ /**
27408
+ * The axis tick label position.
27409
+ */
27333
27410
  tickLabelPosition?: GC.Spread.Sheets.Charts.TickLabelPosition;
27411
+ /**
27412
+ * The line style of the axis.
27413
+ */
27334
27414
  lineStyle?: GC.Spread.Sheets.Charts.IBorder;
27415
+ /**
27416
+ * The style of the axis.
27417
+ */
27335
27418
  style?: GC.Spread.Sheets.Charts.IAxisStyle;
27419
+ /**
27420
+ * The major tick position of the axis.
27421
+ */
27336
27422
  majorTickPosition?: GC.Spread.Sheets.Charts.TickMark;
27423
+ /**
27424
+ * The minor tick position of the axis.
27425
+ */
27337
27426
  minorTickPosition?: GC.Spread.Sheets.Charts.TickMark;
27427
+ /**
27428
+ * The base unit scale of the date category axis.
27429
+ */
27430
+ baseUnit?: GC.Spread.Sheets.Charts.TimeUnit;
27431
+ /**
27432
+ * The major unit of the primary category axis.
27433
+ */
27338
27434
  majorUnit?: number;
27435
+ /**
27436
+ * The major unit scale of the date category axis.
27437
+ */
27438
+ majorUnitScale?: GC.Spread.Sheets.Charts.TimeUnit;
27439
+ /**
27440
+ * The minor unit of the primary category axis.
27441
+ */
27339
27442
  minorUnit?: number;
27443
+ /**
27444
+ * The minor unit scale of the date category axis.
27445
+ */
27446
+ minorUnitScale?: GC.Spread.Sheets.Charts.TimeUnit;
27447
+ /**
27448
+ * The minimum value of the related axis. (for value / date axis only)
27449
+ */
27340
27450
  min?: number | Date;
27451
+ /**
27452
+ * The maximum value of the related axis. (for value / date axis only)
27453
+ */
27341
27454
  max?: number | Date;
27455
+ /**
27456
+ * The format of the axis.
27457
+ */
27342
27458
  format?: string;
27459
+ /**
27460
+ * Whether to apply the format of the linked data source.
27461
+ */
27462
+ numberFormatLinked?: boolean;
27463
+ /**
27464
+ * The title of the axis.
27465
+ */
27343
27466
  title?: GC.Spread.Sheets.Charts.IAxisTitle;
27467
+ /**
27468
+ * The major grid line of the axis.
27469
+ */
27344
27470
  majorGridLine?: GC.Spread.Sheets.Charts.IGridLine;
27471
+ /**
27472
+ * The minor grid line of the axis.
27473
+ */
27345
27474
  minorGridLine?: GC.Spread.Sheets.Charts.IGridLine;
27475
+ /**
27476
+ * The label angle of the axis.
27477
+ */
27346
27478
  labelAngle?: number;
27479
+ /**
27480
+ * The scaling informations of the axis.
27481
+ */
27347
27482
  scaling?: GC.Spread.Sheets.Charts.IScaling;
27483
+ /**
27484
+ * The display unit informations of the axis.
27485
+ */
27348
27486
  displayUnit?: GC.Spread.Sheets.Charts.IDisplayUnit;
27487
+ /**
27488
+ * Indicates the axis crosses value.
27489
+ */
27349
27490
  crossPoint?: number | GC.Spread.Sheets.Charts.AxisCrossPoint
27350
27491
  }
27351
27492
 
@@ -27376,25 +27517,95 @@ declare module GC{
27376
27517
 
27377
27518
 
27378
27519
  export interface IChartArea{
27520
+ /**
27521
+ * The background color of the chart area.
27522
+ */
27379
27523
  backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27524
+ /**
27525
+ * The transparency of the chart area backColor.
27526
+ */
27380
27527
  backColorTransparency?: number;
27528
+ /**
27529
+ * The font family of the chart area.
27530
+ */
27381
27531
  fontFamily?: string;
27532
+ /**
27533
+ * The font size of the chart area, its unit is pixel.
27534
+ */
27382
27535
  fontSize?: number;
27536
+ /**
27537
+ * The color of the chart area.
27538
+ */
27383
27539
  color?: string;
27540
+ /**
27541
+ * The transparency of the chart area color.
27542
+ */
27384
27543
  transparency?: number;
27544
+ /**
27545
+ * The border of the chart area.
27546
+ */
27385
27547
  border?: GC.Spread.Sheets.Charts.IBorder;
27386
27548
  }
27387
27549
 
27388
27550
 
27389
27551
  export interface IChartLegend{
27552
+ /**
27553
+ * The position of the chart legend.
27554
+ */
27390
27555
  position?: GC.Spread.Sheets.Charts.LegendPosition;
27556
+ /**
27557
+ * The visibility of the chart legend.
27558
+ */
27391
27559
  visible?: boolean;
27560
+ /**
27561
+ * The backgroundColor of the chart legend.
27562
+ */
27392
27563
  backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27564
+ /**
27565
+ * The transparency of the chart legend color
27566
+ */
27393
27567
  backColorTransparency?: number;
27568
+ /**
27569
+ * The borderStyle of the chart legend.
27570
+ */
27394
27571
  borderStyle?: GC.Spread.Sheets.Charts.IBorder;
27572
+ /**
27573
+ * The border color of the chart legend.
27574
+ */
27395
27575
  color?: string;
27576
+ /**
27577
+ * The font family of the chart legend text.
27578
+ */
27396
27579
  fontFamily?: string;
27580
+ /**
27581
+ * The font size of the chart legend text.
27582
+ */
27397
27583
  fontSize?: number;
27584
+ /**
27585
+ * whether the legend display without overlapping chart area.
27586
+ */
27587
+ showLegendWithoutOverlapping?: boolean;
27588
+ layout?: GC.Spread.Sheets.Charts.IChartLegendLayout
27589
+ }
27590
+
27591
+
27592
+ export interface IChartLegendLayout{
27593
+ /**
27594
+ * The x position of the chart legend, it's percentage, and the base line is chart's left edge.
27595
+ */
27596
+ x?:number;
27597
+ /**
27598
+ * The y position of the chart legend, it's percentage, and the base line is chart's top edge.
27599
+ */
27600
+ y?:number;
27601
+ /**
27602
+ * The width of the chart legend, it's percentage, and it's based on the chart's width.
27603
+ */
27604
+ width?: number;
27605
+ /**
27606
+ * The height of the chart legend, it's percentage, and it's based on the chart's height.
27607
+ */
27608
+ height?: number;
27398
27609
  }
27399
27610
 
27400
27611
 
@@ -27407,48 +27618,171 @@ declare module GC{
27407
27618
 
27408
27619
 
27409
27620
  export interface IChartTitle{
27621
+ /**
27622
+ * The text of the chart title.
27623
+ */
27410
27624
  text?: string;
27625
+ /**
27626
+ * The font family of the chart title.
27627
+ */
27411
27628
  fontFamily?: string;
27629
+ /**
27630
+ * The font size of the chart title, its unit is pixel.
27631
+ */
27412
27632
  fontSize?: number;
27633
+ /**
27634
+ * The color of the chart title.
27635
+ */
27413
27636
  color?: string;
27637
+ /**
27638
+ * The transparency of the chart title color
27639
+ */
27414
27640
  transparency?:number;
27641
+ /**
27642
+ * The background color of the chart title area.
27643
+ */
27415
27644
  backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27645
+ /**
27646
+ * The transparency of the chart title area backColor.
27647
+ */
27416
27648
  backColorTransparency?: number;
27417
27649
  }
27418
27650
 
27419
27651
 
27420
27652
  export interface IDataLabels{
27653
+ /**
27654
+ * Whether to show category name in data labels.
27655
+ */
27421
27656
  showCategoryName?: boolean;
27657
+ /**
27658
+ * Whether to show series name in data labels.
27659
+ */
27422
27660
  showSeriesName?: boolean;
27661
+ /**
27662
+ * Whether to show value in data labels.
27663
+ */
27423
27664
  showValue?: boolean;
27665
+ /**
27666
+ * Whether to show the percent value in data labels.
27667
+ */
27424
27668
  showPercentage?: boolean;
27669
+ /**
27670
+ * The position of the chart data labels.
27671
+ */
27425
27672
  position?: GC.Spread.Sheets.Charts.DataLabelPosition;
27673
+ /**
27674
+ * The format of the chart data labels.
27675
+ */
27426
27676
  format?: string;
27677
+ /**
27678
+ * Whether to apply the format of the linked data source.
27679
+ */
27680
+ numberFormatLinked?: boolean;
27681
+ /**
27682
+ * The color of the chart data labels.
27683
+ */
27427
27684
  color?: string;
27685
+ /**
27686
+ * The transparency of the chart data labels color.
27687
+ */
27428
27688
  transparency?: number;
27689
+ /**
27690
+ * the separator of the series data labels.
27691
+ */
27429
27692
  separator?: string;
27693
+ /**
27694
+ * The background color of the series data labels.
27695
+ */
27430
27696
  backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27697
+ /**
27698
+ * The background color transparency of the series data labels.
27699
+ */
27431
27700
  backColorTransparency?: number;
27701
+ /**
27702
+ * The border color of the series data labels.
27703
+ */
27432
27704
  borderColor?: string;
27705
+ /**
27706
+ * The border width of the series data labels.
27707
+ */
27433
27708
  borderWidth?: number;
27709
+ /**
27710
+ * The border color transparency of the series data labels.
27711
+ */
27434
27712
  borderColorTransparency?: number;
27435
27713
  }
27436
27714
 
27437
27715
 
27438
27716
  export interface IDataPoint{
27439
- backColor?: string | IPatternFillBackColor;
27717
+ /**
27718
+ * The background color of the data point or symbol point.
27719
+ */
27720
+ backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27721
+ /**
27722
+ * The background color transparency of the data point or symbol point.
27723
+ */
27440
27724
  backColorTransparency?: number;
27725
+ /**
27726
+ * The border style of the data point.
27727
+ */
27441
27728
  border?: GC.Spread.Sheets.Charts.ISeriesItemBorder;
27729
+ /**
27730
+ * The symbol size of the data point.
27731
+ */
27442
27732
  symbolSize?: number;
27443
- symbolShape?: number;
27733
+ /**
27734
+ * The symbol shape of the data point.
27735
+ */
27736
+ symbolShape?: GC.Spread.Sheets.Charts.SymbolShape;
27737
+ /**
27738
+ * The symbol border of the data point.
27739
+ */
27444
27740
  symbolBorder?: GC.Spread.Sheets.Charts.ISeriesItemBorder;
27445
27741
  }
27446
27742
 
27447
27743
 
27744
+ export interface IDataPoints{
27745
+ [key: number]: GC.Spread.Sheets.Charts.IDataPoint;
27746
+ }
27747
+
27748
+
27448
27749
  export interface IDisplayUnit{
27750
+ /**
27751
+ * The built-in display unit string or custom number display unit of the axis.
27752
+ */
27449
27753
  unit?: number | GC.Spread.Sheets.Charts.DisplayUnit;
27754
+ /**
27755
+ * The display unit label visible of the axis.
27756
+ */
27450
27757
  visible?: boolean;
27451
- style?: IChartTextStyle;
27758
+ /**
27759
+ * The display unit label style of the axis.
27760
+ */
27761
+ style?: GC.Spread.Sheets.Charts.IChartTextStyle;
27762
+ }
27763
+
27764
+
27765
+ export interface IFormatOver{
27766
+ /**
27767
+ * The background color of the specific points collection.
27768
+ */
27769
+ backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27770
+ /**
27771
+ * The background color transparency of the specific points collection.
27772
+ */
27773
+ backColorTransparency?: number;
27774
+ /**
27775
+ * The border style of the specific points collection.
27776
+ */
27777
+ borderStyle?: GC.Spread.Sheets.Charts.ISeriesItemBorder;
27778
+ }
27779
+
27780
+
27781
+ export interface IFormatOvers{
27782
+ /**
27783
+ * The object type that key is number type, For waterfall chart, 0 represents increase,1 represents decrease, 2 represents totals, the key value is IFormatOver type.
27784
+ */
27785
+ [key: number]: GC.Spread.Sheets.Charts.IFormatOver;
27452
27786
  }
27453
27787
 
27454
27788
 
@@ -27461,9 +27795,21 @@ declare module GC{
27461
27795
 
27462
27796
 
27463
27797
  export interface IHoverStyle{
27798
+ /**
27799
+ * The color of the dataPoint been hovered.
27800
+ */
27464
27801
  color?:string;
27802
+ /**
27803
+ * The color transparency of the dataPoint been hovered.
27804
+ */
27465
27805
  transparency?:number;
27806
+ /**
27807
+ * The border of the dataPoint been hovered.
27808
+ */
27466
27809
  borderStyle?: GC.Spread.Sheets.Charts.IBorder;
27810
+ /**
27811
+ * The symbol style of the dataPoint been hovered.
27812
+ */
27467
27813
  symbolStyle?: GC.Spread.Sheets.Charts.IHoverSymbolStyle;
27468
27814
  }
27469
27815
 
@@ -27501,42 +27847,111 @@ declare module GC{
27501
27847
 
27502
27848
 
27503
27849
  export interface IScaling{
27850
+ /**
27851
+ * Indicates the specified axis order.
27852
+ */
27504
27853
  orientation?: number | GC.Spread.Sheets.Charts.AxisOrientation;
27854
+ /**
27855
+ * The logarithmic scaling base value of the primary category axis.
27856
+ */
27505
27857
  logBase?: number;
27506
27858
  }
27507
27859
 
27508
27860
 
27509
- export interface ISeries extends GC.Spread.Sheets.Charts.ISeriesItemBase{
27861
+ export interface ISeries{
27862
+ /**
27863
+ * The chart type of the series.
27864
+ */
27510
27865
  chartType?: GC.Spread.Sheets.Charts.ChartType;
27866
+ /**
27867
+ * The axis group of the series.
27868
+ */
27511
27869
  axisGroup?: GC.Spread.Sheets.Charts.AxisGroup;
27870
+ /**
27871
+ * The name formula of the series.
27872
+ */
27512
27873
  name?: string;
27874
+ /**
27875
+ * The x values formula of the series.
27876
+ */
27513
27877
  xValues?: string;
27878
+ /**
27879
+ * The y values formula of the series.
27880
+ */
27514
27881
  yValues?: string;
27515
- }
27516
-
27517
-
27518
- export interface ISeriesItemBase{
27882
+ /**
27883
+ * The background color of the series.
27884
+ */
27519
27885
  backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27886
+ /**
27887
+ * The series point value is negative color when seriesItem type is column or bar chart and invertIfNegative is true.
27888
+ */
27520
27889
  invertIfNegative?: boolean;
27890
+ /**
27891
+ * Whether the series show connector lines. This is used for waterfall chart, The default value is false.
27892
+ */
27521
27893
  showConnectorLines?: boolean;
27894
+ /**
27895
+ * The waterfall chart set as total points index array(0 base). This is used for waterfall chart, The default value is empty array.
27896
+ */
27522
27897
  subtotals?: number[];
27898
+ /**
27899
+ * The series point value is negative color when seriesItem type is column or bar chart and invertIfNegative is true.
27900
+ */
27523
27901
  invertColor?: string;
27902
+ /**
27903
+ * The transparency of the series background color.
27904
+ */
27524
27905
  backColorTransparency?: number;
27906
+ /**
27907
+ * The border of the series.
27908
+ */
27525
27909
  border?: GC.Spread.Sheets.Charts.ISeriesItemBorder;
27910
+ /**
27911
+ * The first slice angle of the chart whose chart type is pie. The default value is 0, which represents the 12 o'clock position.
27912
+ */
27526
27913
  startAngle?: number;
27914
+ /**
27915
+ * The bubble sizes formula of the series. This is used for bubble chart.
27916
+ */
27527
27917
  bubbleSizes?: string;
27918
+ /**
27919
+ * The data labels of the series.
27920
+ */
27528
27921
  dataLabels?: GC.Spread.Sheets.Charts.IDataLabels;
27922
+ /**
27923
+ * The symbol of the series.
27924
+ */
27529
27925
  symbol?: GC.Spread.Sheets.Charts.ISymbol;
27926
+ /**
27927
+ * The error bars of the series.
27928
+ */
27530
27929
  errorBars?: GC.Spread.Sheets.Charts.ErrorBarItems;
27930
+ /**
27931
+ * The trendlines of the series.
27932
+ */
27531
27933
  trendlines?: GC.Spread.Sheets.Charts.TrendlineItem[];
27532
27934
  plotVisibleOnly?: boolean;
27935
+ /**
27936
+ * The hole size of the doughnut chart. This is used for doughnut chart, The maximum value is 0.9, the minimum value is 0.
27937
+ */
27533
27938
  doughnutHoleSize?: number;
27939
+ /**
27940
+ * Whether to display smooth lines. This is used for line chart and scatter chart.
27941
+ */
27534
27942
  smooth?: boolean;
27943
+ /**
27944
+ * The gap width of the bar and column chart group. The maximum value is 5, the minimum value is 0.
27945
+ */
27535
27946
  gapWidth?: number;
27947
+ /**
27948
+ * The overlap of the bar and column chart group. The maximum value is 1, the minimum value is -1.
27949
+ */
27536
27950
  overlap?: number;
27537
- dataPoints?: {
27538
- [key: number]: GC.Spread.Sheets.Charts.IDataPoint;
27539
- };
27951
+ /**
27952
+ * The data points of the series.
27953
+ */
27954
+ dataPoints?: GC.Spread.Sheets.Charts.IDataPoints;
27540
27955
  }
27541
27956
 
27542
27957
 
@@ -27550,112 +27965,108 @@ declare module GC{
27550
27965
 
27551
27966
 
27552
27967
  export interface ISeriesSymbolBorder{
27968
+ /**
27969
+ * The symbol border color of the series.
27970
+ */
27553
27971
  color?: string;
27972
+ /**
27973
+ * The transparency of the symbol border color.
27974
+ */
27554
27975
  colorTransparency?: number;
27976
+ /**
27977
+ * The transparency of the symbol border color.
27978
+ */
27555
27979
  transparency?: number;
27980
+ /**
27981
+ * The symbol border width of the series.
27982
+ */
27556
27983
  width?: number;
27984
+ /**
27985
+ * The symbol border line Type of the series.
27986
+ */
27557
27987
  lineType?: number;
27558
27988
  }
27559
27989
 
27560
27990
 
27561
27991
  export interface ISymbol{
27992
+ /**
27993
+ * The symbol fill color of the series.
27994
+ */
27562
27995
  fill: string;
27996
+ /**
27997
+ * The transparency of the symbol fill color.
27998
+ */
27563
27999
  fillColorTransparency: number;
28000
+ /**
28001
+ * The symbol size of the series.
28002
+ */
27564
28003
  size: number;
28004
+ /**
28005
+ * The symbol shape of the series.
28006
+ */
27565
28007
  shape: GC.Spread.Sheets.Charts.SymbolShape;
28008
+ /**
28009
+ * The symbol border of the series.
28010
+ */
27566
28011
  border: GC.Spread.Sheets.Charts.ISeriesSymbolBorder;
27567
28012
  }
27568
28013
 
27569
28014
 
27570
- export interface ITrendline{
27571
- type?: GC.Spread.Sheets.Charts.TrendlineType;
27572
- order?: number;
27573
- period?: number;
27574
- intercept?: number;
27575
- forward?: number;
27576
- backward?: number;
27577
- displayEquation?: boolean;
27578
- displayRSquared?: boolean;
27579
- fontFamily?: string;
27580
- fontSize?: number;
27581
- fontColor?: string;
27582
- name?: string;
27583
- style?: GC.Spread.Sheets.Charts.ILineStyle;
27584
- }
27585
-
27586
-
27587
28015
  export interface TrendlineItem{
28016
+ /**
28017
+ * The type of the trendline.
28018
+ */
27588
28019
  type?: GC.Spread.Sheets.Charts.TrendlineType;
27589
- display?: string;
28020
+ /**
28021
+ * The order of the polynomial trendline.
28022
+ */
27590
28023
  order?: number;
28024
+ /**
28025
+ * The period of the movingAverage trendline.
28026
+ */
27591
28027
  period?: number;
27592
- label?: string;
28028
+ /**
28029
+ * The line style of the trendline.
28030
+ */
27593
28031
  style?: GC.Spread.Sheets.Charts.ILineStyle;
28032
+ /**
28033
+ * The intercept of the trendline.
28034
+ */
27594
28035
  intercept?: number;
28036
+ /**
28037
+ * The forward of the trendline.
28038
+ */
27595
28039
  forward?: number;
28040
+ /**
28041
+ * The backward of the trendline.
28042
+ */
27596
28043
  backward?: number;
28044
+ /**
28045
+ * Whether display the equation of the trendline.
28046
+ */
27597
28047
  displayEquation?: boolean;
28048
+ /**
28049
+ * Whether display the R squared of the trendline.
28050
+ */
27598
28051
  displayRSquared?: boolean;
28052
+ /**
28053
+ * The name of the trendline.
28054
+ */
27599
28055
  name?: string;
28056
+ /**
28057
+ * The fontFamily of the trendline.
28058
+ */
27600
28059
  fontFamily?: string;
28060
+ /**
28061
+ * The fontSize of the trendline.
28062
+ */
27601
28063
  fontSize?: number;
28064
+ /**
28065
+ * The fontColor of the trendline.
28066
+ */
27602
28067
  fontColor?: string;
27603
28068
  }
27604
28069
 
27605
-
27606
- /**
27607
- * @typedef {object} GC.Spread.Sheets.Charts.IDataPointStyle
27608
- * @property {string | GC.Spread.Sheets.Charts.IPatternFillBackColor} backColor The background color of the data point or symbol point.
27609
- * @property {number} backColorTransparency The background color transparency of the data point or symbol point.
27610
- * @property {GC.Spread.Sheets.Charts.ISeriesItemBorder} border The border style of the data point.
27611
- * @property {Object} border.color The border color of the data point.
27612
- * @property {number} border.transparency The border color transparency of the data point.
27613
- * @property {number} border.width The border width of the data point.
27614
- * @property {GC.Spread.Sheets.Charts.LineType} border.lineType The border line type of the data point.
27615
- * @property {number} symbolSize The symbol size of the data point.
27616
- * @property {GC.Spread.Sheets.Charts.SymbolShape} symbolShape The symbol shape of the data point.
27617
- * @property {GC.Spread.Sheets.Charts.ISeriesItemBorder} symbolBorder The symbol border of the data point.
27618
- * @property {string} symbolBorder.color The symbol border color of the data point.
27619
- * @property {number} symbolBorder.colorTransparency The transparency of the data point symbol border color.
27620
- * @property {number} symbolBorder.width The symbol border width of the data point.
27621
- * @property {GC.Spread.Sheets.Charts.LineType} symbolBorder.lineType The symbol border line Type of the data point.
27622
- */
27623
- export type IDataPointStyle =
27624
- {
27625
- backColor: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27626
- backColorTransparency?: number;
27627
- border?: GC.Spread.Sheets.Charts.ISeriesItemBorder;
27628
- }
27629
-
27630
-
27631
- /**
27632
- * @typedef {object} GC.Spread.Sheets.Charts.IFormatOver
27633
- * @property {string | GC.Spread.Sheets.Charts.IPatternFillBackColor} backColor The background color of the specific points collection.
27634
- * @property {number} backColorTransparency The background color transparency of the specific points collection.
27635
- * @property {GC.Spread.Sheets.Charts.ISeriesItemBorder} borderStyle The border style of the specific points collection.
27636
- * @property {Object} borderStyle.color The border color of the specific points collection.
27637
- * @property {number} borderStyle.transparency The border color transparency of the specific points collection.
27638
- * @property {number} borderStyle.width The border width of the specific points collection.
27639
- * @property {GC.Spread.Sheets.Charts.LineType} borderStyle.lineType The border line type of the specific points collection.
27640
- */
27641
- export type IFormatOver =
27642
- {
27643
- backColor?: string | GC.Spread.Sheets.Charts.IPatternFillBackColor;
27644
- backColorTransparency?: number;
27645
- borderStyle?: GC.Spread.Sheets.Charts.ISeriesItemBorder;
27646
- }
27647
-
27648
-
27649
- /**
27650
- * @typedef GC.Spread.Sheets.Charts.IFormatOvers
27651
- * @property {Object.<number, GC.Spread.Sheets.Charts.IFormatOver>} -The object type that key is number type
27652
- * For waterfall chart, 0 represents increase,1 represents decrease, 2 represents totals, the key value is IFormatOver type
27653
- */
27654
- export type IFormatOvers =
27655
- {
27656
- [key: number]: GC.Spread.Sheets.Charts.IFormatOver;
27657
- }
27658
-
27659
28070
  /**
27660
28071
  * Specifies the point on the specified axis where the other axis crosses.
27661
28072
  * @enum {string}
@@ -27868,6 +28279,33 @@ declare module GC{
27868
28279
  clusteredColumn= 60
27869
28280
  }
27870
28281
 
28282
+ /**
28283
+ * Specifies the color rule of the color style
28284
+ * @enum {number}
28285
+ */
28286
+ export enum ColorRule{
28287
+ /**
28288
+ * Specifies the color picked from the color list is the index modulus the color list length.
28289
+ */
28290
+ cycle= 0,
28291
+ /**
28292
+ * Specifies the color picked from the color list is the first color with a brightness that varies from darker to lighter based on how close the index is from 0 and the count of the chart series being colored respectively.
28293
+ */
28294
+ withinLinear= 1,
28295
+ /**
28296
+ * Specifies the color picked from the color list is the index modulus the color list length. The color has a brightness that varies from darker to lighter based on how close the index is from 0 and the count of the chart series being colored respectively.
28297
+ */
28298
+ acrossLinear= 2,
28299
+ /**
28300
+ * Specifies the color picked from the color list is the first color with a brightness that varies from lighter to darker based on how close the index is from 0 and the count of the chart series being colored respectively.
28301
+ */
28302
+ withinLinearReversed= 3,
28303
+ /**
28304
+ * Specifies the color picked from the color list is the index modulus the color list length. The color has a brightness that varies from lighter to darker based on how close the index is from 0 and the count of the chart series being colored respectively.
28305
+ */
28306
+ acrossLinearReversed= 4
28307
+ }
28308
+
27871
28309
  /**
27872
28310
  * Specifies where the data label is positioned.
27873
28311
  * @enum {number}
@@ -28412,6 +28850,25 @@ declare module GC{
28412
28850
  outside= 3
28413
28851
  }
28414
28852
 
28853
+ /**
28854
+ * Specifies unit of time for chart axis and data series.
28855
+ * @enum {number}
28856
+ */
28857
+ export enum TimeUnit{
28858
+ /**
28859
+ * Days.
28860
+ */
28861
+ days= 0,
28862
+ /**
28863
+ * Months.
28864
+ */
28865
+ months= 1,
28866
+ /**
28867
+ * Years.
28868
+ */
28869
+ years= 2
28870
+ }
28871
+
28415
28872
  /**
28416
28873
  * Specifies how the trendline that smoothes out fluctuations in the data is calculated.
28417
28874
  * @enum {number}
@@ -28485,64 +28942,8 @@ declare module GC{
28485
28942
  alt(value?: string): any;
28486
28943
  /**
28487
28944
  * Gets or sets the chart axes of the chart.
28488
- * @param {Object} value The chart axes of the chart.
28489
- * @param {Object} value.primaryCategory The primary category axis of the chart.
28490
- * @param {Object} value.primaryValue The primary value axis of the chart.
28491
- * @param {Object} value.secondaryCategory The secondary category axis of the chart.
28492
- * @param {Object} value.secondaryValue The secondary value axis of the chart.
28493
- *
28494
- * The primaryCategory, primaryValue, secondaryCategory and secondaryValue have same type.
28495
- * @param {boolean} value.primaryCategory.visible Indicates if the specified axis should be shown.
28496
- * @param {GC.Spread.Sheets.Charts.TickLabelPosition} value.primaryCategory.tickLabelPosition The tick label position.
28497
- * @param {number | GC.Spread.Sheets.Charts.AxisCrossPoint} value.primaryCategory.crossPoint Indicates the axis crosses value.
28498
- * @param {Object} value.primaryCategory.lineStyle The line style of the primary category axis.
28499
- * @param {string} value.primaryCategory.lineStyle.color The line color of the primary category axis.
28500
- * @param {number} value.primaryCategory.lineStyle.transparency The transparency of the chart primary category axis line color.
28501
- * @param {number} value.primaryCategory.lineStyle.width The line width of the primary category axis.
28502
- * @param {Object} value.primaryCategory.style The style of the primary category axis.
28503
- * @param {string} value.primaryCategory.style.color The color of the primary category axis.
28504
- * @param {number} value.primaryCategory.style.transparency The transparency of the chart primary category axis color.
28505
- * @param {string} value.primaryCategory.style.fontFamily The font family of the primary category axis.
28506
- * @param {number} value.primaryCategory.style.fontSize The font size of the primary category axis, its unit is pixel.
28507
- * @param {GC.Spread.Sheets.Charts.TickMark} value.primaryCategory.majorTickPosition The major tick position of the primary category axis.
28508
- * @param {GC.Spread.Sheets.Charts.TickMark} value.primaryCategory.minorTickPosition The minor tick position of the primary category axis.
28509
- * @param {GC.Spread.Sheets.Charts.TimeUnit} value.primaryCategory.baseUnit The base unit scale of the date primary category axis.
28510
- * @param {number} value.primaryCategory.majorUnit The major unit of the primary category axis.
28511
- * @param {GC.Spread.Sheets.Charts.TimeUnit} value.primaryCategory.majorUnitScale The major unit scale of the date primary category axis.
28512
- * @param {number} value.primaryCategory.minorUnit The minor unit of the primary category axis.
28513
- * @param {GC.Spread.Sheets.Charts.TimeUnit} value.primaryCategory.minorUnitScale The minor unit scale of the date primary category axis.
28514
- * @param {number | Date} value.primaryCategory.min The minimum value of the related axis. (for value / date axis only)
28515
- * @param {number | Date} value.primaryCategory.max The maximum value of the related axis. (for value / date axis only)
28516
- * @param {string} value.primaryCategory.format The format of the primary category axis.
28517
- * @param {Object} value.primaryCategory.title The title of the primary category axis.
28518
- * @param {string} value.primaryCategory.title.text The title text of the primary category axis.
28519
- * @param {string} value.primaryCategory.title.color The title color of the primary category axis.
28520
- * @param {number} value.primaryCategory.title.transparency The transparency of the primary category axis color.
28521
- * @param {string} value.primaryCategory.title.fontFamily The title font family of the primary category axis.
28522
- * @param {number} value.primaryCategory.title.fontSize The title font size of the primary category axis, its unit is pixel.
28523
- * @param {Object} value.primaryCategory.majorGridLine The major grid line of the primary category axis.
28524
- * @param {Object} value.primaryCategory.minorGridLine The minor grid line of the primary category axis.
28525
- * @param {number} value.primaryCategory.labelAngle The label angle of the primary category axis.
28526
- * @param {Object} value.primaryCategory.scaling The scaling informations of the primary category axis.
28527
- * @param {number} value.primaryCategory.scaling.logBase The logarithmic scaling base value of the primary category axis.
28528
- * @param {number | GC.Spread.Sheets.Charts.AxisOrientation} value.primaryCategory.scaling.orientation Indicates the specified axis order.
28529
- * @param {Object} value.primaryCategory.displayUnit The display unit informations of the primary category axis.
28530
- * @param {number | GC.Spread.Sheets.Charts.DisplayUnit} value.primaryCategory.displayUnit.unit The built-in display unit string or custom number display unit of the primary category axis.
28531
- * @param {boolean} value.primaryCategory.displayUnit.visible The display unit label visible of the primary category axis.
28532
- * @param {Object} value.primaryCategory.displayUnit.style The display unit label style of the primary category axis.
28533
- * @param {string} value.primaryCategory.displayUnit.style.color The display unit label text color of the primary category axis.
28534
- * @param {number} value.primaryCategory.displayUnit.style.transparency The display unit label text transparency of the primary category axis color.
28535
- * @param {string} value.primaryCategory.displayUnit.style.fontFamily The display unit label text font family of the primary category axis.
28536
- * @param {number} value.primaryCategory.displayUnit.style.fontSize The display unit label text font size of the primary category axis, its unit is pixel.
28537
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart axes of the chart; otherwise, returns the chart.
28538
- *
28539
- * The majorGridLine and minorGridLine have same type.
28540
- * @param {string} value.primaryCategory.majorGridLine.color The color of the major grid line.
28541
- * @param {boolean} value.primaryCategory.majorGridLine.visible The visibility of the major grid line.
28542
- * @param {number} value.primaryCategory.majorGridLine.width The width of the major grid line.
28543
- * @param {number} value.primaryCategory.majorGridLine.transparency The transparency of the major grid line color.
28544
- *
28545
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart axes of the chart; otherwise, returns the chart.
28945
+ * @param {GC.Spread.Sheets.Charts.IAxes} [value] The chart axes of the chart.
28946
+ * @returns {GC.Spread.Sheets.Charts.IAxes | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart axes of the chart; otherwise, returns the chart.
28546
28947
  */
28547
28948
  axes(value?: GC.Spread.Sheets.Charts.IAxes): any;
28548
28949
  /**
@@ -28553,27 +28954,13 @@ declare module GC{
28553
28954
  canPrint(value?: boolean): any;
28554
28955
  /**
28555
28956
  * Gets or sets the chart area style of the chart.
28556
- * @param {Object} value The chart area style of the chart.
28557
- * @param {string | Object} value.backColor The background color of the chart area.
28558
- * @param {GC.Spread.Sheets.Charts.PatternType} value.backColor.type The pattern fill background color type of the chart chartArea.
28559
- * @param {string} value.backColor.foregroundColor The pattern fill foreground color of the chart chartArea.
28560
- * @param {string} value.backColor.backgroundColor The pattern fill background color of the chart chartArea.
28561
- * @param {number} value.backColorTransparency The transparency of the chart area backColor.
28562
- * @param {string} value.fontFamily The font family of the chart area.
28563
- * @param {number} value.fontSize The font size of the chart area, its unit is pixel.
28564
- * @param {string} value.color The color of the chart area.
28565
- * @param {number} value.transparency The transparency of the chart area color.
28566
- * @param {Object} value.border The border of the chart area.
28567
- * @param {string} value.border.color The border color of the chart area.
28568
- * @param {number} value.border.transparency The border transparency of the chart area.
28569
- * @param {number} value.border.width The border width of the chart area.
28570
- * @param {GC.Spread.Sheets.Charts.LineType} value.border.dashStyle The border dash style of the chart area.
28571
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart area style of the chart; otherwise, returns the chart.
28957
+ * @param {GC.Spread.Sheets.Charts.IChartArea} [value] The chart area style of the chart.
28958
+ * @returns {GC.Spread.Sheets.Charts.IChartArea | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart area style of the chart; otherwise, returns the chart.
28572
28959
  */
28573
28960
  chartArea(value?: GC.Spread.Sheets.Charts.IChartArea): any;
28574
28961
  /**
28575
28962
  * Gets or sets the type of the chart.
28576
- * @param {GC.Spread.Sheets.Charts.ChartType} value The type of the chart.
28963
+ * @param {GC.Spread.Sheets.Charts.ChartType} [value] The type of the chart.
28577
28964
  * @returns {GC.Spread.Sheets.Charts.ChartType | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the type of the chart; otherwise, returns the chart.
28578
28965
  */
28579
28966
  chartType(value?: GC.Spread.Sheets.Charts.ChartType): any;
@@ -28592,36 +28979,19 @@ declare module GC{
28592
28979
  content(value?: HTMLElement): any;
28593
28980
  /**
28594
28981
  * Gets or sets the chart data labels style of the chart.
28595
- * @param {Object} value The chart data labels style of the chart.
28596
- * @param {boolean} value.showValue Whether to show value in data labels.
28597
- * @param {boolean} value.showSeriesName Whether to show series name in data labels.
28598
- * @param {boolean} value.showCategoryName Whether to show category name in data labels.
28599
- * @param {boolean} value.showPercentage Whether to show the percent value in data labels.
28600
- * @param {GC.Spread.Sheets.Charts.DataLabelPosition} value.position The position of the chart data labels.
28601
- * @param {string} value.format The format of the chart data labels.
28602
- * @param {string} value.color The color of the chart data labels.
28603
- * @param {number} value.transparency The transparency of the chart data labels color.
28604
- * @param {string} value.separator the separator of the series data labels.
28605
- * @param {string | Object} value.backColor The background color of the series data labels.
28606
- * @param {GC.Spread.Sheets.Charts.PatternType} value.backColor.type The pattern fill backgroundColor type of the chart series data labels.
28607
- * @param {string} value.backColor.foregroundColor The pattern fill foreground color of the chart series data labels.
28608
- * @param {string} value.backColor.backgroundColor The pattern fill background color of the chart series data labels.
28609
- * @param {number} value.backColorTransparency The background color transparency of the series data labels.
28610
- * @param {string} value.borderColor The border color of the series data labels.
28611
- * @param {number} value.borderWidth The border width of the series data labels.
28612
- * @param {number} value.borderColorTransparency The border color transparency of the series data labels.
28613
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart data labels style of the chart; otherwise, returns the chart.
28982
+ * @param {GC.Spread.Sheets.Charts.IDataLabels} [value] The chart data labels style of the chart.
28983
+ * @returns {GC.Spread.Sheets.Charts.IDataLabels | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the chart data labels style of the chart; otherwise, returns the chart.
28614
28984
  */
28615
28985
  dataLabels(value?: GC.Spread.Sheets.Charts.IDataLabels): any;
28616
28986
  /**
28617
28987
  * Gets or sets the whole data range of the chart as formula string.
28618
- * @param {string} value The formula string of the data range for the chart.
28988
+ * @param {string} [value] The formula string of the data range for the chart.
28619
28989
  * @returns {string | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the formula string of the whole data range for the chart; otherwise, returns the chart.
28620
28990
  */
28621
28991
  dataRange(value?: string): any;
28622
28992
  /**
28623
28993
  * Gets or sets the way that the chart display blank data.
28624
- * @param {GC.Spread.Sheets.Charts.DisplayBlanksAs} value the way that the chart display blank data.
28994
+ * @param {GC.Spread.Sheets.Charts.DisplayBlanksAs} [value] the way that the chart display blank data.
28625
28995
  * @returns {GC.Spread.Sheets.Charts.DisplayBlanksAs | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the way that the chart display blank data, otherwise, returns the chart.
28626
28996
  */
28627
28997
  displayBlanksAs(value?: GC.Spread.Sheets.Charts.DisplayBlanksAs): any;
@@ -28677,7 +29047,7 @@ declare module GC{
28677
29047
  /**
28678
29048
  * Gets or sets waterfall chart different points collection style.
28679
29049
  * @param {Object.<number, GC.Spread.Sheets.Charts.IFormatOver>} value The specific data points collection style of the waterfall chart.
28680
- * @returns { boolean | GC.Spread.Sheets.Charts.Chart} If no value is set, return waterfall chart different points collection styles
29050
+ * @returns { GC.Spread.Sheets.Charts.IFormatOvers | GC.Spread.Sheets.Charts.Chart} If no value is set, return waterfall chart different points collection styles
28681
29051
  */
28682
29052
  formatOvers(value?: GC.Spread.Sheets.Charts.IFormatOvers): GC.Spread.Sheets.Charts.IFormatOvers | GC.Spread.Sheets.Charts.Chart;
28683
29053
  /**
@@ -28700,23 +29070,8 @@ declare module GC{
28700
29070
  height(value?: number): any;
28701
29071
  /**
28702
29072
  * Gets or sets the style when user hover over the dataPoint.
28703
- * @param {Object} value The hover style of the dataPoint been hovered.
28704
- * @param {string} value.color The color of the dataPoint been hovered.
28705
- * @param {number} value.transparency The color transparency of the dataPoint been hovered.
28706
- * @param {Object} value.borderStyle The border of the dataPoint been hovered.
28707
- * @param {string} value.borderStyle.color The border color of the dataPoint been hovered.
28708
- * @param {number} value.borderStyle.width The border width of the dataPoint been hovered.
28709
- * @param {number} value.borderStyle.transparency The border color transparency of the dataPoint been hovered.
28710
- * @param {GC.Spread.Sheets.Charts.LineType} value.borderStyle.dashStyle The border dash style of the dataPoint been hovered.
28711
- * @param {Object} value.symbolStyle The symbol style of the dataPoint been hovered.
28712
- * @param {string} value.symbolStyle.color The symbol's color of the dataPoint been hovered.
28713
- * @param {number} value.symbolStyle.transparency The symbol's transparency of the dataPoint been hovered.
28714
- * @param {Object} value.symbolStyle.borderStyle The symbol's border style of the dataPoint been hovered.
28715
- * @param {number} value.symbolStyle.borderStyle.color The symbol's border color of the dataPoint been hovered.
28716
- * @param {number} value.symbolStyle.borderStyle.width The symbol's border width of the dataPoint been hovered.
28717
- * @param {number} value.symbolStyle.borderStyle.transparency The symbol's border transparency of the dataPoint been hovered.
28718
- * @param {GC.Spread.Sheets.Charts.LineType} value.symbolStyle.borderStyle.dashStyle The symbol's border dash style of the dataPoint been hovered.
28719
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the current hover style of the chart; otherwise, returns the chart.
29073
+ * @param {GC.Spread.Sheets.Charts.IHoverStyle} [value] The hover style of the dataPoint been hovered.
29074
+ * @returns {GC.Spread.Sheets.Charts.IHoverStyle | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the current hover style of the chart; otherwise, returns the chart.
28720
29075
  */
28721
29076
  hoverStyle(value?: GC.Spread.Sheets.Charts.IHoverStyle): any;
28722
29077
  /**
@@ -28745,28 +29100,8 @@ declare module GC{
28745
29100
  isVisible(value?: boolean): any;
28746
29101
  /**
28747
29102
  * Gets or sets the legend of the chart.
28748
- * @param {Object} value The legend of the chart.
28749
- * @param {GC.Spread.Sheets.Charts.LegendPosition} value.position The position of the chart legend.
28750
- * @param {boolean} value.visible The visibility of the chart legend.
28751
- * @param {string | Object} value.backColor The backgroundColor of the chart legend.
28752
- * @param {GC.Spread.Sheets.Charts.PatternType} value.backColor.type The pattern fill backgroundColor type of the chart legend.
28753
- * @param {string} value.backColor.foregroundColor The pattern fill foreground color of the chart legend.
28754
- * @param {string} value.backColor.backgroundColor The pattern fill background color of the chart legend.
28755
- * @param {number} value.backColorTransparency The transparency of the chart legend color
28756
- * @param {Object} value.borderStyle The borderStyle of the chart legend.
28757
- * @param {string} value.borderStyle.color The border color of the chart legend.
28758
- * @param {number} value.borderStyle.width The border width of the chart legend.
28759
- * @param {number} value.borderStyle.transparency The transparency of the chart legend border color
28760
- * @param {string} value.color The color of the chart legend text.
28761
- * @param {string} value.fontFamily The font family of the chart legend text.
28762
- * @param {number} value.fontSize The font size of the chart legend text.
28763
- * @param {boolean} value.showLegendWithoutOverlapping whether the legend display without overlapping chart area
28764
- * @param {Object} value.layout The layout of the chart legend.
28765
- * @param {number} value.layout.x The x position of the chart legend, it's percentage, and the base line is chart's left edge.
28766
- * @param {number} value.layout.y The y position of the chart legend, it's percentage, and the base line is chart's top edge.
28767
- * @param {number} value.layout.width The width of the chart legend, it's percentage, and it's based on the chart's width.
28768
- * @param {number} value.layout.height The height of the chart legend, it's percentage, and it's based on the chart's height.
28769
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the legend of the chart; otherwise, returns the chart.
29103
+ * @param {GC.Spread.Sheets.Charts.IChartLegend} [value] The legend of the chart.
29104
+ * @returns {GC.Spread.Sheets.Charts.IChartLegend | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the legend of the chart; otherwise, returns the chart.
28770
29105
  */
28771
29106
  legend(value?: GC.Spread.Sheets.Charts.IChartLegend): any;
28772
29107
  /**
@@ -28821,23 +29156,13 @@ declare module GC{
28821
29156
  switchDataOrientation(): boolean;
28822
29157
  /**
28823
29158
  * Gets or sets the title of the chart.
28824
- * @param {Object} value The title of the chart.
28825
- * @param {string} value.text The text of the chart title.
28826
- * @param {string} value.fontFamily The font family of the chart title.
28827
- * @param {number} value.fontSize The font size of the chart title, its unit is pixel.
28828
- * @param {string} value.color The color of the chart title.
28829
- * @param {number} value.transparency The transparency of the chart title color
28830
- * @param {string | Object} value.backColor The background color of the chart title area.
28831
- * @param {GC.Spread.Sheets.Charts.PatternType} value.backColor.type The pattern fill background color type of the chart title area.
28832
- * @param {string} value.backColor.foregroundColor The pattern fill foreground color of the chart title area.
28833
- * @param {string} value.backColor.backgroundColor The pattern fill background color of the chart title area.
28834
- * @param {number} value.backColorTransparency The transparency of the chart title area backColor.
28835
- * @returns {Object | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the title of the chart; otherwise, returns the chart.
29159
+ * @param {GC.Spread.Sheets.Charts.IChartTitle} [value] The title of the chart.
29160
+ * @returns {GC.Spread.Sheets.Charts.IChartTitle | GC.Spread.Sheets.Charts.Chart} If no value is set, returns the title of the chart; otherwise, returns the chart.
28836
29161
  */
28837
29162
  title(value?: GC.Spread.Sheets.Charts.IChartTitle): any;
28838
29163
  /**
28839
29164
  * Gets or sets whether apply animation to the chart.
28840
- * @param {boolean} value whether apply animation to the chart.
29165
+ * @param {boolean} [value] whether apply animation to the chart.
28841
29166
  * @returns {boolean | GC.Spread.Sheets.Charts.Chart} If no value is set, returns whether apply animation to the chart; otherwise, returns the chart.
28842
29167
  */
28843
29168
  useAnimation(value?: boolean): any;
@@ -28988,106 +29313,7 @@ declare module GC{
28988
29313
  constructor();
28989
29314
  /**
28990
29315
  * Adds a new series to series collection.
28991
- * @param {Object} seriesItem The series of the chart.
28992
- * @param {Object} seriesItem.symbol, seriesItem The symbol of the series.
28993
- * @param {string} seriesItem.symbol.fill The symbol fill color of the series.
28994
- * @param {number} seriesItem.symbol.fillColorTransparency The transparency of the symbol fill color.
28995
- * @param {number} seriesItem.symbol.size The symbol size of the series.
28996
- * @param {GC.Spread.Sheets.Charts.SymbolShape} seriesItem.symbol.shape The symbol shape of the series.
28997
- * @param {Object} seriesItem.symbol.border The symbol border of the series.
28998
- * @param {string} seriesItem.symbol.border.color The symbol border color of the series.
28999
- * @param {number} seriesItem.symbol.border.colorTransparency The transparency of the symbol border color.
29000
- * @param {number} seriesItem.symbol.border.width The symbol border width of the series.
29001
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.symbol.border.lineType The symbol border line Type of the series.
29002
- * @param {Object} seriesItem.errorbars The error bars of the series.
29003
- * @param {Object} seriesItem.errorbars.vertical The vertical error bar of the series, each series may has different direction error bar(s) based on chart type.
29004
- * @param {GC.Spread.Sheets.Charts.ErrorBarType} seriesItem.errorbars.vertical.type The error bar type.
29005
- * @param {GC.Spread.Sheets.Charts.ErrorBarValueType} seriesItem.errorbars.vertical.valuetype The error bar value type.
29006
- * @param {boolean} seriesItem.errorbars.vertical.noEndCap The error bar has end cap or not.
29007
- * @param {number} seriesItem.errorbars.vertical.value The error bar value, just take effect on the FixedValue(1) / Percentage(2) / StandardDeviation(3) value type.
29008
- * @param {Object} seriesItem.errorbars.vertical.custom The error bar custom formulas, it contains positive formula and negative formula, just take effect on the Custom(0) value type.
29009
- * @param {string} seriesItem.errorbars.vertical.custom.positive The error bar custom positive formula.
29010
- * @param {string} seriesItem.errorbars.vertical.custom.negative The error bar custom negative formula.
29011
- * @param {Object} seriesItem.errorbars.vertical.style The error bar styles.
29012
- * @param {string} seriesItem.errorbars.vertical.style.color The error bar color.
29013
- * @param {number} seriesItem.errorbars.vertical.style.transparency The error bar transparency.
29014
- * @param {number} seriesItem.errorbars.vertical.style.width The error bar width.
29015
- * @param {Object} seriesItem.errorbars.horizontal The horizontal error bar of the series, each series may has different direction error bar(s) based on chart type.
29016
- * @param {GC.Spread.Sheets.Charts.ErrorBarType} seriesItem.errorbars.horizontal.type The error bar type.
29017
- * @param {GC.Spread.Sheets.Charts.ErrorBarValueType} seriesItem.errorbars.horizontal.valuetype The error bar value type.
29018
- * @param {boolean} seriesItem.errorbars.horizontal.noEndCap The error bar has end cap or not.
29019
- * @param {number} seriesItem.errorbars.horizontal.value The error bar value, just take effect on the FixedValue(1) / Percentage(2) / StandardDeviation(3) value type.
29020
- * @param {Object} seriesItem.errorbars.horizontal.custom The error bar custom formulas, it contains positive formula and negative formula, just take effect on the Custom(0) value type.
29021
- * @param {string} seriesItem.errorbars.horizontal.custom.positive The error bar custom positive formula.
29022
- * @param {string} seriesItem.errorbars.horizontal.custom.negative The error bar custom negative formula.
29023
- * @param {Object} seriesItem.errorbars.horizontal.style The error bar styles.
29024
- * @param {string} seriesItem.errorbars.horizontal.style.color The error bar color.
29025
- * @param {number} seriesItem.errorbars.horizontal.style.transparency The error bar transparency.
29026
- * @param {number} seriesItem.errorbars.horizontal.style.width The error bar width.
29027
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.errorbars.horizontal.style.dashStyle The error bar dash style.
29028
- * @param {Object[]} seriesItem.trendlines The trendlines of the series.
29029
- * @param {GC.Spread.Sheets.Charts.TrendlineType} seriesItem.trendlines[0].type The type of the trendline.
29030
- * @param {number} seriesItem.trendlines[0].order The order of the polynomial trendline.
29031
- * @param {number} seriesItem.trendlines[0].period The period of the movingAverage trendline.
29032
- * @param {number} seriesItem.trendlines[0].intercept The intercept of the trendline.
29033
- * @param {number} seriesItem.trendlines[0].forward The forward of the trendline.
29034
- * @param {number} seriesItem.trendlines[0].backward The backward of the trendline.
29035
- * @param {boolean} seriesItem.trendlines[0].displayEquation Whether display the equation of the trendline.
29036
- * @param {boolean} seriesItem.trendlines[0].displayRSquared Whether display the R squared of the trendline.
29037
- * @param {string} seriesItem.trendlines[0].fontFamily The fontFamily of the trendline.
29038
- * @param {number} seriesItem.trendlines[0].fontSize The fontSize of the trendline.
29039
- * @param {string} seriesItem.trendlines[0].fontColor The fontColor of the trendline.
29040
- * @param {string} seriesItem.trendlines[0].name The name of the trendline.
29041
- * @param {Object} seriesItem.trendlines[0].style The line style of the trendline.
29042
- * @param {string} seriesItem.trendlines[0].style.color The color of the trendline.
29043
- * @param {number} seriesItem.trendlines[0].style.transparency The transparency of the trendline.
29044
- * @param {number} seriesItem.trendlines[0].style.width The width of the trendline.
29045
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.trendlines[0].style.dashStyle The dash style of the trendline.
29046
- * @param {GC.Spread.Sheets.Charts.ChartType} seriesItem.chartType The chart type of the series.
29047
- * @param {GC.Spread.Sheets.Charts.AxisGroup} seriesItem.axisGroup The axis group of the series.
29048
- * @param {string | Object} seriesItem.backColor The background color of the series.
29049
- * @param {GC.Spread.Sheets.Charts.PatternType} seriesItem.backColor.type The pattern fill background color type of the chart series.
29050
- * @param {string} seriesItem.backColor.foregroundColor The pattern fill foreground color of the chart series.
29051
- * @param {string} seriesItem.backColor.backgroundColor The pattern fill background color of the chart series.
29052
- * @param {number} seriesItem.backColorTransparency The transparency of the series background color.
29053
- * @param {Object} seriesItem.border The border of the series.
29054
- * @param {string} seriesItem.border.color The border color of the series.
29055
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.border.lineType The border line type of the series.
29056
- * @param {number} seriesItem.border.transparency The transparency of the series border color.
29057
- * @param {number} seriesItem.border.width The border width of the series.
29058
- * @param {number} seriesItem.startAngle The first slice angle of the chart whose chart type is pie. The default value is 0, which represents the 12 o'clock position.
29059
- * @param {string} seriesItem.name The name formula of the series.
29060
- * @param {string} seriesItem.xValues The x values formula of the series.
29061
- * @param {string} seriesItem.yValues The y values formula of the series.
29062
- * @param {boolean} seriesItem.smooth Whether to display smooth lines. This is used for line chart and scatter chart.
29063
- * @param {string} seriesItem.bubbleSizes The bubble sizes formula of the series. This is used for bubble chart.
29064
- * @param {number} seriesItem.doughnutHoleSize The hole size of the doughnut chart. This is used for doughnut chart, The maximum value is 0.9, the minimum value is 0.
29065
- * @param {number} seriesItem.showConnectorLines Whether the series show connector lines. This is used for waterfall chart, The default value is false.
29066
- * @param {number[]} seriesItem.subtotals The waterfall chart set as total points index array(0 base). This is used for waterfall chart, The default value is empty array.
29067
- * @param {number} seriesItem.gapWidth The gap width of the bar and column chart group. The maximum value is 5, the minimum value is 0.
29068
- * @param {number} seriesItem.overlap The overlap of the bar and column chart group. The maximum value is 1, the minimum value is -1.
29069
- * @param {Array} seriesItem.trendlines The trendlines of the series.
29070
- * @param {Object.<number, GC.Spread.Sheets.Charts.IDataPointStyle>} seriesItem.dataPoints The data points of the series.
29071
- * @param {Object} seriesItem.dataLabels The data labels of the series.
29072
- * @param {boolean} seriesItem.dataLabels.showValue Whether to show value in series data labels.
29073
- * @param {boolean} seriesItem.dataLabels.showSeriesName Whether to show series name in series data labels.
29074
- * @param {boolean} seriesItem.dataLabels.showCategoryName Whether to show category name in series data labels.
29075
- * @param {boolean} seriesItem.dataLabels.showPercentage Whether to show the percent value in series data labels.
29076
- * @param {string} seriesItem.dataLabels.separator the separator of the series data labels.
29077
- * @param {GC.Spread.Sheets.Charts.DataLabelPosition} seriesItem.dataLabels.position The position of the series data labels.
29078
- * @param {string} seriesItem.dataLabels.format The format of the series data labels.
29079
- * @param {string} seriesItem.dataLabels.color The text color of the series data labels.
29080
- * @param {number} seriesItem.dataLabels.transparency The text color transparency of the series data labels.
29081
- * @param {string | Object} seriesItem.dataLabels.backColor The background color of the series data labels.
29082
- * @param {GC.Spread.Sheets.Charts.PatternType} seriesItem.dataLabels.backColor.type The pattern fill background color type of the chart series dataLabels.
29083
- * @param {string} seriesItem.dataLabels.backColor.foregroundColor The pattern fill foreground color of the chart series dataLabels.
29084
- * @param {string} seriesItem.dataLabels.backColor.backgroundColor The pattern fill background color of the chart series dataLabels.
29085
- * @param {number} seriesItem.dataLabels.backColorTransparency The background color transparency of the series data labels.
29086
- * @param {string} seriesItem.dataLabels.borderColor The border color of the series data labels.
29087
- * @param {number} seriesItem.dataLabels.borderWidth The border width of the series data labels.
29088
- * @param {number} seriesItem.dataLabels.borderColorTransparency The border color transparency of the series data labels.
29089
- * @param {boolean} seriesItem.invertIfNegative Whether the series enables invertIfNegative.
29090
- * @param {string} seriesItem.invertColor The series point value is negative color when seriesItem type is column or bar chart and invertIfNegative is true.
29316
+ * @param {GC.Spread.Sheets.Charts.ISeries | GC.Spread.Sheets.Charts.ISeries[]} series The series of the chart.
29091
29317
  * @example
29092
29318
  * ```
29093
29319
  * // This example shows how to add a new series.
@@ -29108,8 +29334,8 @@ declare module GC{
29108
29334
  add(series: GC.Spread.Sheets.Charts.ISeries | GC.Spread.Sheets.Charts.ISeries[]): void;
29109
29335
  /**
29110
29336
  * Gets all series or a specified series from series collection.
29111
- * @param {number} index The index of the series.
29112
- * @return {Object | Object[]} The series of the chart.
29337
+ * @param {number} [index] The index of the series.
29338
+ * @return {GC.Spread.Sheets.Charts.ISeries | GC.Spread.Sheets.Charts.ISeries[]} The series of the chart.
29113
29339
  * @example
29114
29340
  * ```
29115
29341
  * // This example shows how to get a series.
@@ -29134,106 +29360,7 @@ declare module GC{
29134
29360
  /**
29135
29361
  * Updates the specified series's property.
29136
29362
  * @param {number} index The index of the series.
29137
- * @param {Object} seriesItem The series of the chart.
29138
- * @param {Object} seriesItem.symbol, seriesItem The symbol of the series.
29139
- * @param {string} seriesItem.symbol.fill The symbol fill color of the series.
29140
- * @param {number} seriesItem.symbol.fillColorTransparency The transparency of the symbol fill color.
29141
- * @param {number} seriesItem.symbol.size The symbol size of the series.
29142
- * @param {GC.Spread.Sheets.Charts.SymbolShape} seriesItem.symbol.shape The symbol shape of the series.
29143
- * @param {Object} seriesItem.symbol.border The symbol border of the series.
29144
- * @param {string} seriesItem.symbol.border.color The symbol border color of the series.
29145
- * @param {number} seriesItem.symbol.border.colorTransparency The transparency of the symbol border color.
29146
- * @param {number} seriesItem.symbol.border.width The symbol border width of the series.
29147
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.symbol.border.lineType The symbol border line Type of the series.
29148
- * @param {Object} seriesItem.errorbars The error bars of the series.
29149
- * @param {Object} seriesItem.errorbars.vertical The vertical error bar of the series, each series may has different direction error bar(s) based on chart type.
29150
- * @param {GC.Spread.Sheets.Charts.ErrorBarType} seriesItem.errorbars.vertical.type The error bar type.
29151
- * @param {GC.Spread.Sheets.Charts.ErrorBarValueType} seriesItem.errorbars.vertical.valuetype The error bar value type.
29152
- * @param {boolean} seriesItem.errorbars.vertical.noEndCap The error bar has end cap or not.
29153
- * @param {number} seriesItem.errorbars.vertical.value The error bar value, just take effect on the FixedValue(1) / Percentage(2) / StandardDeviation(3) value type.
29154
- * @param {Object} seriesItem.errorbars.vertical.custom The error bar custom formulas, it contains positive formula and negative formula, just take effect on the Custom(0) value type.
29155
- * @param {string} seriesItem.errorbars.vertical.custom.positive The error bar custom positive formula.
29156
- * @param {string} seriesItem.errorbars.vertical.custom.negative The error bar custom negative formula.
29157
- * @param {Object} seriesItem.errorbars.vertical.style The error bar styles.
29158
- * @param {string} seriesItem.errorbars.vertical.style.color The error bar color.
29159
- * @param {number} seriesItem.errorbars.vertical.style.transparency The error bar transparency.
29160
- * @param {number} seriesItem.errorbars.vertical.style.width The error bar width.
29161
- * @param {Object} seriesItem.errorbars.horizontal The horizontal error bar of the series, each series may has different direction error bar(s) based on chart type.
29162
- * @param {GC.Spread.Sheets.Charts.ErrorBarType} seriesItem.errorbars.horizontal.type The error bar type.
29163
- * @param {GC.Spread.Sheets.Charts.ErrorBarValueType} seriesItem.errorbars.horizontal.valuetype The error bar value type.
29164
- * @param {boolean} seriesItem.errorbars.horizontal.noEndCap The error bar has end cap or not.
29165
- * @param {number} seriesItem.errorbars.horizontal.value The error bar value, just take effect on the FixedValue(1) / Percentage(2) / StandardDeviation(3) value type.
29166
- * @param {Object} seriesItem.errorbars.horizontal.custom The error bar custom formulas, it contains positive formula and negative formula, just take effect on the Custom(0) value type.
29167
- * @param {string} seriesItem.errorbars.horizontal.custom.positive The error bar custom positive formula.
29168
- * @param {string} seriesItem.errorbars.horizontal.custom.negative The error bar custom negative formula.
29169
- * @param {Object} seriesItem.errorbars.horizontal.style The error bar styles.
29170
- * @param {string} seriesItem.errorbars.horizontal.style.color The error bar color.
29171
- * @param {number} seriesItem.errorbars.horizontal.style.transparency The error bar transparency.
29172
- * @param {number} seriesItem.errorbars.horizontal.style.width The error bar width.
29173
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.errorbars.horizontal.style.dashStyle The error bar dash style.
29174
- * @param {Object[]} seriesItem.trendlines The trendlines of the series.
29175
- * @param {GC.Spread.Sheets.Charts.TrendlineType} seriesItem.trendlines[0].type The type of the trendline.
29176
- * @param {number} seriesItem.trendlines[0].order The order of the polynomial trendline.
29177
- * @param {number} seriesItem.trendlines[0].period The period of the movingAverage trendline.
29178
- * @param {number} seriesItem.trendlines[0].intercept The intercept of the trendline.
29179
- * @param {number} seriesItem.trendlines[0].forward The forward of the trendline.
29180
- * @param {number} seriesItem.trendlines[0].backward The backward of the trendline.
29181
- * @param {boolean} seriesItem.trendlines[0].displayEquation Whether display the equation of the trendline.
29182
- * @param {boolean} seriesItem.trendlines[0].displayRSquared Whether display the R squared of the trendline.
29183
- * @param {string} seriesItem.trendlines[0].fontFamily The fontFamily of the trendline.
29184
- * @param {number} seriesItem.trendlines[0].fontSize The fontSize of the trendline.
29185
- * @param {string} seriesItem.trendlines[0].fontColor The fontColor of the trendline.
29186
- * @param {string} seriesItem.trendlines[0].name The name of the trendline.
29187
- * @param {Object} seriesItem.trendlines[0].style The line style of the trendline.
29188
- * @param {string} seriesItem.trendlines[0].style.color The color of the trendline.
29189
- * @param {number} seriesItem.trendlines[0].style.transparency The transparency of the trendline.
29190
- * @param {number} seriesItem.trendlines[0].style.width The width of the trendline.
29191
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.trendlines[0].style.dashStyle The dash style of the trendline.
29192
- * @param {GC.Spread.Sheets.Charts.ChartType} seriesItem.chartType The chart type of the series.
29193
- * @param {GC.Spread.Sheets.Charts.AxisGroup} seriesItem.axisGroup The axis group of the series.
29194
- * @param {string | Object} seriesItem.backColor The background color of the series.
29195
- * @param {GC.Spread.Sheets.Charts.PatternType} seriesItem.backColor.type The pattern fill background color type of the chart series.
29196
- * @param {string} seriesItem.backColor.foregroundColor The pattern fill foreground color of the chart series.
29197
- * @param {string} seriesItem.backColor.backgroundColor The pattern fill background color of the chart series.
29198
- * @param {number} seriesItem.backColorTransparency The transparency of the series background color.
29199
- * @param {Object} seriesItem.border The border of the series.
29200
- * @param {string} seriesItem.border.color The border color of the series.
29201
- * @param {GC.Spread.Sheets.Charts.LineType} seriesItem.border.lineType The border line type of the series.
29202
- * @param {number} seriesItem.border.transparency The transparency of the series border color.
29203
- * @param {number} seriesItem.border.width The border width of the series.
29204
- * @param {boolean} seriesItem.smooth Whether to display smooth lines. This is used for line chart and scatter chart.
29205
- * @param {number} seriesItem.startAngle The first slice angle of the chart whose chart type is pie. The default value is 0, which represents the 12 o'clock position.
29206
- * @param {string} seriesItem.name The name formula of the series.
29207
- * @param {string} seriesItem.xValues The x values formula of the series.
29208
- * @param {string} seriesItem.yValues The y values formula of the series.
29209
- * @param {string} seriesItem.bubbleSizes The bubble sizes formula of the series. This is used for bubble chart.
29210
- * @param {number} seriesItem.doughnutHoleSize The hole size of the doughnut chart. This is used for doughnut chart, The maximum value is 0.9, the minimum value is 0.
29211
- * @param {number} seriesItem.showConnectorLines Whether the series show connector lines. This is used for waterfall chart, The default value is false.
29212
- * @param {number[]} seriesItem.subtotals The waterfall chart set as total points index array(0 base). This is used for waterfall chart, The default value is empty array.
29213
- * @param {number} seriesItem.gapWidth The gap width of the bar and column chart group. The maximum value is 5, the minimum value is 0.
29214
- * @param {number} seriesItem.overlap The overlap of the bar and column chart group. The maximum value is 1, the minimum value is -1.
29215
- * @param {Array} seriesItem.trendlines The trendlines of the series.
29216
- * @param {Object.<number, GC.Spread.Sheets.Charts.IDataPointStyle>} seriesItem.dataPoints The data points of the series.
29217
- * @param {Object} seriesItem.dataLabels The data labels of the series.
29218
- * @param {boolean} seriesItem.dataLabels.showValue Whether to show value in series data labels.
29219
- * @param {boolean} seriesItem.dataLabels.showSeriesName Whether to show series name in series data labels.
29220
- * @param {boolean} seriesItem.dataLabels.showCategoryName Whether to show category name in series data labels.
29221
- * @param {boolean} seriesItem.dataLabels.showPercentage Whether to show the percent value in series data labels.
29222
- * @param {string} seriesItem.dataLabels.separator the separator of the series data labels.
29223
- * @param {GC.Spread.Sheets.Charts.DataLabelPosition} seriesItem.dataLabels.position The position of the series data labels.
29224
- * @param {string} seriesItem.dataLabels.format The format of the series data labels.
29225
- * @param {string} seriesItem.dataLabels.color The text color of the series data labels.
29226
- * @param {number} seriesItem.dataLabels.transparency The text color transparency of the series data labels.
29227
- * @param {string | Object} seriesItem.dataLabels.backColor The background color of the series data labels.
29228
- * @param {GC.Spread.Sheets.Charts.PatternType} seriesItem.dataLabels.backColor.type The pattern fill background color type of the chart series dataLabels.
29229
- * @param {string} seriesItem.dataLabels.backColor.foregroundColor The pattern fill foreground color of the chart series dataLabels.
29230
- * @param {string} seriesItem.dataLabels.backColor.backgroundColor The pattern fill background color of the chart series dataLabels.
29231
- * @param {number} seriesItem.dataLabels.backColorTransparency The background color transparency of the series data labels.
29232
- * @param {string} seriesItem.dataLabels.borderColor The border color of the series data labels.
29233
- * @param {number} seriesItem.dataLabels.borderWidth The border width of the series data labels.
29234
- * @param {number} seriesItem.dataLabels.borderColorTransparency The border color transparency of the series data labels.
29235
- * @param {boolean} seriesItem.invertIfNegative Whether the series enables invertIfNegative.
29236
- * @param {string} seriesItem.invertColor The series point value is negative color when seriesItem type is column or bar chart and invertIfNegative is true.
29363
+ * @param {GC.Spread.Sheets.Charts.ISeries} series The series of the chart.
29237
29364
  * @example
29238
29365
  * ```
29239
29366
  * // This example shows how to update the property of a series.
@@ -30189,8 +30316,8 @@ declare module GC{
30189
30316
  * @param context The context of the operation.
30190
30317
  * @example
30191
30318
  * ```
30192
- * //This example copy a sheet.
30193
- * spread.commandManager().execute({cmd: "openPasteSpecialDialog"});
30319
+ * //This example opens the paste special dialog.
30320
+ * spread.commandManager().execute({cmd: "openPasteSpecialDialog", sheetName: spread.getActiveSheet().name()});
30194
30321
  * ```
30195
30322
  */
30196
30323
  var openPasteSpecialDialog: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook): void};