Skip to content

Commit 9cbff7c

Browse files
committed
26.3
1 parent 938acc1 commit 9cbff7c

125 files changed

Lines changed: 450 additions & 124 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

english/aspose.cells.charts/axis/base_unit_scale/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Represents the base unit scale for the category axis.
1616
### Remarks
1717

1818

19-
Setting this property only takes effect when the CategoryType property is set to TimeScale.
19+
Only takes effect when the CategoryType property is set to TimeScale.
2020
### Definition:
2121
```python
2222
@property

english/aspose.cells.charts/axis/bins/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ is_root: false
1212

1313

1414
Represents bins on a chart(Histogram/Pareto) axis
15+
16+
### Remarks
17+
18+
19+
Only for Histogram or Pareto chart.
1520
### Definition:
1621
```python
1722
@property

english/aspose.cells.charts/axisbins/is_automatic/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ is_root: false
1212

1313

1414
Indicates whether the axis bins are automatic.
15+
16+
### Remarks
17+
18+
19+
If [`AxisBins.width`](/cells/python-net/aspose.cells.charts/axisbins#width) or [`AxisBins.count`](/cells/python-net/aspose.cells.charts/axisbins#count) is called, the value will be false.
1520
### Definition:
1621
```python
1722
@property

english/aspose.cells.charts/chart/get_chart_data_range/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def get_chart_data_range(self):
2929
### Remarks
3030

3131
Only supports range.
32+
If the Series.Values, Name, and XValues are in a continuous range, a range contains them will be returned.
3233

3334

3435
### See Also

english/aspose.cells.charts/chartarea/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ The ChartArea type exposes the following members:
3131
| [text_options](/cells/python-net/aspose.cells.charts/chartarea/text_options) | Gets and sets the options of the text. |
3232
| [font](/cells/python-net/aspose.cells.charts/chartarea/font) | Gets a [`ChartArea.font`](/cells/python-net/aspose.cells.charts/chartarea#font) object of the specified chartarea object. |
3333
| [auto_scale_font](/cells/python-net/aspose.cells.charts/chartarea/auto_scale_font) | True if the text in the object changes font size when the object size changes. The default value is True. |
34-
| [background_mode](/cells/python-net/aspose.cells.charts/chartarea/background_mode) | Gets and sets the display mode of the background |
35-
| [background](/cells/python-net/aspose.cells.charts/chartarea/background) | Gets and sets the display mode of the background |
34+
| [background_mode](/cells/python-net/aspose.cells.charts/chartarea/background_mode) | Gets and sets the display mode of the background.<br/>This property is only valid in Excel 2003 or earlier versions. |
35+
| [background](/cells/python-net/aspose.cells.charts/chartarea/background) | Gets and sets the display mode of the background.<br/>This property is only valid in Excel 2003 or earlier versions. |
3636
| [is_automatic_size](/cells/python-net/aspose.cells.charts/chartarea/is_automatic_size) | Indicates whether the chart frame is automatic sized. |
3737
| [x](/cells/python-net/aspose.cells.charts/chartarea/x) | Gets or gets the horizontal offset from its upper left corner column, in units of 1/4000 of the chart area. |
3838
| [y](/cells/python-net/aspose.cells.charts/chartarea/y) | Gets or gets the vertical offset from its upper left corner row, in units of 1/4000 of the chart area. |

english/aspose.cells.charts/chartarea/background/_index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ is_root: false
1111
## background property
1212

1313

14-
Gets and sets the display mode of the background
14+
Gets and sets the display mode of the background.
15+
This property is only valid in Excel 2003 or earlier versions.
1516

1617
### Remarks
1718

1819

1920
NOTE: This member is now obsolete. Instead,
20-
please use ChartFrame.BackgroundMode property.
21+
please use ChartFrame.Area.FillFormat.FillType property. For example,
22+
If you need to set the BackgroundMode to Opaque, you can use the following code:
23+
Area.FillFormat.FillType = FillType.Solid;
24+
Area.FillFormat.SolidFill.Color = Color.Red;
2125
This property will be removed 12 months later since JANUARY 2012.
2226
Aspose apologizes for any inconvenience you may have experienced.
2327
### Definition:

english/aspose.cells.charts/chartarea/background_mode/_index.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,19 @@ is_root: false
1111
## background_mode property
1212

1313

14-
Gets and sets the display mode of the background
14+
Gets and sets the display mode of the background.
15+
This property is only valid in Excel 2003 or earlier versions.
16+
17+
### Remarks
18+
19+
20+
NOTE: This member is now obsolete. Instead,
21+
please use ChartFrame.Area.FillFormat.FillType property. For example,
22+
If you need to set the BackgroundMode to Opaque, you can use the following code:
23+
Area.FillFormat.FillType = FillType.Solid;
24+
Area.FillFormat.SolidFill.Color = Color.Red;
25+
This property will be removed 12 months later since February 2026.
26+
Aspose apologizes for any inconvenience you may have experienced.
1527
### Definition:
1628
```python
1729
@property

english/aspose.cells.charts/chartarea/shadow/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ is_root: false
1212

1313

1414
True if the frame has a shadow.
15+
16+
### Remarks
17+
18+
19+
Only for charts in xls file.
1520
### Definition:
1621
```python
1722
@property

english/aspose.cells.charts/chartframe/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ The ChartFrame type exposes the following members:
2626
| [text_options](/cells/python-net/aspose.cells.charts/chartframe/text_options) | Gets and sets the options of the text. |
2727
| [font](/cells/python-net/aspose.cells.charts/chartframe/font) | Gets a [`ChartFrame.font`](/cells/python-net/aspose.cells.charts/chartframe#font) object of the specified ChartFrame object. |
2828
| [auto_scale_font](/cells/python-net/aspose.cells.charts/chartframe/auto_scale_font) | True if the text in the object changes font size when the object size changes. The default value is True. |
29-
| [background_mode](/cells/python-net/aspose.cells.charts/chartframe/background_mode) | Gets and sets the display mode of the background |
30-
| [background](/cells/python-net/aspose.cells.charts/chartframe/background) | Gets and sets the display mode of the background |
29+
| [background_mode](/cells/python-net/aspose.cells.charts/chartframe/background_mode) | Gets and sets the display mode of the background.<br/>This property is only valid in Excel 2003 or earlier versions. |
30+
| [background](/cells/python-net/aspose.cells.charts/chartframe/background) | Gets and sets the display mode of the background.<br/>This property is only valid in Excel 2003 or earlier versions. |
3131
| [is_automatic_size](/cells/python-net/aspose.cells.charts/chartframe/is_automatic_size) | Indicates whether the chart frame is automatic sized. |
3232
| [x](/cells/python-net/aspose.cells.charts/chartframe/x) | Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area. |
3333
| [y](/cells/python-net/aspose.cells.charts/chartframe/y) | Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area. |

english/aspose.cells.charts/chartframe/background/_index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ is_root: false
1111
## background property
1212

1313

14-
Gets and sets the display mode of the background
14+
Gets and sets the display mode of the background.
15+
This property is only valid in Excel 2003 or earlier versions.
1516

1617
### Remarks
1718

1819

1920
NOTE: This member is now obsolete. Instead,
20-
please use ChartFrame.BackgroundMode property.
21+
please use ChartFrame.Area.FillFormat.FillType property. For example,
22+
If you need to set the BackgroundMode to Opaque, you can use the following code:
23+
Area.FillFormat.FillType = FillType.Solid;
24+
Area.FillFormat.SolidFill.Color = Color.Red;
2125
This property will be removed 12 months later since JANUARY 2012.
2226
Aspose apologizes for any inconvenience you may have experienced.
2327
### Definition:

0 commit comments

Comments
 (0)