Class ColumnSeries
To render a column chart, create an instance of ColumnSeries class and add it to Series collection property and set the required properties.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public class ColumnSeries : XyDataSeries, IThemeElement
Remarks
ColumnSeries requires ItemsSource, XBindingPath and YBindingPath properties to be set to render the chart. This series also requires x-axis and y-axis to be explicitly set either using PrimaryAxis and SecondaryAxis or XAxis and YAxis.
Examples
SfChart chart = new SfChart();
chart.PrimaryAxis = new CategoryAxis();
chart.SecondaryAxis = new NumericalAxis();
ColumnSeries series = new ColumnSeries();
ObservableCollection<ChartDataPoint> Data = new ObservableCollection<ChartDataPoint>
{
new ChartDataPoint("2006",28),
new ChartDataPoint("2007",68),
new ChartDataPoint("2010",38)
};
series.ItemsSource = Data;
chart.Series.Add(series);
Constructors
ColumnSeries()
Declaration
public ColumnSeries()
Fields
CornerRadiusProperty
Gets or sets a value that defines the rounded corners for column segments. This is a bindable property.
Declaration
public static readonly BindableProperty CornerRadiusProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Remarks
Although the property name suggests that CornerRadius also supports non-uniform radii. Radius values that are too large are scaled so that they blend smoothly from corner to corner.
DataMarkerPositionProperty
Gets or sets the position of the data markers in series. This is a bindable property.
Declaration
public static readonly BindableProperty DataMarkerPositionProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
SpacingProperty
Gets or sets the value that defines the space between the column segments. This is a bindable property.
Declaration
public static readonly BindableProperty SpacingProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
StrokeColorProperty
Gets or sets the stroke color to customize the appearance of ColumnSeries. This is a bindable property.
Declaration
public static readonly BindableProperty StrokeColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
WidthProperty
Gets or sets the value that defines the width of the column segments. This is a bindable property.
Declaration
public static readonly BindableProperty WidthProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
CornerRadius
Gets or sets a value that defines the rounded corners for column segments. This is a bindable property.
Declaration
public ChartCornerRadius CornerRadius { get; set; }
Property Value
Type |
---|
ChartCornerRadius |
DataMarkerPosition
Gets or sets the position of the data markers in series. This is a bindable property.
Declaration
public DataMarkerPosition DataMarkerPosition { get; set; }
Property Value
Type | Description |
---|---|
DataMarkerPosition | This property take the DataMarkerPosition as its value. |
Spacing
Gets or sets the value that defines the space between the column segments. This is a bindable property.
Declaration
public double Spacing { get; set; }
Property Value
Type | Description |
---|---|
System.Double | This property takes the double value. |
StrokeColor
Gets or sets the stroke color to customize the appearance of ColumnSeries. This is a bindable property.
Declaration
public Color StrokeColor { get; set; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Color | This property takes the Xamarin.Forms.Color value. |
Width
Gets or sets the width of the segment. The default value of the width is 0.8. This is a bindable property.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | This property takes the double value. |