Skip to content

Commit 8d51f5a

Browse files
release Aspose.Cells for CPP 26.3
1 parent fc46ac3 commit 8d51f5a

66 files changed

Lines changed: 414 additions & 110 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/cpp/aspose.cells.charts/axis/getbaseunitscale/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ TimeUnit Aspose::Cells::Charts::Axis::GetBaseUnitScale()
1919
## Remarks
2020

2121

22-
Setting this property only takes effect when the CategoryType property is set to TimeScale.
22+
Only takes effect when the CategoryType property is set to TimeScale.
2323
## See Also
2424

2525
* Enum [TimeUnit](../../timeunit/)

english/cpp/aspose.cells.charts/axis/getbins/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Represents bins on a chart(Histogram/Pareto) axis.
1616
AxisBins Aspose::Cells::Charts::Axis::GetBins()
1717
```
1818

19+
## Remarks
20+
21+
22+
Only for Histogram or Pareto chart.
1923
## See Also
2024

2125
* Class [AxisBins](../../axisbins/)

english/cpp/aspose.cells.charts/axis/setbaseunitscale/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void Aspose::Cells::Charts::Axis::SetBaseUnitScale(TimeUnit value)
1919
## Remarks
2020
2121
22-
Setting this property only takes effect when the CategoryType property is set to TimeScale.
22+
Only takes effect when the CategoryType property is set to TimeScale.
2323
## See Also
2424
2525
* Enum [TimeUnit](../../timeunit/)

english/cpp/aspose.cells.charts/axisbins/isautomatic/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Indicates whether the axis bins are automatic.
1616
bool Aspose::Cells::Charts::AxisBins::IsAutomatic()
1717
```
1818

19+
## Remarks
20+
21+
22+
If Width or [Count](../../../aspose.cells/consolidationfunction/) is called, the value will be false.
1923
## See Also
2024

2125
* Class [AxisBins](../)

