Skip to content

Commit 6982009

Browse files
release Aspose.Cells for CPP 25.8
1 parent dab07d4 commit 6982009

File tree

73 files changed

+946
-94
lines changed

Some content is hidden

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

73 files changed

+946
-94
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ url: /cpp/aspose.cells.charts/
5959
| [Bar3DShapeType](./bar3dshapetype/) | Represents the shape used with the 3-D bar or column chart. |
6060
| [BubbleSizeRepresents](./bubblesizerepresents/) | Represents what the bubble size represents on a bubble chart. |
6161
| [CategoryType](./categorytype/) | Represents the category axis type. |
62+
| [ChartColorPaletteType](./chartcolorpalettetype/) | Enumerates all Monochromatic Palettes used in Excel chart. |
6263
| [ChartLineFormattingType](./chartlineformattingtype/) | Represents line format type of chart line. |
6364
| [ChartMarkerType](./chartmarkertype/) | Represents the marker style in a line chart, scatter chart, or radar chart. |
6465
| [ChartSplitType](./chartsplittype/) | Represents the way the two sections of either a pie of pie chart or a bar of pie chart are split. |
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: Aspose::Cells::Charts::ChartColorPaletteType enum
3+
linktitle: ChartColorPaletteType
4+
second_title: Aspose.Cells for C++ API Reference
5+
description: 'Aspose::Cells::Charts::ChartColorPaletteType enum. Enumerates all Monochromatic Palettes used in Excel chart in C++.'
6+
type: docs
7+
weight: 4200
8+
url: /cpp/aspose.cells.charts/chartcolorpalettetype/
9+
---
10+
## ChartColorPaletteType enum
11+
12+
13+
Enumerates all Monochromatic Palettes used in Excel chart.
14+
15+
```cpp
16+
enum class ChartColorPaletteType
17+
```
18+
19+
### Values
20+
21+
| Name | Value | Description |
22+
| --- | --- | --- |
23+
| MonochromaticPalette1 | 1 | <br>accent1 theme color gradient, dark to light. |
24+
| MonochromaticPalette2 | 2 | <br>accent2 theme color gradient, dark to light. |
25+
| MonochromaticPalette3 | 3 | <br>accent3 theme color gradient, dark to light. |
26+
| MonochromaticPalette4 | 4 | <br>accent4 theme color gradient, dark to light. |
27+
| MonochromaticPalette5 | 5 | <br>accent5 theme color gradient, dark to light. |
28+
| MonochromaticPalette6 | 6 | <br>accent6 theme color gradient, dark to light. |
29+
| MonochromaticPalette7 | 7 | <br>accent7 theme color gradient. |
30+
| MonochromaticPalette8 | 8 | <br>accent1 theme color gradient, light to dark. |
31+
| MonochromaticPalette9 | 9 | <br>accent2 theme color gradient, light to dark. |
32+
| MonochromaticPalette10 | 10 | <br>accent3 theme color gradient, light to dark. |
33+
| MonochromaticPalette11 | 11 | <br>accent4 theme color gradient, light to dark. |
34+
| MonochromaticPalette12 | 12 | <br>accent5 theme color gradient, light to dark. |
35+
| MonochromaticPalette13 | 13 | <br>accent6 theme color gradient, light to dark. |
36+
37+
## See Also
38+
39+
* Namespace [Aspose::Cells::Charts](../)
40+
* Library [Aspose.Cells for C++](../../)

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class SeriesCollection
2626
| [Add(const char16_t* area, bool isVertical, bool checkLabels)](./add/) | Adds the [Series](../series/) collection to a chart. |
2727
| [AddR1C1(const U16String\& area, bool isVertical)](./addr1c1/) | Adds the [Series](../series/) collection to a chart. |
2828
| [AddR1C1(const char16_t* area, bool isVertical)](./addr1c1/) | Adds the [Series](../series/) collection to a chart. |
29+
| [ChangeColors(ChartColorPaletteType type)](./changecolors/) | Set Monochromatic Palette for chart series. |
2930
| [ChangeSeriesOrder(int32_t sourceIndex, int32_t destIndex)](./changeseriesorder/) | **(Deprecated)** Directly changes the orders of the two series. |
3031
| [Clear()](./clear/) | Clears the collection. |
3132
| [Get(int32_t index)](./get/) | Gets the [Series](../series/) element at the specified index. |
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Aspose::Cells::Charts::SeriesCollection::ChangeColors method
3+
linktitle: ChangeColors
4+
second_title: Aspose.Cells for C++ API Reference
5+
description: 'Aspose::Cells::Charts::SeriesCollection::ChangeColors method. Set Monochromatic Palette for chart series in C++.'
6+
type: docs
7+
weight: 2100
8+
url: /cpp/aspose.cells.charts/seriescollection/changecolors/
9+
---
10+
## SeriesCollection::ChangeColors method
11+
12+
13+
Set Monochromatic Palette for chart series.
14+
15+
```cpp
16+
void Aspose::Cells::Charts::SeriesCollection::ChangeColors(ChartColorPaletteType type)
17+
```
18+
19+
20+
| Parameter | Type | Description |
21+
| --- | --- | --- |
22+
| type | ChartColorPaletteType | The Monochromatic Type. |
23+
24+
## See Also
25+
26+
* Class [Vector](../../../aspose.cells/vector/)
27+
* Enum [ChartColorPaletteType](../../chartcolorpalettetype/)
28+
* Class [SeriesCollection](../)
29+
* Namespace [Aspose::Cells::Charts](../../)
30+
* Library [Aspose.Cells for C++](../../../)

english/cpp/aspose.cells.drawing/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ url: /cpp/aspose.cells.drawing/
7070
| [ShapeGuideCollection](./shapeguidecollection/) | Encapsulates a collection of shape guide. |
7171
| [ShapePath](./shapepath/) | Represents a creation path consisting of a series of moves, lines and curves that when combined will form a geometric shape. |
7272
| [ShapePathCollection](./shapepathcollection/) | Represents path collection information in NotPrimitive autoshape. |
73-
| [ShapePathPoint](./shapepathpoint/) | Represents an x-y coordinate within the path coordinate space. |
73+
| [ShapePathPoint](./shapepathpoint/) | Specify position coordinates or angle markers. Position coordinates represent the coordinates of a path in a coordinate space (e.g. X/Y). Angle markers indicate angular changes in a path (e.g. the start and swing angles of an arc). |
7474
| [ShapePathPointCollection](./shapepathpointcollection/) | Represents all shape path points. |
7575
| [ShapePropertyCollection](./shapepropertycollection/) | This class specifies the visual shape properties for a chart element or shape. |
7676
| [ShapeSegmentPath](./shapesegmentpath/) | Represents a segment path in a path of the freeform. |
@@ -133,6 +133,7 @@ url: /cpp/aspose.cells.drawing/
133133
| [SelectionType](./selectiontype/) | The selection type of list box. |
134134
| [ShapeAnchorType](./shapeanchortype/) | Represents the anchor type. |
135135
| [ShapeLockType](./shapelocktype/) | Represents type of the property to be locked. |
136+
| [ShapePathPointValueType](./shapepathpointvaluetype/) | Specifies the value type of [ShapePathPoint](./shapepathpoint/) object. |
136137
| [ShapePathType](./shapepathtype/) | Represents path segment type. |
137138
| [SignatureType](./signaturetype/) | Specifies the signature type. |
138139
| [TextOverflowType](./textoverflowtype/) | Represents the way the text vertical or horizontal overflow. |

english/cpp/aspose.cells.drawing/shapepath/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ class ShapePath
2222
| --- | --- |
2323
| [ArcTo(float wR, float hR, float stAng, float swAng)](./arcto/) | Appends an elliptical arc to the current figure. The starting point is the end point of the current figure. |
2424
| [Close()](./close/) | Closes the current figure and starts a new figure. If the current figure contains a sequence of connected lines and curves, the method closes the loop by connecting a line from the endpoint to the starting point. |
25-
| [CubicBezierTo(float ctrX1, float ctrY1, float ctrX2, float ctrY2, float endX, float endY)](./cubicbezierto/) | Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure. |
25+
| [CubicBezierTo(float ctrX1, float ctrY1, float ctrX2, float ctrY2, float endX, float endY)](./cubicbezierto/) | Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.Unit: Pixel. |
2626
| [GetHeightPixel()](./getheightpixel/) | Gets the height of this path in unit of pixels. |
2727
| [GetPathSegementList()](./getpathsegementlist/) | Gets [ShapeSegmentPathCollection](../shapesegmentpathcollection/) list. |
2828
| [GetWidthPixel()](./getwidthpixel/) | Gets the width of this path in unit of pixels. |
2929
| [IsNull()](./isnull/) const | Checks whether the implementation object is nullptr. |
30-
| [LineTo(float x, float y)](./lineto/) | Appends a line segment to the current figure. The starting point is the end point of the current figure. |
31-
| [MoveTo(float x, float y)](./moveto/) | Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure. |
30+
| [LineTo(float x, float y)](./lineto/) | Appends a line segment to the current figure. The starting point is the end point of the current figure.Unit: Pixel. |
31+
| [MoveTo(float x, float y)](./moveto/) | Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure.Unit: Pixel. |
3232
| explicit [operator bool()](./operator_bool/) const | operator bool() |
3333
| [operator=(const ShapePath\& src)](./operator_asm/) | operator= |
3434
| [SetHeightPixel(int32_t value)](./setheightpixel/) | Gets the height of this path in unit of pixels. |

english/cpp/aspose.cells.drawing/shapepath/arcto/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ void Aspose::Cells::Drawing::ShapePath::ArcTo(float wR, float hR, float stAng, f
2121
| --- | --- | --- |
2222
| wR | float | The half-width of the rectangular area of ​​the ellipse that draws the arc(Unit: Pixel). |
2323
| hR | float | The half-height of the rectangular area of ​​the ellipse that draws the arc(Unit: Pixel). |
24-
| stAng | float | The starting angle of the arc, measured in degrees clockwise from the x-axis(Unit: Degree). |
25-
| swAng | float | The angle between startAngle and the end of the arc.(Unit: Degree) |
24+
| stAng | float | The starting angle of the arc, measured in degrees clockwise from the x-axis(Unit: Degree). This angle will specify what angle along the supposed circle path will be used as the start position for drawing the arc. This start angle will be locked to the last known pen position in the shape path. Thus guaranteeing a continuos shape path. |
25+
| swAng | float | The swing angle for an arc. This angle will specify how far angle-wise along the supposed cicle path the arc will be extended. The extension from the start angle will always be in the clockwise direction around the supposed circle.(Unit: Degree) |
2626
2727
## See Also
2828

english/cpp/aspose.cells.drawing/shapepath/cubicbezierto/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Aspose::Cells::Drawing::ShapePath::CubicBezierTo method
33
linktitle: CubicBezierTo
44
second_title: Aspose.Cells for C++ API Reference
5-
description: 'Aspose::Cells::Drawing::ShapePath::CubicBezierTo method. Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure in C++.'
5+
description: 'Aspose::Cells::Drawing::ShapePath::CubicBezierTo method. Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.Unit: Pixel in C++.'
66
type: docs
77
weight: 1300
88
url: /cpp/aspose.cells.drawing/shapepath/cubicbezierto/
99
---
1010
## ShapePath::CubicBezierTo method
1111

1212

13-
Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.
13+
Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.Unit: Pixel.
1414

1515
```cpp
1616
void Aspose::Cells::Drawing::ShapePath::CubicBezierTo(float ctrX1, float ctrY1, float ctrX2, float ctrY2, float endX, float endY)

english/cpp/aspose.cells.drawing/shapepath/lineto/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Aspose::Cells::Drawing::ShapePath::LineTo method
33
linktitle: LineTo
44
second_title: Aspose.Cells for C++ API Reference
5-
description: 'Aspose::Cells::Drawing::ShapePath::LineTo method. Appends a line segment to the current figure. The starting point is the end point of the current figure in C++.'
5+
description: 'Aspose::Cells::Drawing::ShapePath::LineTo method. Appends a line segment to the current figure. The starting point is the end point of the current figure.Unit: Pixel in C++.'
66
type: docs
77
weight: 1200
88
url: /cpp/aspose.cells.drawing/shapepath/lineto/
99
---
1010
## ShapePath::LineTo method
1111

1212

13-
Appends a line segment to the current figure. The starting point is the end point of the current figure.
13+
Appends a line segment to the current figure. The starting point is the end point of the current figure.Unit: Pixel.
1414

1515
```cpp
1616
void Aspose::Cells::Drawing::ShapePath::LineTo(float x, float y)

english/cpp/aspose.cells.drawing/shapepath/moveto/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Aspose::Cells::Drawing::ShapePath::MoveTo method
33
linktitle: MoveTo
44
second_title: Aspose.Cells for C++ API Reference
5-
description: 'Aspose::Cells::Drawing::ShapePath::MoveTo method. Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure in C++.'
5+
description: 'Aspose::Cells::Drawing::ShapePath::MoveTo method. Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure.Unit: Pixel in C++.'
66
type: docs
77
weight: 1100
88
url: /cpp/aspose.cells.drawing/shapepath/moveto/
99
---
1010
## ShapePath::MoveTo method
1111

1212

13-
Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure.
13+
Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure.Unit: Pixel.
1414

1515
```cpp
1616
void Aspose::Cells::Drawing::ShapePath::MoveTo(float x, float y)

0 commit comments

Comments
 (0)