Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions english/cpp/aspose.cells.charts/series/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Series
| [GetBorder()](./getborder/) | Represents border of [Series](./) object. |
| [GetBubbleScale()](./getbubblescale/) | Gets or sets the scale factor for bubbles in the specified chart group. It can be an integer value from 0 (zero) to 300, corresponding to a percentage of the default size. Applies only to bubble charts. |
| [GetBubbleSizes()](./getbubblesizes/) | Gets or sets the bubble sizes values of the chart series. |
| [GetCategoryValues()](./getcategoryvalues/) | Gets the category values of the series. |
| [GetCategoryValues()](./getcategoryvalues/) | Gets the actual category values that are used to plot every point of this series in the chart. |
| [GetCountOfDataValues()](./getcountofdatavalues/) | Gets the number of the data values. |
| [GetDataLabels()](./getdatalabels/) | Represents the [DataLabels](../datalabels/) object for the specified ASeries. |
| [GetDisplayName()](./getdisplayname/) | Gets the series's name that displays on the chart graph. |
Expand All @@ -51,7 +51,7 @@ class Series
| [GetOverlap()](./getoverlap/) | Specifies how bars and columns are positioned. Can be a value between – 100 and 100. Applies only to 2-D bar and 2-D column charts. |
| [GetPlotOnSecondAxis()](./getplotonsecondaxis/) | Indicates if this series is plotted on second value axis. |
| [GetPoints()](./getpoints/) | Gets the collection of points in a series in a chart. |
| [GetPointValues()](./getpointvalues/) | Gets the values for the points of the series. |
| [GetPointValues()](./getpointvalues/) | Gets the actual values that are used to plot every point of this series in the chart. |
| [GetSecondPlotSize()](./getsecondplotsize/) | Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart, as a percentage of the size of the primary pie. Can be a value from 5 to 200. |
| [GetSeriesLines()](./getserieslines/) | Returns a SeriesLines object that represents the series lines for a stacked bar chart or a stacked column chart. Applies only to stacked bar and stacked column charts. |
| [GetShadow()](./getshadow/) | True if the series has a shadow. |
Expand All @@ -67,7 +67,7 @@ class Series
| [GetValues()](./getvalues/) | Represents the Y values of this chart series. |
| [GetValuesFormatCode()](./getvaluesformatcode/) | Represents format code of Values's NumberList. |
| [GetXErrorBar()](./getxerrorbar/) | Represents X direction error bar of the series. |
| [GetXValues()](./getxvalues/) | Represents the x values of the chart series. |
| [GetXValues()](./getxvalues/) | Represents the X values of this chart series. |
| [GetXValuesFormatCode()](./getxvaluesformatcode/) | Represents format code of X Values's NumberList. |
| [GetYErrorBar()](./getyerrorbar/) | Represents Y direction error bar of the series. |
| [IsAutoSplit()](./isautosplit/) | Indicates whether the threshold value is automatic. |
Expand Down Expand Up @@ -113,8 +113,8 @@ class Series
| [SetValues(const char16_t* value)](./setvalues/) | Represents the Y values of this chart series. |
| [SetValuesFormatCode(const U16String\& value)](./setvaluesformatcode/) | Represents format code of Values's NumberList. |
| [SetValuesFormatCode(const char16_t* value)](./setvaluesformatcode/) | Represents format code of Values's NumberList. |
| [SetXValues(const U16String\& value)](./setxvalues/) | Represents the x values of the chart series. |
| [SetXValues(const char16_t* value)](./setxvalues/) | Represents the x values of the chart series. |
| [SetXValues(const U16String\& value)](./setxvalues/) | Represents the X values of this chart series. |
| [SetXValues(const char16_t* value)](./setxvalues/) | Represents the X values of this chart series. |
| [SetXValuesFormatCode(const U16String\& value)](./setxvaluesformatcode/) | Represents format code of X Values's NumberList. |
| [SetXValuesFormatCode(const char16_t* value)](./setxvaluesformatcode/) | Represents format code of X Values's NumberList. |
| [~Series()](./~series/) | Destructor. |
Expand Down
28 changes: 26 additions & 2 deletions english/cpp/aspose.cells.charts/series/getcategoryvalues/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,44 @@
title: Aspose::Cells::Charts::Series::GetCategoryValues method
linktitle: GetCategoryValues
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Charts::Series::GetCategoryValues method. Gets the category values of the series in C++.'
description: 'Aspose::Cells::Charts::Series::GetCategoryValues method. Gets the actual category values that are used to plot every point of this series in the chart in C++.'
type: docs
weight: 2100
url: /cpp/aspose.cells.charts/series/getcategoryvalues/
---
## Series::GetCategoryValues method


Gets the category values of the series.
Gets the actual category values that are used to plot every point of this series in the chart.

```cpp
Vector<Vector<ChartDataValue>> Aspose::Cells::Charts::Series::GetCategoryValues()
```

## Remarks


This property provides one convenient way to get the actual values corresponding to the data defined by Series.XValues, especially when the specified data source is external link, formula, ...etc.

## Examples


```cpp
Aspose::Cells::Startup();
Workbook workbook(u"ExternalSourceChart.xlsx");
Worksheet worksheet = workbook.GetWorksheets().Get(0);
Chart chart = worksheet.GetCharts().Get(0);
chart.Calculate();
U16String XValues = chart.GetNSeries().Get(0).GetXValues();
// XValues may be like "[External.xlsx]Sheet1!$B$2:$C$6" which is complicated
// for user to get the actual values(the values may be linked to another workbook,
// or cached in current workbook). Here you can use CategoryValues property
// to get the category values actually displayed in the Excel interface
// in the form of a two-dimensional array.
//Vector<Vector<ChartDataValue>> v1 = chart.GetNSeries().Get(0).GetCategoryValues();
Aspose::Cells::Cleanup();
```

## See Also

* Class [Vector](../../../aspose.cells/vector/)
Expand Down
28 changes: 26 additions & 2 deletions english/cpp/aspose.cells.charts/series/getpointvalues/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,44 @@
title: Aspose::Cells::Charts::Series::GetPointValues method
linktitle: GetPointValues
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Charts::Series::GetPointValues method. Gets the values for the points of the series in C++.'
description: 'Aspose::Cells::Charts::Series::GetPointValues method. Gets the actual values that are used to plot every point of this series in the chart in C++.'
type: docs
weight: 2000
url: /cpp/aspose.cells.charts/series/getpointvalues/
---
## Series::GetPointValues method


Gets the values for the points of the series.
Gets the actual values that are used to plot every point of this series in the chart.

```cpp
Vector<ChartDataValue> Aspose::Cells::Charts::Series::GetPointValues()
```

## Remarks


This property provides one convenient way to get the actual values corresponding to the data defined by Series.Values, especially when the specified data source is external link, formula, ...etc.

## Examples


```cpp
Aspose::Cells::Startup();
Workbook workbook(u"ExternalSourceChart.xlsx");
Worksheet worksheet = workbook.GetWorksheets().Get(0);
Chart chart = worksheet.GetCharts().Get(0);
chart.Calculate();
U16String Values = chart.GetNSeries().Get(0).GetValues();
// Values could be like "[External.xlsx]Sheet1!$A$1:$A$6" which is complicated
// for user to get the actual values(the values may be linked to another workbook,
// or cached in current workbook). Here you can use PointValues property
// to get the values actually displayed in the Excel interface
// in the form of an array.
//Vector<ChartDataValue> v1 = chart.GetNSeries().Get(0).GetPointValues();
Aspose::Cells::Cleanup();
```

## See Also

* Class [Vector](../../../aspose.cells/vector/)
Expand Down
4 changes: 4 additions & 0 deletions english/cpp/aspose.cells.charts/series/getvalues/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Represents the Y values of this chart series.
U16String Aspose::Cells::Charts::Series::GetValues()
```

## Remarks


To get the actual values(corresponding to every point of this series) defined by this property, please use PointValues.
## See Also

* Class [U16String](../../../aspose.cells/u16string/)
Expand Down
10 changes: 7 additions & 3 deletions english/cpp/aspose.cells.charts/series/getxvalues/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@
title: Aspose::Cells::Charts::Series::GetXValues method
linktitle: GetXValues
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Charts::Series::GetXValues method. Represents the x values of the chart series in C++.'
description: 'Aspose::Cells::Charts::Series::GetXValues method. Represents the X values of this chart series in C++.'
type: docs
weight: 2200
weight: 2600
url: /cpp/aspose.cells.charts/series/getxvalues/
---
## Series::GetXValues method


Represents the x values of the chart series.
Represents the X values of this chart series.

```cpp
U16String Aspose::Cells::Charts::Series::GetXValues()
```

## Remarks


To get the actual values(corresponding to every point of this series) defined by this property, please use CategoryValues.
## See Also

* Class [U16String](../../../aspose.cells/u16string/)
Expand Down
8 changes: 8 additions & 0 deletions english/cpp/aspose.cells.charts/series/setvalues/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Represents the Y values of this chart series.
void Aspose::Cells::Charts::Series::SetValues(const U16String &value)
```

## Remarks


To get the actual values(corresponding to every point of this series) defined by this property, please use PointValues.
## See Also

* Class [Vector](../../../aspose.cells/vector/)
Expand All @@ -32,6 +36,10 @@ Represents the Y values of this chart series.
void Aspose::Cells::Charts::Series::SetValues(const char16_t *value)
```

## Remarks


To get the actual values(corresponding to every point of this series) defined by this property, please use PointValues.
## See Also

* Class [Vector](../../../aspose.cells/vector/)
Expand Down
16 changes: 12 additions & 4 deletions english/cpp/aspose.cells.charts/series/setxvalues/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@
title: Aspose::Cells::Charts::Series::SetXValues method
linktitle: SetXValues
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Charts::Series::SetXValues method. Represents the x values of the chart series in C++.'
description: 'Aspose::Cells::Charts::Series::SetXValues method. Represents the X values of this chart series in C++.'
type: docs
weight: 2300
weight: 2700
url: /cpp/aspose.cells.charts/series/setxvalues/
---
## Series::SetXValues(const U16String\&) method


Represents the x values of the chart series.
Represents the X values of this chart series.

```cpp
void Aspose::Cells::Charts::Series::SetXValues(const U16String &value)
```

## Remarks


To get the actual values(corresponding to every point of this series) defined by this property, please use CategoryValues.
## See Also

* Class [Vector](../../../aspose.cells/vector/)
Expand All @@ -26,12 +30,16 @@ void Aspose::Cells::Charts::Series::SetXValues(const U16String &value)
## Series::SetXValues(const char16_t*) method


Represents the x values of the chart series.
Represents the X values of this chart series.

```cpp
void Aspose::Cells::Charts::Series::SetXValues(const char16_t *value)
```

## Remarks


To get the actual values(corresponding to every point of this series) defined by this property, please use CategoryValues.
## See Also

* Class [Vector](../../../aspose.cells/vector/)
Expand Down
5 changes: 3 additions & 2 deletions english/cpp/aspose.cells.charts/sparklinecollection/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ linktitle: SparklineCollection
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Charts::SparklineCollection class. Encapsulates a collection of Sparkline objects in C++.'
type: docs
weight: 2800
weight: 2900
url: /cpp/aspose.cells.charts/sparklinecollection/
---
## SparklineCollection class
Expand All @@ -27,7 +27,8 @@ class SparklineCollection
| [IsNull()](./isnull/) const | Checks whether the implementation object is nullptr. |
| explicit [operator bool()](./operator_bool/) const | operator bool() |
| [operator=(const SparklineCollection\& src)](./operator_asm/) | operator= |
| [Remove(const Aspose::Cells::Object\& o)](./remove/) | Removes the sparkline. |
| [Remove(const Aspose::Cells::Object\& o)](./remove/) | **(Deprecated)** Removes the sparkline. |
| [RemoveSparkline(const Sparkline\& o)](./removesparkline/) | Removes the sparkline. |
| [SparklineCollection(SparklineCollection_Impl* impl)](./sparklinecollection/) | Constructs from an implementation object. |
| [SparklineCollection(const SparklineCollection\& src)](./sparklinecollection/) | Copy constructor. |
| [~SparklineCollection()](./~sparklinecollection/) | Destructor. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ linktitle: GetCount
second_title: Aspose.Cells for C++ API Reference
description: 'How to use GetCount method of Aspose::Cells::Charts::SparklineCollection class in C++.'
type: docs
weight: 800
weight: 1000
url: /cpp/aspose.cells.charts/sparklinecollection/getcount/
---
## SparklineCollection::GetCount method
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ url: /cpp/aspose.cells.charts/sparklinecollection/remove/

Removes the sparkline.


>Deprecated
>
>Use SparklineCollection.RemoveSparkline(Sparkline) method instead.
```cpp
void Aspose::Cells::Charts::SparklineCollection::Remove(const Aspose::Cells::Object &o)
```
Expand All @@ -20,6 +24,12 @@ void Aspose::Cells::Charts::SparklineCollection::Remove(const Aspose::Cells::Obj
| Parameter | Type | Description |
| --- | --- | --- |
| o | const Aspose::Cells::Object\& | |
## Remarks



NOTE: This member is now obsolete. Instead, please use [RemoveSparkline()](../removesparkline/) method. This method will be removed 6 months later since December 2025. **Aspose** apologizes for any inconvenience you may have experienced.


## See Also

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: Aspose::Cells::Charts::SparklineCollection::RemoveSparkline method
linktitle: RemoveSparkline
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Charts::SparklineCollection::RemoveSparkline method. Removes the sparkline in C++.'
type: docs
weight: 900
url: /cpp/aspose.cells.charts/sparklinecollection/removesparkline/
---
## SparklineCollection::RemoveSparkline method


Removes the sparkline.

```cpp
void Aspose::Cells::Charts::SparklineCollection::RemoveSparkline(const Sparkline &o)
```


| Parameter | Type | Description |
| --- | --- | --- |
| o | const Sparkline\& | |

## See Also

* Class [Vector](../../../aspose.cells/vector/)
* Class [Sparkline](../../sparkline/)
* Class [SparklineCollection](../)
* Namespace [Aspose::Cells::Charts](../../)
* Library [Aspose.Cells for C++](../../../)
10 changes: 6 additions & 4 deletions english/cpp/aspose.cells.drawing.texts/textoptions/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class TextOptions : public Aspose::Cells::Font
| [Font(Font_Impl* impl)](../../aspose.cells/font/font/) | Constructs from an implementation object. |
| [Font(const Aspose::Cells::Font\& src)](../../aspose.cells/font/font/) | Copy constructor. |
| [GetArgbColor()](../../aspose.cells/font/getargbcolor/) | Gets and sets the color with a 32-bit ARGB value. |
| [GetCapsType()](../../aspose.cells/font/getcapstype/) | Gets and sets the text caps type. |
| [GetCapsType()](./getcapstype/) | Gets and sets the text caps type. |
| [GetCharset()](../../aspose.cells/font/getcharset/) | Represent the character set. |
| [GetColor()](../../aspose.cells/font/getcolor/) | Gets or sets the [Color](../../aspose.cells/color/) of the font. |
| [GetDoubleSize()](../../aspose.cells/font/getdoublesize/) | Gets and sets the double size of the font. |
Expand All @@ -46,7 +46,7 @@ class TextOptions : public Aspose::Cells::Font
| [GetUnderlineColor()](./getunderlinecolor/) | Gets or sets the color of underline. |
| [IsBold()](../../aspose.cells/font/isbold/) | Gets or sets a value indicating whether the font is bold. |
| [IsItalic()](../../aspose.cells/font/isitalic/) | Gets or sets a value indicating whether the font is italic. |
| [IsNormalizeHeights()](../../aspose.cells/font/isnormalizeheights/) | Indicates whether the normalization of height that is to be applied to the text run. |
| [IsNormalizeHeights()](./isnormalizeheights/) | Indicates whether the normalization of height that is to be applied to the text run. |
| [IsNull()](./isnull/) const | Checks whether the implementation object is nullptr. |
| [IsStrikeout()](../../aspose.cells/font/isstrikeout/) | Gets or sets a value indicating whether the font is single strikeout. |
| [IsSubscript()](../../aspose.cells/font/issubscript/) | Gets or sets a value indicating whether the font is subscript. |
Expand All @@ -55,15 +55,15 @@ class TextOptions : public Aspose::Cells::Font
| [operator=(const TextOptions\& src)](./operator_asm/) | operator= |
| [operator=(const Aspose::Cells::Font\& src)](../../aspose.cells/font/operator_asm/) | operator= |
| [SetArgbColor(int32_t value)](../../aspose.cells/font/setargbcolor/) | Gets and sets the color with a 32-bit ARGB value. |
| [SetCapsType(TextCapsType value)](../../aspose.cells/font/setcapstype/) | Gets and sets the text caps type. |
| [SetCapsType(TextCapsType value)](./setcapstype/) | Gets and sets the text caps type. |
| [SetCharset(int32_t value)](../../aspose.cells/font/setcharset/) | Represent the character set. |
| [SetColor(const Aspose::Cells::Color\& value)](../../aspose.cells/font/setcolor/) | Gets or sets the [Color](../../aspose.cells/color/) of the font. |
| [SetDoubleSize(double value)](../../aspose.cells/font/setdoublesize/) | Gets and sets the double size of the font. |
| [SetFarEastName(const U16String\& value)](./setfareastname/) | Gets and sets the FarEast name. |
| [SetFarEastName(const char16_t* value)](./setfareastname/) | Gets and sets the FarEast name. |
| [SetIsBold(bool value)](../../aspose.cells/font/setisbold/) | Gets or sets a value indicating whether the font is bold. |
| [SetIsItalic(bool value)](../../aspose.cells/font/setisitalic/) | Gets or sets a value indicating whether the font is italic. |
| [SetIsNormalizeHeights(bool value)](../../aspose.cells/font/setisnormalizeheights/) | Indicates whether the normalization of height that is to be applied to the text run. |
| [SetIsNormalizeHeights(bool value)](./setisnormalizeheights/) | Indicates whether the normalization of height that is to be applied to the text run. |
| [SetIsStrikeout(bool value)](../../aspose.cells/font/setisstrikeout/) | Gets or sets a value indicating whether the font is single strikeout. |
| [SetIsSubscript(bool value)](../../aspose.cells/font/setissubscript/) | Gets or sets a value indicating whether the font is subscript. |
| [SetIsSuperscript(bool value)](../../aspose.cells/font/setissuperscript/) | Gets or sets a value indicating whether the font is super script. |
Expand All @@ -73,6 +73,8 @@ class TextOptions : public Aspose::Cells::Font
| [SetLatinName(const char16_t* value)](./setlatinname/) | Gets and sets the latin name. |
| [SetName(const U16String\& value)](./setname/) | Gets and sets the name of the shape. |
| [SetName(const char16_t* value)](./setname/) | Gets and sets the name of the shape. |
| [SetName(const U16String\& name, FontSchemeType type)](../../aspose.cells/font/setname/) | Sets name and scheme of the font. |
| [SetName(const char16_t* name, FontSchemeType type)](../../aspose.cells/font/setname/) | Sets name and scheme of the font. |
| [SetSchemeType(FontSchemeType value)](../../aspose.cells/font/setschemetype/) | Gets and sets the scheme type of the font. |
| [SetScriptOffset(double value)](../../aspose.cells/font/setscriptoffset/) | Gets and sets the script offset,in unit of percentage. |
| [SetSize(int32_t value)](../../aspose.cells/font/setsize/) | Gets or sets the size of the font. |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Aspose::Cells::Drawing::Texts::TextOptions::GetCapsType method
linktitle: GetCapsType
second_title: Aspose.Cells for C++ API Reference
description: 'Aspose::Cells::Drawing::Texts::TextOptions::GetCapsType method. Gets and sets the text caps type in C++.'
type: docs
weight: 2500
url: /cpp/aspose.cells.drawing.texts/textoptions/getcapstype/
---
## TextOptions::GetCapsType method


Gets and sets the text caps type.

```cpp
TextCapsType Aspose::Cells::Drawing::Texts::TextOptions::GetCapsType()
```

## See Also

* Enum [TextCapsType](../../../aspose.cells/textcapstype/)
* Class [TextOptions](../)
* Namespace [Aspose::Cells::Drawing::Texts](../../)
* Library [Aspose.Cells for C++](../../../)
Loading