Xamarin.Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class SFBoxAndWhiskerSeries

    Show / Hide Table of Contents

    Class SFBoxAndWhiskerSeries

    Represents a column chart. To render column chart, create an instance of this class and add it to Series collection property and set the required properties.

    Inheritance
    System.Object
    SFSeries
    SFCartesianSeries
    SFXyDataSeries
    SFBoxAndWhiskerSeries
    Inherited Members
    SFXyDataSeries.YBindingPath
    SFCartesianSeries.DrawInContext(CGContext)
    SFCartesianSeries.OnAttachedToChart()
    SFCartesianSeries.FindNearestChartPoint(Single, Single)
    SFCartesianSeries.FindNearestChartPoints(Single, Single)
    SFCartesianSeries.GetCardinalSpline(List<Double>, IList<Double>)
    SFCartesianSeries.CalculateControlPoints(Double, Double, Double, Double, Double, Double)
    SFCartesianSeries.CalculateControlPoints(Double, Double, Double, Double, Double, Double, Double)
    SFCartesianSeries.GetMonotonicSpline(List<Double>, IList<Double>, Double[])
    SFCartesianSeries.GetDataPoints(RectangleF)
    SFCartesianSeries.GetDataPoints(Double, Double, Double, Double)
    SFCartesianSeries.IsTransposed
    SFCartesianSeries.Trendlines
    SFCartesianSeries.XAxis
    SFCartesianSeries.YAxis
    SFCartesianSeries.ShowTrackballInfo
    SFCartesianSeries.ActualXAxis
    SFCartesianSeries.ActualYAxis
    SFSeries.InvalidateRender()
    SFSeries.Animate()
    SFSeries.CreateRenderer()
    SFSeries.InsertDataPointAtIndex(nint)
    SFSeries.RemoveDataPointAtIndex(nint)
    SFSeries.ReloadData()
    SFSeries.AnimationForSegment(SFChartSegment)
    SFSeries.DrawLayer(CALayer, CGContext)
    SFSeries.DataPointIndexAtPoint(CGPoint)
    SFSeries.DrawMarker(CGContext, Double, Double, Int32)
    SFSeries.DrawLabel(NSString, CGContext, Double, Double, Int32)
    SFSeries.DrawConnectorLine(CGContext, Double, Double, Double, Double, NSColor, Int32)
    SFSeries.GeneratePoints(String[], IList<Double>[])
    SFSeries.ScheduleUpdateArea()
    SFSeries.GetSelectionColor()
    SFSeries.GetGradientStartPoint(SFChartSegment)
    SFSeries.GetGradientEndPoint(SFChartSegment)
    SFSeries.ClearUnUsedDataMarkerLabels(Int32)
    SFSeries.SeriesContainsPoint(CGPoint)
    SFSeries.OnDetachedFromChart()
    SFSeries.SetFillColor(SFChartSegment)
    SFSeries.SetStrokeWidth(SFChartSegment)
    SFSeries.SuspendNotification()
    SFSeries.ResumeNotification()
    SFSeries.EnableTooltip
    SFSeries.LegendIcon
    SFSeries.EnableDataPointSelection
    SFSeries.Visible
    SFSeries.VisibleOnLegend
    SFSeries.LayerFrame
    SFSeries.ListenPropertyChange
    SFSeries.DataMarker
    SFSeries.EnableAnimation
    SFSeries.AnimationDuration
    SFSeries.IsSelected
    SFSeries.SelectedDataPointIndex
    SFSeries.SelectedDataPointColor
    SFSeries.DataCount
    SFSeries.Name
    SFSeries.Color
    SFSeries.Alpha
    SFSeries.Label
    SFSeries.ItemsSource
    SFSeries.XBindingPath
    SFSeries.ColorModel
    SFSeries.XRange
    SFSeries.YRange
    SFSeries.Segments
    SFSeries.DataMarkerLabelCreated
    Namespace: Syncfusion.MacOS.Charts.SfChart
    Assembly: Syncfusion.SfChart.XForms.macOS.dll
    Syntax
    public class SFBoxAndWhiskerSeries : SFXyDataSeries
    Remarks

    SFBoxAndWhiskerSeries 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

    Constructors

    SFBoxAndWhiskerSeries()

    Initializes a new instance of the SFBoxAndWhiskerSeries class.

    Declaration
    public SFBoxAndWhiskerSeries()

    Properties

    BorderColor

    Gets or sets the color of the series border.

    Declaration
    public NSColor BorderColor { get; set; }
    Property Value
    Type Description
    AppKit.NSColor

    BorderWidth

    Gets or sets the width of the series border.

    Declaration
    public nfloat BorderWidth { get; set; }
    Property Value
    Type Description
    System.nfloat

    BoxPlotMode

    Gets or sets the value for BoxPlotMode.

    Declaration
    public BoxPlotMode BoxPlotMode { get; set; }
    Property Value
    Type Description
    BoxPlotMode

    Percentile

    Gets or sets the value for the Percentile.

    Declaration
    public double Percentile { get; set; }
    Property Value
    Type Description
    System.Double

    ShowMedian

    Gets or sets a value indicating whether this showMedian.

    Declaration
    public bool ShowMedian { get; set; }
    Property Value
    Type Description
    System.Boolean

    ShowOutlier

    Gets or sets a value indicating whether to show or hide the outlier symbol that is displayed outside the whiskers of the box plot.

    Declaration
    public bool ShowOutlier { get; set; }
    Property Value
    Type Description
    System.Boolean

    The default value is True.

    See Also
    ShowMedian

    Spacing

    Gets or sets the value for spacing between the segments.

    Declaration
    public double Spacing { get; set; }
    Property Value
    Type Description
    System.Double

    StrokeColor

    Gets or sets the value for StrokeColor.

    Declaration
    public NSColor StrokeColor { get; set; }
    Property Value
    Type Description
    AppKit.NSColor

    SymbolType

    Gets or sets the value for SymbolType.

    Declaration
    public ChartSymbolType SymbolType { get; set; }
    Property Value
    Type Description
    ChartSymbolType

    Width

    Gets or sets the value for segment width.

    Declaration
    public double Width { get; set; }
    Property Value
    Type Description
    System.Double

    YCollection

    Declaration
    protected List<IList<double>> YCollection { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Collections.Generic.IList<System.Double>>

    Methods

    CreateSegment()

    Create the SFBoxAndWhiskerSegment.

    Declaration
    protected override SFChartSegment CreateSegment()
    Returns
    Type Description
    SFChartSegment

    Returns a segment.

    Overrides
    SFCartesianSeries.CreateSegment()

    CreateSegments()

    Creates the segments of SFBoxAndWhiskerSeries.

    Declaration
    public override void CreateSegments()
    Overrides
    SFCartesianSeries.CreateSegments()

    OnBindingPathChanged()

    Declaration
    protected override void OnBindingPathChanged()
    Overrides
    SFXyDataSeries.OnBindingPathChanged()

    SetIndividualPoint(Int32, Object, Boolean)

    Declaration
    protected override void SetIndividualPoint(int index, object value, bool replace)
    Parameters
    Type Name Description
    System.Int32 index
    System.Object value
    System.Boolean replace
    Overrides
    SFSeries.SetIndividualPoint(Int32, Object, Boolean)
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved