Xamarin.Forms

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

    Show / Hide Table of Contents

    Class SFBubbleSeries

    Represents a bubble chart. To render bubble 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
    SFBubbleSeries
    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.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.SetIndividualPoint(Int32, Object, Boolean)
    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 SFBubbleSeries : SFXyDataSeries
    Remarks

    SFBubbleSeries requires ItemsSource, XBindingPath, YBindingPath and Size 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

    SFBubbleSeries()

    Initializes a new instance of the SFBubbleSeries class.

    Declaration
    public SFBubbleSeries()

    Properties

    BorderColor

    Gets or sets the border color of the series.

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

    BorderWidth

    Gets or sets the border width of the series.

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

    MaximumRadius

    Gets or sets the maximum radius of the bubble.

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

    MinimumRadius

    Gets or sets the minimum radius of the bubble.

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

    ShowZeroSizeBubbles

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

    Size

    Gets or sets the binding path in items source.

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

    StrokeColor

    Gets or sets the color for the series stroke.

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

    Methods

    AnimationForSegment(SFChartSegment)

    Declaration
    protected override CAAnimation AnimationForSegment(SFChartSegment segment)
    Parameters
    Type Name Description
    SFChartSegment segment
    Returns
    Type Description
    CoreAnimation.CAAnimation
    Overrides
    SFSeries.AnimationForSegment(SFChartSegment)

    CreateSegment()

    Create the SFBubbleSegment.

    Declaration
    protected override SFChartSegment CreateSegment()
    Returns
    Type Description
    SFChartSegment

    Returns a segment.

    Overrides
    SFCartesianSeries.CreateSegment()

    CreateSegments()

    Creates the segments of SFBubbleSeries.

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

    GetGradientEndPoint(SFChartSegment)

    Declaration
    protected override CGPoint GetGradientEndPoint(SFChartSegment segment)
    Parameters
    Type Name Description
    SFChartSegment segment
    Returns
    Type Description
    CoreGraphics.CGPoint
    Overrides
    SFSeries.GetGradientEndPoint(SFChartSegment)

    GetGradientStartPoint(SFChartSegment)

    Declaration
    protected override CGPoint GetGradientStartPoint(SFChartSegment segment)
    Parameters
    Type Name Description
    SFChartSegment segment
    Returns
    Type Description
    CoreGraphics.CGPoint
    Overrides
    SFSeries.GetGradientStartPoint(SFChartSegment)

    OnBindingPathChanged()

    Declaration
    protected override void OnBindingPathChanged()
    Overrides
    SFXyDataSeries.OnBindingPathChanged()
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved