[]
Add a series.
protected TBuilder Add<TControl, TBuilder>(Func<TOwner, TControl> createControl, Func<TControl, TBuilder> createBuilder) where TControl : ChartSeriesBase<T> where TBuilder : ChartSeriesBaseBuilder<T, TControl, TBuilder>
| Type | Name | Description |
|---|---|---|
| Func<TOwner, TControl> | createControl | The function to create a series for the specified owner. |
| Func<TControl, TBuilder> | createBuilder | The builder for the series. |
| Type | Description |
|---|---|
| TBuilder | The series builder. |
| Name | Description |
|---|---|
| TControl | Specifies the series type. |
| TBuilder | The series builder type. |
Add a default Series to the series list.
public TSeriesBuilder Add()
| Type | Description |
|---|---|
| TSeriesBuilder | The series builder |
Add a default Series to the series list.
public TSeriesBuilder Add(string name)
| Type | Name | Description |
|---|---|---|
| string | name | The name of series |
| Type | Description |
|---|---|
| TSeriesBuilder | The series builder |
Add a default Series to the series list.
public TSeriesBuilder Add(TChartType type)
| Type | Name | Description |
|---|---|---|
| TChartType | type | The type of series |
| Type | Description |
|---|---|
| TSeriesBuilder | The series builder |
Add a default Series to the series list.
public TSeriesBuilder Add(TChartType type, string name)
| Type | Name | Description |
|---|---|---|
| TChartType | type | The type of series |
| string | name | The name of series |
| Type | Description |
|---|---|
| TSeriesBuilder | The series builder |