Class NumericalStripLine
This class can be used to render strip lines using number values. This should be used with NumericalAxis, LogarithmicAxis and CategoryAxis.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public class NumericalStripLine : ChartStripLine, IThemeElement
Remarks
Examples
NumericalAxis axis = new NumericalAxis();
NumericalStripLine strip = new NumericalStripLine();
strip.Start = 20;
strip.Width = 10;
axis.StripLines.Add(strip);
Constructors
NumericalStripLine()
Declaration
public NumericalStripLine()
Fields
RepeatUntilProperty
Gets or sets the axis value that determines till where the strip line has to be repeated in axis. This is a bindable property.
Declaration
public static readonly BindableProperty RepeatUntilProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
StartProperty
Gets or sets the axis value that represents, from where the strip line should start in axis. This is a bindable property.
Declaration
public static readonly BindableProperty StartProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
RepeatUntil
Gets or sets the axis value that determines till where the strip line has to be repeated in axis. This is a bindable property.
Declaration
public double RepeatUntil { get; set; }
Property Value
Type | Description |
---|---|
System.Double | This property takes the double value. |
Start
Gets or sets the axis value that represents, from where the strip line should start in axis. This is a bindable property.
Declaration
public double Start { get; set; }
Property Value
Type | Description |
---|---|
System.Double | This property takes the double value. |