english/cpp/aspose.cells.charts/axisbins/setisautomatic/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Indicates whether the axis bins are automatic.
1616
void Aspose::Cells::Charts::AxisBins::SetIsAutomatic(bool value)
1717
```
1818
19+
## Remarks
20+
21+
22+
If Width or [Count](../../../aspose.cells/consolidationfunction/) is called, the value will be false.
1923
## See Also
2024
2125
* Class [AxisBins](../)

english/cpp/aspose.cells.charts/chart/getchartdatarange/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The data source.
2424

2525

2626

27-
Only supports range.
27+
Only supports range. If the Series.Values, [Name](../../../aspose.cells/name/), and XValues are in a continuous range, a range contains them will be returned.
2828
## See Also
2929

3030
* Class [U16String](../../../aspose.cells/u16string/)

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class ChartArea : public Aspose::Cells::Charts::ChartFrame
2727
| [ChartFrame(const ChartFrame\& src)](../chartframe/chartframe/) | Copy constructor. |
2828
| [GetArea()](../chartframe/getarea/) | Gets the [area](../). |
2929
| [GetAutoScaleFont()](../chartframe/getautoscalefont/) | True if the text in the object changes font size when the object size changes. The default value is True. |
30-
| [GetBackgroundMode()](../chartframe/getbackgroundmode/) | Gets and sets the display mode of the background. |
30+
| [GetBackground()](../chartframe/getbackground/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
31+
| [GetBackgroundMode()](../chartframe/getbackgroundmode/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
3132
| [GetBorder()](../chartframe/getborder/) | Gets the [border](../). |
3233
| [GetDefaultHeight()](../chartframe/getdefaultheight/) | **(Deprecated)** Represents height of default position in units of 1/4000 of the chart area. |
3334
| [GetDefaultHeightRatioToChart()](../chartframe/getdefaultheightratiotochart/) | Represents height of default position in units of Fraction of the chart area. |
@@ -61,7 +62,8 @@ class ChartArea : public Aspose::Cells::Charts::ChartFrame
6162
| [operator=(const ChartArea\& src)](./operator_asm/) | operator= |
6263
| [operator=(const ChartFrame\& src)](../chartframe/operator_asm/) | operator= |
6364
| [SetAutoScaleFont(bool value)](../chartframe/setautoscalefont/) | True if the text in the object changes font size when the object size changes. The default value is True. |
64-
| [SetBackgroundMode(BackgroundMode value)](../chartframe/setbackgroundmode/) | Gets and sets the display mode of the background. |
65+
| [SetBackground(BackgroundMode value)](../chartframe/setbackground/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
66+
| [SetBackgroundMode(BackgroundMode value)](../chartframe/setbackgroundmode/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
6567
| [SetHeight(int32_t value)](./setheight/) | **(Deprecated)** Gets or sets the vertical offset from its lower right corner row, in units of 1/4000 of the chart area. |
6668
| [SetHeightPixel(int32_t value)](../chartframe/setheightpixel/) | Gets or sets the height of frame in units of Pixel. |
6769
| [SetHeightRatioToChart(double value)](./setheightratiotochart/) | Gets or sets the vertical offset from its lower right corner row, in units of ratio of the chart area. |

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linktitle: ChartFrame
44
second_title: Aspose.Cells for C++ API Reference
55
description: 'Aspose::Cells::Charts::ChartFrame class. Encapsulates the object that represents the frame object in a chart in C++.'
66
type: docs
7-
weight: 800
7+
weight: 900
88
url: /cpp/aspose.cells.charts/chartframe/
99
---
1010
## ChartFrame class
@@ -24,7 +24,8 @@ class ChartFrame
2424
| [ChartFrame(const ChartFrame\& src)](./chartframe/) | Copy constructor. |
2525
| [GetArea()](./getarea/) | Gets the [area](../). |
2626
| [GetAutoScaleFont()](./getautoscalefont/) | True if the text in the object changes font size when the object size changes. The default value is True. |
27-
| [GetBackgroundMode()](./getbackgroundmode/) | Gets and sets the display mode of the background. |
27+
| [GetBackground()](./getbackground/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
28+
| [GetBackgroundMode()](./getbackgroundmode/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
2829
| [GetBorder()](./getborder/) | Gets the [border](../). |
2930
| [GetDefaultHeight()](./getdefaultheight/) | **(Deprecated)** Represents height of default position in units of 1/4000 of the chart area. |
3031
| [GetDefaultHeightRatioToChart()](./getdefaultheightratiotochart/) | Represents height of default position in units of Fraction of the chart area. |
@@ -57,7 +58,8 @@ class ChartFrame
5758
| explicit [operator bool()](./operator_bool/) const | operator bool() |
5859
| [operator=(const ChartFrame\& src)](./operator_asm/) | operator= |
5960
| [SetAutoScaleFont(bool value)](./setautoscalefont/) | True if the text in the object changes font size when the object size changes. The default value is True. |
60-
| [SetBackgroundMode(BackgroundMode value)](./setbackgroundmode/) | Gets and sets the display mode of the background. |
61+
| [SetBackground(BackgroundMode value)](./setbackground/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
62+
| [SetBackgroundMode(BackgroundMode value)](./setbackgroundmode/) | **(Deprecated)** Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions. |
6163
| [SetHeight(int32_t value)](./setheight/) | **(Deprecated)** Gets or sets the height of frame in units of 1/4000 of the chart area. |
6264
| [SetHeightPixel(int32_t value)](./setheightpixel/) | Gets or sets the height of frame in units of Pixel. |
6365
| [SetHeightRatioToChart(double value)](./setheightratiotochart/) | Gets or sets the height of frame in units of ratio of the chart area. |
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: Aspose::Cells::Charts::ChartFrame::GetBackground method
3+
linktitle: GetBackground
4+
second_title: Aspose.Cells for C++ API Reference
5+
description: 'Aspose::Cells::Charts::ChartFrame::GetBackground method. Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions in C++.'
6+
type: docs
7+
weight: 1000
8+
url: /cpp/aspose.cells.charts/chartframe/getbackground/
9+
---
10+
## ChartFrame::GetBackground method
11+
12+
13+
Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions.
14+
15+
16+
>Deprecated
17+
>
18+
>Use ChartFrame.Area.FillFormat.FillType property instead.
19+
```cpp
20+
BackgroundMode Aspose::Cells::Charts::ChartFrame::GetBackground()
21+
```
22+
23+
## Remarks
24+
25+
26+
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](../../../aspose.cells/color/red/); This property will be removed 12 months later since JANUARY 2012. **Aspose** apologizes for any inconvenience you may have experienced.
27+
28+
29+
## See Also
30+
31+
* Enum [BackgroundMode](../../backgroundmode/)
32+
* Class [ChartFrame](../)
33+
* Namespace [Aspose::Cells::Charts](../../)
34+
* Library [Aspose.Cells for C++](../../../)

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

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,30 @@
22
title: Aspose::Cells::Charts::ChartFrame::GetBackgroundMode method
33
linktitle: GetBackgroundMode
44
second_title: Aspose.Cells for C++ API Reference
5-
description: 'Aspose::Cells::Charts::ChartFrame::GetBackgroundMode method. Gets and sets the display mode of the background in C++.'
5+
description: 'Aspose::Cells::Charts::ChartFrame::GetBackgroundMode method. Gets and sets the display mode of the background. This property is only valid in Excel 2003 or earlier versions in C++.'
66
type: docs
77
weight: 800
88
url: /cpp/aspose.cells.charts/chartframe/getbackgroundmode/
99
---
1010
## ChartFrame::GetBackgroundMode method
1111

1212

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

15+
16+
>Deprecated
17+
>
18+
>Use ChartFrame.Area.FillFormat.FillType property instead.
1519
```cpp
1620
BackgroundMode Aspose::Cells::Charts::ChartFrame::GetBackgroundMode()
1721
```
1822

23+
## Remarks
24+
25+
26+
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](../../../aspose.cells/color/red/); This property will be removed 12 months later since February 2026. **Aspose** apologizes for any inconvenience you may have experienced.
27+
28+
1929
## See Also
2030

2131
* Enum [BackgroundMode](../../backgroundmode/)

0 commit comments

Comments
 (0)