menu

Xamarin.Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class NumericalStripLine - Xamarin.Forms API Reference | Syncfusion

    Show / Hide Table of Contents

    Class NumericalStripLine

    This class can be used to render strip lines using number values. This should be used with NumericalAxis, LogarithmicAxis and CategoryAxis.

    Inheritance
    System.Object
    ChartStripLine
    NumericalStripLine
    Inherited Members
    ChartStripLine.FillColor
    ChartStripLine.FillColorProperty
    ChartStripLine.IsPixelWidth
    ChartStripLine.IsPixelWidthProperty
    ChartStripLine.IsSegmented
    ChartStripLine.IsSegmentedProperty
    ChartStripLine.IsVisible
    ChartStripLine.IsVisibleProperty
    ChartStripLine.LabelStyle
    ChartStripLine.LabelStyleProperty
    ChartStripLine.OnBindingContextChanged()
    ChartStripLine.OnParentSet()
    ChartStripLine.RepeatEvery
    ChartStripLine.RepeatEveryProperty
    ChartStripLine.SegmentAxisName
    ChartStripLine.SegmentAxisNameProperty
    ChartStripLine.SegmentEnd
    ChartStripLine.SegmentEndProperty
    ChartStripLine.SegmentStart
    ChartStripLine.SegmentStartProperty
    ChartStripLine.StrokeColor
    ChartStripLine.StrokeColorProperty
    ChartStripLine.StrokeWidth
    ChartStripLine.StrokeWidthProperty
    ChartStripLine.Text
    ChartStripLine.TextProperty
    ChartStripLine.Width
    ChartStripLine.WidthProperty
    Namespace: Syncfusion.SfChart.XForms
    Assembly: Syncfusion.SfChart.XForms.dll
    Syntax
    public class NumericalStripLine : ChartStripLine, IThemeElement
    Remarks

    NumericalStripLine requires Start and Width properties to be set to render the Strip line.

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved