Class KanbanErrorBarSettings
This class is used to customize the appearance of error bar that appears in the KanbanColumn's header.
Inheritance
Namespace: Syncfusion.SfKanban.XForms
Assembly: Syncfusion.SfKanban.XForms.dll
Syntax
public class KanbanErrorBarSettings : Element, IThemeElement
Remarks
Error bar is a line that appears at the bottom of the header. The color of the error bar indicates whether the column reached the maximum/minimum allowed limit of cards.
Constructors
KanbanErrorBarSettings()
Initializes a new instance of the KanbanErrorBarSettings class.
Declaration
public KanbanErrorBarSettings()
Fields
ColorProperty
Identifies the Color bindable property.
Declaration
public static readonly BindableProperty ColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
HeightProperty
Identifies the Height bindable property.
Declaration
public static readonly BindableProperty HeightProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
MaxValidationColorProperty
Identifies the MaxValidationColor bindable property.
Declaration
public static readonly BindableProperty MaxValidationColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
MinValidationColorProperty
Identifies the MinValidationColor bindable property.
Declaration
public static readonly BindableProperty MinValidationColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
Color
Gets or sets the default Color value of the error bar.
Declaration
public Color Color { get; set; }
Property Value
Type |
---|
Xamarin.Forms.Color |
Height
Gets or sets the height of the error bar.
Declaration
public double Height { get; set; }
Property Value
Type |
---|
System.Double |
MaxValidationColor
Gets or sets the Color value of the error bar for the MaximumLimit validation.
Declaration
public Color MaxValidationColor { get; set; }
Property Value
Type |
---|
Xamarin.Forms.Color |
Remarks
MaxValidationColor will be applied to the error bar when KanbanColumn's card count is greater than the MaximumLimit value.
MinValidationColor
Gets or sets the Color value of the error bar for MinimumLimit validation.
Declaration
public Color MinValidationColor { get; set; }
Property Value
Type |
---|
Xamarin.Forms.Color |
Remarks
MinValidationColor will be applied to the error bar when KanbanColumn's card count is less than the MinimumLimit value.