aspose.cells.node 25.12.0 → 25.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/types.d.ts +136 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.cells.node",
3
- "version": "25.12.0",
3
+ "version": "25.12.1",
4
4
  "description": "Aspose.Cells for Node.js via C++ is a high-performance and powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), ODS, CSV, and HTML files, offering a comprehensive set of features for creating, editing, converting, and rendering spreadsheets within Node.js applications.",
5
5
  "main": "aspose.cells.js",
6
6
  "types": "types.d.ts",
@@ -35,10 +35,10 @@
35
35
  "license": "Commercial",
36
36
  "homepage": "https://www.aspose.com",
37
37
  "optionalDependencies": {
38
- "aspose.cells.node.win32.x64": "~25.12.0",
39
- "aspose.cells.node.linux.x64": "~25.12.0",
40
- "aspose.cells.node.linux.arm64": "~25.12.0",
41
- "aspose.cells.node.darwin.x64": "~25.12.0",
42
- "aspose.cells.node.darwin.arm64": "~25.12.0"
38
+ "aspose.cells.node.win32.x64": "~25.12.1",
39
+ "aspose.cells.node.linux.x64": "~25.12.1",
40
+ "aspose.cells.node.linux.arm64": "~25.12.1",
41
+ "aspose.cells.node.darwin.x64": "~25.12.1",
42
+ "aspose.cells.node.darwin.arm64": "~25.12.1"
43
43
  }
44
44
  }
