You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: english/javascript-cpp/_index.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -648,6 +648,7 @@ is_root: true
648
648
|[HtmlLayoutMode](./htmllayoutmode)| Represents the layout mode for HTML rendering. |
649
649
|[HtmlLinkTargetType](./htmllinktargettype)| Represents the type of target attribute in HTML <a/> tag. |
650
650
|[HtmlOfficeMathOutputType](./htmlofficemathoutputtype)| Represents how to export OfficeMath to HTML. |
651
+
|[HtmlParagraphLayoutMode](./htmlparagraphlayoutmode)| Specifies how HTML <p> elements are rendered when loading HTML. |
651
652
|[HtmlVersion](./htmlversion)| Indicates the version of HTML is used when saving to Html formats. |
652
653
|[IconSetType](./iconsettype)| Icon set type for conditional formatting. The threshold values for triggering the different icons within a set are configurable, and the icon order is reversible. |
653
654
|[ImageBinarizationMethod](./imagebinarizationmethod)| Specifies the method used to binarize image. |
Copy file name to clipboardExpand all lines: english/javascript-cpp/chartarea/_index.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,8 @@ var uint8Array = workbook.save(SaveFormat.Xlsx);
61
61
| Property | Type | Description |
62
62
| --- | --- | --- |
63
63
|[isInnerMode](#isInnerMode--)| boolean | Indicates whether the size of the plot area size includes the tick marks, and the axis labels. False specifies that the size shall determine the size of the plot area, the tick marks, and the axis labels. |
64
-
|[backgroundMode](#backgroundMode--)| BackgroundMode | Gets and sets the display mode of the background |
64
+
|[backgroundMode](#backgroundMode--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
65
+
|[background](#background--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
65
66
|[shadow](#shadow--)| boolean | True if the frame has a shadow. |
66
67
|[shapeProperties](#shapeProperties--)| ShapePropertyCollection | Readonly. Gets the [ShapeProperties](../shapeproperties/) object. |
67
68
|[isDefaultPosBeSet](#isDefaultPosBeSet--)| boolean | Readonly. Indicates whether default position(DefaultX, DefaultY, DefaultWidth and DefaultHeight) are set. |
@@ -141,13 +142,30 @@ Only for Xlsx file.
141
142
142
143
### backgroundMode {#backgroundMode--}
143
144
144
-
Gets and sets the display mode of the background
145
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
145
146
146
147
```javascript
147
148
backgroundMode : BackgroundMode;
148
149
```
149
150
150
151
152
+
**Remarks**
153
+
154
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillTypeproperty. For example, If you need to set the BackgroundMode to Opaque, you can use the following code:Area.FillFormat.FillType=FillType.Solid; Area.FillFormat.SolidFill.Color=Color.Red; This property will be removed 12 months later since February 2026. Aspose apologizes for any inconvenience you may have experienced.
155
+
156
+
### background {#background--}
157
+
158
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
159
+
160
+
```javascript
161
+
background : BackgroundMode;
162
+
```
163
+
164
+
165
+
**Remarks**
166
+
167
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillTypeproperty. For example, If you need to set the BackgroundMode to Opaque, you can use the following code:Area.FillFormat.FillType=FillType.Solid; Area.FillFormat.SolidFill.Color=Color.Red; This property will be removed 12 months later since JANUARY2012. Aspose apologizes for any inconvenience you may have experienced.
168
+
151
169
### shadow {#shadow--}
152
170
153
171
True if the frame has a shadow.
@@ -157,6 +175,10 @@ shadow : boolean;
157
175
```
158
176
159
177
178
+
**Remarks**
179
+
180
+
Only for charts in xls file.
181
+
160
182
### shapeProperties {#shapeProperties--}
161
183
162
184
Readonly. Gets the [ShapeProperties](../shapeproperties/) object.
Copy file name to clipboardExpand all lines: english/javascript-cpp/chartframe/_index.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,8 @@ class ChartFrame;
20
20
| Property | Type | Description |
21
21
| --- | --- | --- |
22
22
|[isInnerMode](#isInnerMode--)| boolean | Indicates whether the size of the plot area size includes the tick marks, and the axis labels. False specifies that the size shall determine the size of the plot area, the tick marks, and the axis labels. |
23
-
|[backgroundMode](#backgroundMode--)| BackgroundMode | Gets and sets the display mode of the background |
23
+
|[backgroundMode](#backgroundMode--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
24
+
|[background](#background--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
24
25
|[shadow](#shadow--)| boolean | True if the frame has a shadow. |
25
26
|[shapeProperties](#shapeProperties--)| ShapePropertyCollection | Readonly. Gets the [ShapeProperties](../shapeproperties/) object. |
26
27
|[isDefaultPosBeSet](#isDefaultPosBeSet--)| boolean | Readonly. Indicates whether default position(DefaultX, DefaultY, DefaultWidth and DefaultHeight) are set. |
@@ -87,13 +88,30 @@ Only for Xlsx file.
87
88
88
89
### backgroundMode {#backgroundMode--}
89
90
90
-
Gets and sets the display mode of the background
91
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
91
92
92
93
```javascript
93
94
backgroundMode : BackgroundMode;
94
95
```
95
96
96
97
98
+
**Remarks**
99
+
100
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillType property. For example, If you need to set the BackgroundMode to Opaque, you can use the following code: Area.FillFormat.FillType = FillType.Solid; Area.FillFormat.SolidFill.Color = Color.Red; This property will be removed 12 months later since February 2026. Aspose apologizes for any inconvenience you may have experienced.
101
+
102
+
### background {#background--}
103
+
104
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
105
+
106
+
```javascript
107
+
background : BackgroundMode;
108
+
```
109
+
110
+
111
+
**Remarks**
112
+
113
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillType property. For example, If you need to set the BackgroundMode to Opaque, you can use the following code: Area.FillFormat.FillType = FillType.Solid; Area.FillFormat.SolidFill.Color = Color.Red; This property will be removed 12 months later since JANUARY 2012. Aspose apologizes for any inconvenience you may have experienced.
114
+
97
115
### shadow {#shadow--}
98
116
99
117
True if the frame has a shadow.
@@ -103,6 +121,10 @@ shadow : boolean;
103
121
```
104
122
105
123
124
+
**Remarks**
125
+
126
+
Only for charts in xls file.
127
+
106
128
### shapeProperties {#shapeProperties--}
107
129
108
130
Readonly. Gets the [ShapeProperties](../shapeproperties/) object.
Copy file name to clipboardExpand all lines: english/javascript-cpp/charttextframe/_index.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,8 @@ class ChartTextFrame extends ChartFrame;
33
33
|[readingOrder](#readingOrder--)| TextDirectionType | Represents text reading order. |
34
34
|[isResizeShapeToFitText](#isResizeShapeToFitText--)| boolean | Gets or sets whether a shape should be auto-fit to fully contain the text described within it. Auto-fitting is when text within a shape is scaled in order to contain all the text inside. |
35
35
|[isInnerMode](#isInnerMode--)| boolean | Indicates whether the size of the plot area size includes the tick marks, and the axis labels. False specifies that the size shall determine the size of the plot area, the tick marks, and the axis labels. |
36
-
|[backgroundMode](#backgroundMode--)| BackgroundMode | Gets and sets the display mode of the background |
36
+
|[backgroundMode](#backgroundMode--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
37
+
|[background](#background--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
37
38
|[shadow](#shadow--)| boolean | True if the frame has a shadow. |
38
39
|[shapeProperties](#shapeProperties--)| ShapePropertyCollection | Readonly. Gets the [ShapeProperties](../shapeproperties/) object. |
39
40
|[isDefaultPosBeSet](#isDefaultPosBeSet--)| boolean | Readonly. Indicates whether default position(DefaultX, DefaultY, DefaultWidth and DefaultHeight) are set. |
@@ -191,13 +192,30 @@ Only for Xlsx file.
191
192
192
193
### backgroundMode {#backgroundMode--}
193
194
194
-
Gets and sets the display mode of the background
195
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
195
196
196
197
```javascript
197
198
backgroundMode : BackgroundMode;
198
199
```
199
200
200
201
202
+
**Remarks**
203
+
204
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillTypeproperty. For example, If you need to set the BackgroundMode to Opaque, you can use the following code:Area.FillFormat.FillType=FillType.Solid; Area.FillFormat.SolidFill.Color=Color.Red; This property will be removed 12 months later since February 2026. Aspose apologizes for any inconvenience you may have experienced.
205
+
206
+
### background {#background--}
207
+
208
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
209
+
210
+
```javascript
211
+
background : BackgroundMode;
212
+
```
213
+
214
+
215
+
**Remarks**
216
+
217
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillTypeproperty. For example, If you need to set the BackgroundMode to Opaque, you can use the following code:Area.FillFormat.FillType=FillType.Solid; Area.FillFormat.SolidFill.Color=Color.Red; This property will be removed 12 months later since JANUARY2012. Aspose apologizes for any inconvenience you may have experienced.
218
+
201
219
### shadow {#shadow--}
202
220
203
221
True if the frame has a shadow.
@@ -207,6 +225,10 @@ shadow : boolean;
207
225
```
208
226
209
227
228
+
**Remarks**
229
+
230
+
Only for charts in xls file.
231
+
210
232
### shapeProperties {#shapeProperties--}
211
233
212
234
Readonly. Gets the [ShapeProperties](../shapeproperties/) object.
Copy file name to clipboardExpand all lines: english/javascript-cpp/datalabels/_index.md
+28-2Lines changed: 28 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,9 +81,10 @@ for (var i = 0; i < chart.nSeries.count; i++) {
81
81
|[separatorType](#separatorType--)| DataLabelsSeparatorType | Gets or sets the separator type used for the data labels on a chart. |
82
82
|[separatorValue](#separatorValue--)| string | Gets or sets the separator value used for the data labels on a chart. |
83
83
|[position](#position--)| LabelPositionType | Represents the position of the data label. |
84
-
|[isNeverOverlap](#isNeverOverlap--)| boolean | Indicates whether the datalabels display never overlap. (For Pie chart)|
84
+
|[isNeverOverlap](#isNeverOverlap--)| boolean | Indicates whether datalabels never overlap when performing Pie Chart to image. Note: this property is only meaningful when Pie Chart to image.|
85
85
|[shapeType](#shapeType--)| DataLabelShapeType | Gets or sets shape type of data label. |
86
86
|[isInnerMode](#isInnerMode--)| boolean | Indicates whether the size of the plot area size includes the tick marks, and the axis labels. False specifies that the size shall determine the size of the plot area, the tick marks, and the axis labels. |
87
+
|[background](#background--)| BackgroundMode | Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
87
88
|[shadow](#shadow--)| boolean | True if the frame has a shadow. |
88
89
|[shapeProperties](#shapeProperties--)| ShapePropertyCollection | Readonly. Gets the [ShapeProperties](../shapeproperties/) object. |
89
90
|[isDefaultPosBeSet](#isDefaultPosBeSet--)| boolean | Readonly. Indicates whether default position(DefaultX, DefaultY, DefaultWidth and DefaultHeight) are set. |
@@ -299,7 +300,7 @@ position : LabelPositionType;
299
300
300
301
### isNeverOverlap {#isNeverOverlap--}
301
302
302
-
Indicates whether the datalabels display never overlap. (For Pie chart)
303
+
Indicates whether datalabels never overlap when performing Pie Chart to image. Note: this property is only meaningful when Pie Chart to image.
303
304
304
305
```javascript
305
306
isNeverOverlap : boolean;
@@ -328,6 +329,19 @@ isInnerMode : boolean;
328
329
329
330
Only for Xlsx file.
330
331
332
+
### background {#background--}
333
+
334
+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
335
+
336
+
```javascript
337
+
background : BackgroundMode;
338
+
```
339
+
340
+
341
+
**Remarks**
342
+
343
+
NOTE: This member is now obsolete. Instead, please use ChartFrame.Area.FillFormat.FillType property. For example, If you need to set the BackgroundMode to Opaque, you can use the following code: Area.FillFormat.FillType = FillType.Solid; Area.FillFormat.SolidFill.Color = Color.Red; This property will be removed 12 months later since JANUARY 2012. Aspose apologizes for any inconvenience you may have experienced.
344
+
331
345
### shadow {#shadow--}
332
346
333
347
True if the frame has a shadow.
@@ -337,6 +351,10 @@ shadow : boolean;
337
351
```
338
352
339
353
354
+
**Remarks**
355
+
356
+
Only for charts in xls file.
357
+
340
358
### shapeProperties {#shapeProperties--}
341
359
342
360
Readonly. Gets the [ShapeProperties](../shapeproperties/) object.
@@ -620,6 +638,10 @@ getText() : string;
620
638
```
621
639
622
640
641
+
**Remarks**
642
+
643
+
Only works when this is a data label of a chart point.
Copy file name to clipboardExpand all lines: english/javascript-cpp/dbfsaveoptions/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ class DbfSaveOptions extends SaveOptions;
35
35
|[createDirectory](#createDirectory--)| boolean | If true and the directory does not exist, the directory will be automatically created before saving the file. |
36
36
|[sortNames](#sortNames--)| boolean | Indicates whether sorting defined names before saving file. |
37
37
|[sortExternalNames](#sortExternalNames--)| boolean | Indicates whether sorting external defined names before saving file. |
38
-
|[refreshChartCache](#refreshChartCache--)| boolean | Indicates whether refreshing chart cache data |
38
+
|[refreshChartCache](#refreshChartCache--)| boolean | Indicates whether to cache the latest data of the chart.|
39
39
|[warningCallback](#warningCallback--)| IWarningCallback | Gets or sets warning callback. |
40
40
|[checkExcelRestriction](#checkExcelRestriction--)| boolean | Whether check restriction of excel file when user modify cells related objects. For example, excel does not allow inputting string value longer than 32K. When you input a value longer than 32K, it will be truncated. |
41
41
|[updateSmartArt](#updateSmartArt--)| boolean | Indicates whether updating smart art setting. The default value is false. |
@@ -163,7 +163,7 @@ sortExternalNames : boolean;
163
163
164
164
### refreshChartCache {#refreshChartCache--}
165
165
166
-
Indicates whether refreshing chart cache data
166
+
Indicates whether to cache the latest dataof the chart.
Copy file name to clipboardExpand all lines: english/javascript-cpp/difsaveoptions/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ class DifSaveOptions extends SaveOptions;
34
34
|[createDirectory](#createDirectory--)| boolean | If true and the directory does not exist, the directory will be automatically created before saving the file. |
35
35
|[sortNames](#sortNames--)| boolean | Indicates whether sorting defined names before saving file. |
36
36
|[sortExternalNames](#sortExternalNames--)| boolean | Indicates whether sorting external defined names before saving file. |
37
-
|[refreshChartCache](#refreshChartCache--)| boolean | Indicates whether refreshing chart cache data |
37
+
|[refreshChartCache](#refreshChartCache--)| boolean | Indicates whether to cache the latest data of the chart.|
38
38
|[warningCallback](#warningCallback--)| IWarningCallback | Gets or sets warning callback. |
39
39
|[checkExcelRestriction](#checkExcelRestriction--)| boolean | Whether check restriction of excel file when user modify cells related objects. For example, excel does not allow inputting string value longer than 32K. When you input a value longer than 32K, it will be truncated. |
40
40
|[updateSmartArt](#updateSmartArt--)| boolean | Indicates whether updating smart art setting. The default value is false. |
@@ -153,7 +153,7 @@ sortExternalNames : boolean;
153
153
154
154
### refreshChartCache {#refreshChartCache--}
155
155
156
-
Indicates whether refreshing chart cache data
156
+
Indicates whether to cache the latest dataof the chart.
0 commit comments