SeriesChart
The SeriesChart abstract class is the base for PieCharts and BarCharts.
Definition
[ContentProperty(name: nameof(Series))]
public abstract class SeriesChart<TSeries, TLegend> : ChartBase
where TSeries : ChartSeries
where TLegend : ILegend
Properties
| Name | Type | Description | Default |
|---|---|---|---|
| Series | ICollection<TSeries> | Gets or Sets the series to be drawn of the specified type | null |
| Legend | TLegend | Sets the legend to display series information | null |
| OnSelectCommand | ICommand | Gets or Sets the command to execute when a value is selected | null |
| SelectedIndex | int | Gets or Sets the selected item of the series. If the value is -1 means not found | -1 |
| SelectedSeriesIndex | int | Gets or Sets the selected series. If the value is -1 means not found | -1 |
| SelectionProgress | double | Gets the progress of the selection animation | 1d |
| InitProgress | double | Gets the progress of the initial animation | 1d |