Xamarin.Forms

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

    Show / Hide Table of Contents

    Class WaterfallSeries

    Inheritance
    System.Object
    SFSeries
    SFCartesianSeries
    SFXyDataSeries
    WaterfallSeries
    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.SetIndividualPoint(Int32, Object, Boolean)
    SFSeries.ClearUnUsedDataMarkerLabels(Int32)
    SFSeries.SeriesContainsPoint(CGPoint)
    SFSeries.OnDetachedFromChart()
    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 WaterfallSeries : SFXyDataSeries

    Constructors

    WaterfallSeries()

    Initializes a new instance of the WaterfallSeries class.

    Declaration
    public WaterfallSeries()

    Properties

    AllowAutoSum

    Gets or sets a value indicating whether this WaterfallSeries allow auto sum.

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

    true if allow auto sum; otherwise, false.

    ConnectorLineStyle

    Gets the style value that indicates the segments connector line visual representation.

    Declaration
    public SFLineStyle ConnectorLineStyle { get; }
    Property Value
    Type Description
    SFLineStyle

    The connector line style.

    DataMarkerPosition

    Gets or sets the marker position on the segment.

    Declaration
    public SFChartDataMarkerPosition DataMarkerPosition { get; set; }
    Property Value
    Type Description
    SFChartDataMarkerPosition

    NegativeSegmentColor

    Gets or sets the color value that indicates the interior color of negative segment.

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

    The color of the negative segment.

    ShowConnectorLine

    Gets or sets a value indicating whether this WaterfallSeries show connector line.

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

    true if show connector line; otherwise, false.

    Spacing

    Gets or sets the spacing between the segments across the series in cluster mode.

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

    The spacing.

    SummaryBindingPath

    Gets or sets string that indicates model property name which holds the collection of boolean values.

    Declaration
    public string SummaryBindingPath { get; set; }
    Property Value
    Type Description
    System.String

    The summary binding path.

    SummarySegmentColor

    Gets or sets the color value that indicates the consolidated segment's interior.

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

    The color of the summary segment.

    Width

    Gets or sets the width of Waterfall series.

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

    The width.

    Methods

    CreateSegment()

    Creates the segment.

    Declaration
    protected override SFChartSegment CreateSegment()
    Returns
    Type Description
    SFChartSegment

    The Waterfall segment.

    Overrides
    SFCartesianSeries.CreateSegment()

    CreateSegments()

    Creates the Waterfall segments.

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

    OnBindingPathChanged()

    The summary binding path has been changed.

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

    SetFillColor(SFChartSegment)

    Declaration
    protected override void SetFillColor(SFChartSegment segment)
    Parameters
    Type Name Description
    SFChartSegment segment
    Overrides
    SFSeries.SetFillColor(SFChartSegment)
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved