Inherits CollectionBase.
|
virtual intrusive_ptr< Aspose::Cells::Charts::ISeries > | GetObjectByIndex (Aspose::Cells::Systems::Int32 index)=0 |
| Gets the ISeries element at the specified index. More...
|
|
virtual intrusive_ptr< Aspose::Cells::Charts::ISeries > | GetISeriesByOrder (Aspose::Cells::Systems::Int32 order)=0 |
| Gets the ISeries element by order. More...
|
|
virtual void | RemoveAt (Aspose::Cells::Systems::Int32 index)=0 |
| Remove at a series at the specific index. More...
|
|
virtual intrusive_ptr< Aspose::Cells::Systems::String > | GetCategoryData ()=0 |
| Sets the range of category Axis values. It can be a range of cells (such as, "d1:e10"), or a sequence of values (such as,"{2,6,8,10}"). More...
|
|
virtual void | SetCategoryData (intrusive_ptr< Aspose::Cells::Systems::String > value)=0 |
| Sets the range of category Axis values. It can be a range of cells (such as, "d1:e10"), or a sequence of values (such as,"{2,6,8,10}"). More...
|
|
virtual intrusive_ptr< Aspose::Cells::Systems::String > | GetSecondCategoryData ()=0 |
| Gets the range of second category Axis values. It can be a range of cells (such as, "d1:e10"), or a sequence of values (such as,"{2,6,8,10}"). Only effects when some ASerieses plot on the second axis. More...
|
|
virtual void | SetSecondCategoryData (intrusive_ptr< Aspose::Cells::Systems::String > value)=0 |
| Sets the range of second category Axis values. It can be a range of cells (such as, "d1:e10"), or a sequence of values (such as,"{2,6,8,10}"). Only effects when some ASerieses plot on the second axis. More...
|
|
virtual void | ChangeSeriesOrder (Aspose::Cells::Systems::Int32 sourceIndex, Aspose::Cells::Systems::Int32 destIndex)=0 |
| Directly chanages the orders of the two series. More...
|
|
virtual void | SetSeriesNames (Aspose::Cells::Systems::Int32 startIndex, intrusive_ptr< Aspose::Cells::Systems::String > area, bool isVertical)=0 |
| Sets the name of all the serieses in the chart. More...
|
|
virtual Aspose::Cells::Systems::Int32 | AddR1C1 (intrusive_ptr< Aspose::Cells::Systems::String > area, bool isVertical)=0 |
| Adds the ISeriesCollection collection to a chart. More...
|
|
virtual Aspose::Cells::Systems::Int32 | Add (intrusive_ptr< Aspose::Cells::Systems::String > area, bool isVertical)=0 |
| Adds the ISeriesCollection collection to a chart. More...
|
|
virtual Aspose::Cells::Systems::Int32 | Add (intrusive_ptr< Aspose::Cells::Systems::String > area, bool isVertical, bool checkLabels)=0 |
| Adds the ISeriesCollection collection to a chart. More...
|
|
virtual bool | IsColorVaried ()=0 |
| Represents if the color of points is varied. More...
|
|
virtual void | SetColorVaried (bool value)=0 |
| Represents if the color of points is varied. More...
|
|
virtual void | Clear ()=0 |
| Clears the collection More...
|
|
Encapsulates a collection of Series objects.
virtual void Aspose::Cells::Charts::ISeriesCollection::SetSeriesNames |
( |
Aspose::Cells::Systems::Int32 |
startIndex, |
|
|
intrusive_ptr< Aspose::Cells::Systems::String > |
area, |
|
|
bool |
isVertical |
|
) |
| |
|
pure virtual |
Sets the name of all the serieses in the chart.
- Parameters
-
startIndex | The index of the first series which you want to set the name. |
area | Specifies the area for the series name. |
isVertical | >Specifies whether to plot the series from a range of cell values by row or by column. |
If the start index is larger than the count of the serieses, it will return and do nothing.
If set data on contiguous cells, use colon to seperate them.For example, $C$2:$C$5.
If set data on contiguous cells, use comma to seperate them.For example, ($C$2,$D$5).