@mescius/spread-sheets 18.1.2 → 18.1.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.
@@ -15196,7 +15196,7 @@ declare module GC{
|
|
15196
15196
|
* @enum {number}
|
15197
15197
|
* @example
|
15198
15198
|
* ```javascript
|
15199
|
-
* spread.options.
|
15199
|
+
* spread.options.calculationMode = GC.Spread.Sheets.CalculationMode.manual;
|
15200
15200
|
* ```
|
15201
15201
|
*/
|
15202
15202
|
export enum CalculationMode{
|
@@ -23156,6 +23156,8 @@ declare module GC{
|
|
23156
23156
|
/**
|
23157
23157
|
* Adds a SparklineEx to the SparklineEx collection.
|
23158
23158
|
* @param {GC.Spread.Sheets.Sparklines.SparklineEx} sparklineEx The SparklineEx to be added.
|
23159
|
+
* @example
|
23160
|
+
* ```javascript
|
23159
23161
|
* window.MySparklineEx = function(color) {
|
23160
23162
|
* GC.Spread.Sheets.Sparklines.SparklineEx.apply(this, arguments);
|
23161
23163
|
* this.typeName = 'MySparklineEx';
|
@@ -23176,6 +23178,7 @@ declare module GC{
|
|
23176
23178
|
* context.stroke();
|
23177
23179
|
* };
|
23178
23180
|
* spread.addSparklineEx(new MySparklineEx('green'));
|
23181
|
+
* ```
|
23179
23182
|
*/
|
23180
23183
|
addSparklineEx(sparklineEx: GC.Spread.Sheets.Sparklines.SparklineEx): void;
|
23181
23184
|
/**
|
@@ -31784,12 +31787,12 @@ declare module GC{
|
|
31784
31787
|
|
31785
31788
|
|
31786
31789
|
/**
|
31787
|
-
* @property {GC.Spread.Sheets.
|
31790
|
+
* @property {GC.Spread.Sheets.IRange[]} [selections]
|
31788
31791
|
* @property {string} [sheetId]
|
31789
31792
|
*/
|
31790
31793
|
export type ISelections =
|
31791
31794
|
{
|
31792
|
-
selections?: GC.Spread.Sheets.
|
31795
|
+
selections?: GC.Spread.Sheets.IRange[];
|
31793
31796
|
sheetId?: string;
|
31794
31797
|
}
|
31795
31798
|
|