| SeriesInSubchart |
Returns the number of series on each subchart. Note that this property only works in xlsx files: In xls files it will always return 0.
|
| AddSubchart |
Adds a new subchart to the existing chart. Note that if the current active subchart is empty, this method will not add a new subchart, but replace the empty one. In that case, IExcelChart.SubchartCount won't change.
This method only works in xlsx files, not xls.
|
| SetChartOptions |
Sets the chart options of a specific subchart inside the chart. Note that while a chart can have multiple subcharts inside (for example one pie subchart and one line subchart), normally there is only one subchart and so the SubchartPos parameter is normally 1.
|
| AddSeries |
Adds a series to the chart.
|
| DeleteSeries |
Deletes the series at position index.
|
| GetSeries |
Returns a series definition.
|
| GetSeriesInSubchart |
Returns a series definition for a given subchart. Note: This method only works in xlsx files.
|
| SetSeries |
Sets a Series value. Note that for xlsx charts, this will change the **data range** and the **options** of the series. If you only want to change the data range, pass null options to the method.
|
| SetSeriesInSubchart |
Sets a Series value. Note that for xlsx charts, this will change the **data range** and the **options** of the series. If you only want to change the data range, pass null options to the method.
|
| GetBubbleSeries |
Returns the bubble definition for a series when in a bubble chart.
|
| SetBubbleSeries |
Sets a Series value. Note that for xlsx charts, this will change the **data range** and the **options** of the series. If you only want to change the data range, pass null options to the method.
|
| GetChartAxis |
Returns the axis information for this chart. Note that this might be more than one, if the chart has a secondary axis.
|
| SetChartAxis |
Sets the options for either the primary or secondary pair of axis.
|
| GetDataLabels |
Returns all the labels for the chart. Note that Axis have their labels defined inside their own definition.
|
| SetDataLabels |
Changes the labels for the chart. You should always get the values with IExcelChart.GetDataLabels, modify them, and change them back with this method.
|
| GetDataLabelsRange |
Returns the range of cells for a "Label Contains: " "Value from Cells" option in the labels. Note that for this to work, you also need to use the string [CELLRANGE] in the label definition.
|
| SetDataLabelsRange |
Sets the range of cells for a "Label Contains: " "Value from Cells" option in the labels. Note that for this to work, you also need to use the string [CELLRANGE] in the label definition.
|
| GetTitle |
Returns the title of the chart.
|
| SetTitle |
Sets the title of the chart. This method is only implemented for xlsx charts.
|
| GetChartLegend |
Information about the Legend of the chart.
|
| SetChartLegend |
Sets the legend properties.
|
| RemoveChartLegend |
Removes the Legend from the chart.
|
| GetTrendline |
Gets a trendline for a chart. This method is only implemented for xlsx charts.
|
| SetTrendline |
Gets a trendline for a chart. This method is only implemented for xlsx charts.
|
| GetObjectProperties |
Returns information on an object and all of its children. If the shape doesn't exist, this method returns null.
|
| SetObjectText |
Overloaded SetObjectText(Integer, string, string) SetObjectText(Integer, string, TRichString) SetObjectText(Integer, string, TDrawingRichString)
|
| DeleteObject |
Overloaded DeleteObject(Integer) DeleteObject(Integer, string)
|
| GetImage |
Returns an image and its type.
|
| GetImageAlternate |
Returns an image and its type. Currently this method is the same as TXlsBaseChart.GetImage for all images except SVG. For SVG images, xlsx files store both a PNG and SVG image. In those cases, this method will return the SVG image. To get the PNG, call TXlsBaseChart.GetImage |