Interface IChart
Top-level interface that represents Excel chart
Namespace: IronXL.Drawing.Charts
Assembly: IronXL.dll
Syntax
public interface IChart
Properties
Position
Gets the position of the chart
Declaration
Position Position { get; }
Property Value
| Type | Description |
|---|---|
| Position |
Methods
AddSeries(String)
Adds the series to the chart.
Declaration
IChartSeries AddSeries(string values)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | values | Address of the values range. |
Returns
| Type | Description |
|---|---|
| IChartSeries | Created chart series. |
AddSeries(String, String)
Adds the series to the chart.
Declaration
IChartSeries AddSeries(string xRange, string yRange)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | xRange | Address of the range for horizontal axis. |
| System.String | yRange | Address of the range for vertical axis. |
Returns
| Type | Description |
|---|---|
| IChartSeries | Created chart series. |
Plot()
Plots all the data that was added to the chart before.
The behavior of this method is similar to commiting all new series changes to the chart.
Declaration
void Plot()
SetLegendPosition(LegendPosition)
Sets the legend position. Setting None removes the legend.
Declaration
void SetLegendPosition(LegendPosition position)
Parameters
| Type | Name | Description |
|---|---|---|
| LegendPosition | position |
SetTitle(String)
Sets the title of the series.
Declaration
void SetTitle(string title)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | title | the title of the chart |