package/types.d.ts CHANGED
@@ -24626,6 +24626,20 @@ export class PivotField {
24626
24626
  * @param value - The value to set.
24627
24627
  */
24628
24628
  setShowCompact(value: boolean) : void;
24629
+ /**
24630
+ * Gets the max value of this field.
24631
+ *
24632
+ * @remarks
24633
+ * Only works for row or column fields which value must be date time, number or blank.
24634
+ */
24635
+ getMaxValue() : CellValue;
24636
+ /**
24637
+ * Gets the max value of this field.
24638
+ *
24639
+ * @remarks
24640
+ * Only works for row or column fields which value must be date time, number or blank.
24641
+ */
24642
+ getMinValue() : CellValue;
24629
24643
  /**
24630
24644
  * Init the pivot items of the pivot field
24631
24645
  */
@@ -24636,6 +24650,13 @@ export class PivotField {
24636
24650
  * @param newField - Indicates whether adding a new field to the pivottable.
24637
24651
  */
24638
24652
  groupBy(interval: number, newField: boolean) : void;
24653
+ /**
24654
+ * Automatically group the field with internal
24655
+ * @param groups - Group types
24656
+ * @param interval - The internal of group. /// Automatic value will be assigned if it's zero,
24657
+ * @param newField - Indicates whether adding a new field to the pivottable.
24658
+ */
24659
+ groupBy(groups: PivotGroupByType[], interval: number, newField: boolean) : void;
24639
24660
  /**
24640
24661
  * Group the file by the date group types.
24641
24662
  * @param start - The start datetime
@@ -53124,34 +53145,130 @@ export class Series {
53124
53145
  /**
53125
53146
  * @deprecated Please use the 'values' property instead.
53126
53147
  * Represents the Y values of this chart series.
53148
+ *
53149
+ * @remarks
53150
+ * To get the actual values(corresponding to every point of this series) defined
53151
+ * by this property, please use <see cref="PointValues"/>.
53127
53152
  */
53128
53153
  getValues() : string;
53129
53154
  /**
53130
53155
  * Represents the Y values of this chart series.
53156
+ *
53157
+ * @remarks
53158
+ * To get the actual values(corresponding to every point of this series) defined
53159
+ * by this property, please use <see cref="PointValues"/>.
53131
53160
  */
53132
53161
  values : string;
53133
53162
  /**
53134
53163
  * @deprecated Please use the 'values' property instead.
53135
53164
  * Represents the Y values of this chart series.
53136
53165
  * @param value - The value to set.
53166
+ *
53167
+ * @remarks
53168
+ * To get the actual values(corresponding to every point of this series) defined
53169
+ * by this property, please use <see cref="PointValues"/>.
53137
53170
  */
53138
53171
  setValues(value: string) : void;
53139
53172
  /**
53140
53173
  * @deprecated Please use the 'pointValues' property instead.
53141
- * Gets the values for the points of the series
53174
+ * Represents the actual values that are used to plot every point in the chart.
53175
+ * corresponding to <see cref="Series.Values"/>
53176
+ * When Series.Values is a link, you can use this attribute to get specific data.
53177
+ * <example>
53178
+ * <code>
53179
+ * [C#]
53180
+ * Workbook workbook = new Workbook("YourFilePathName");
53181
+ * Worksheet worksheet = workbook.Worksheets[0];
53182
+ * Chart chart = worksheet.Charts[0];
53183
+ * chart.Calculate();
53184
+ * Values could be like "[External.xlsx]Sheet1!$A$1:$A$6",
53185
+ * string Values = chart.NSeries[0].Values;
53186
+ * But when you can't get point values from "[External.xlsx]Sheet1!$A$1:$A$6",
53187
+ * For example, "External.xlsx" does not exist, then you can use PointValues,
53188
+ * It will return the values actually displayed in the Excel interface in the form of an array.
53189
+ * ChartDataValue[] v1 = chart.NSeries[0].PointValues;
53190
+ * </code>
53191
+ * </example>
53192
+ *
53193
+ * @remarks
53194
+ * For user's convenience, this property provides the actual values corresponding
53195
+ * to the data defined by <see cref="Series.Values"/>.
53142
53196
  */
53143
53197
  getPointValues() : ChartDataValue[];
53144
53198
  /**
53145
- * Gets the values for the points of the series
53199
+ * Represents the actual values that are used to plot every point in the chart.
53200
+ * corresponding to <see cref="Series.Values"/>
53201
+ * When Series.Values is a link, you can use this attribute to get specific data.
53202
+ * <example>
53203
+ * <code>
53204
+ * [C#]
53205
+ * Workbook workbook = new Workbook("YourFilePathName");
53206
+ * Worksheet worksheet = workbook.Worksheets[0];
53207
+ * Chart chart = worksheet.Charts[0];
53208
+ * chart.Calculate();
53209
+ * Values could be like "[External.xlsx]Sheet1!$A$1:$A$6",
53210
+ * string Values = chart.NSeries[0].Values;
53211
+ * But when you can't get point values from "[External.xlsx]Sheet1!$A$1:$A$6",
53212
+ * For example, "External.xlsx" does not exist, then you can use PointValues,
53213
+ * It will return the values actually displayed in the Excel interface in the form of an array.
53214
+ * ChartDataValue[] v1 = chart.NSeries[0].PointValues;
53215
+ * </code>
53216
+ * </example>
53217
+ *
53218
+ * @remarks
53219
+ * For user's convenience, this property provides the actual values corresponding
53220
+ * to the data defined by <see cref="Series.Values"/>.
53146
53221
  */
53147
53222
  readonly pointValues : ChartDataValue[];
53148
53223
  /**
53149
53224
  * @deprecated Please use the 'categoryValues' property instead.
53150
- * Gets the category values of the series
53225
+ * Represents the actual category values that are used in the chart.
53226
+ * corresponding to <see cref="Series.XValues"/>
53227
+ * When Series.XValues is a link, you can use this attribute to get specific data.
53228
+ * <example>
53229
+ * <code>
53230
+ * [C#]
53231
+ * Workbook workbook = new Workbook("YourFilePathName");
53232
+ * Worksheet worksheet = workbook.Worksheets[0];
53233
+ * Chart chart = worksheet.Charts[0];
53234
+ * chart.Calculate();
53235
+ * XValues could be like "[External.xlsx]Sheet1!$B$2:$C$6",
53236
+ * string XValues = chart.NSeries[0].XValues;
53237
+ * But when you can't get category values from "[External.xlsx]Sheet1!$B$2:$C$6",
53238
+ * For example, "External.xlsx" does not exist, then you can use CategoryValues,
53239
+ * It will return the category values actually displayed in the Excel interface in the form of a two-dimensional array.
53240
+ * ChartDataValue[][] v1 = chart.NSeries[0].CategoryValues;
53241
+ * </code>
53242
+ * </example>
53243
+ *
53244
+ * @remarks
53245
+ * For user's convenience, this property provides the actual values corresponding
53246
+ * to the data defined by <see cref="Series.XValues"/>.
53151
53247
  */
53152
53248
  getCategoryValues() : ChartDataValue[][];
53153
53249
  /**
53154
- * Gets the category values of the series
53250
+ * Represents the actual category values that are used in the chart.
53251
+ * corresponding to <see cref="Series.XValues"/>
53252
+ * When Series.XValues is a link, you can use this attribute to get specific data.
53253
+ * <example>
53254
+ * <code>
53255
+ * [C#]
53256
+ * Workbook workbook = new Workbook("YourFilePathName");
53257
+ * Worksheet worksheet = workbook.Worksheets[0];
53258
+ * Chart chart = worksheet.Charts[0];
53259
+ * chart.Calculate();
53260
+ * XValues could be like "[External.xlsx]Sheet1!$B$2:$C$6",
53261
+ * string XValues = chart.NSeries[0].XValues;
53262
+ * But when you can't get category values from "[External.xlsx]Sheet1!$B$2:$C$6",
53263
+ * For example, "External.xlsx" does not exist, then you can use CategoryValues,
53264
+ * It will return the category values actually displayed in the Excel interface in the form of a two-dimensional array.
53265
+ * ChartDataValue[][] v1 = chart.NSeries[0].CategoryValues;
53266
+ * </code>
53267
+ * </example>
53268
+ *
53269
+ * @remarks
53270
+ * For user's convenience, this property provides the actual values corresponding
53271
+ * to the data defined by <see cref="Series.XValues"/>.
53155
53272
  */
53156
53273
  readonly categoryValues : ChartDataValue[][];
53157
53274
  /**
@@ -53186,17 +53303,29 @@ export class Series {
53186
53303
  setXValuesFormatCode(value: string) : void;
53187
53304
  /**
53188
53305
  * @deprecated Please use the 'xValues' property instead.
53189
- * Represents the x values of the chart series.
53306
+ * Represents the X values of this chart series.
53307
+ *
53308
+ * @remarks
53309
+ * To get the actual values(corresponding to every point of this series) defined
53310
+ * by this property, please use <see cref="CategoryValues"/>.
53190
53311
  */
53191
53312
  getXValues() : string;
53192
53313
  /**
53193
- * Represents the x values of the chart series.
53314
+ * Represents the X values of this chart series.
53315
+ *
53316
+ * @remarks
53317
+ * To get the actual values(corresponding to every point of this series) defined
53318
+ * by this property, please use <see cref="CategoryValues"/>.
53194
53319
  */
53195
53320
  xValues : string;
53196
53321
  /**
53197
53322
  * @deprecated Please use the 'xValues' property instead.
53198
- * Represents the x values of the chart series.
53323
+ * Represents the X values of this chart series.
53199
53324
  * @param value - The value to set.
53325
+ *
53326
+ * @remarks
53327
+ * To get the actual values(corresponding to every point of this series) defined
53328
+ * by this property, please use <see cref="CategoryValues"/>.
53200
53329
  */
53201
53330
  setXValues(value: string) : void;
53202
53331
  /**