menu

UWP

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class LineSegment3D - UWP API Reference | Syncfusion

    Show / Hide Table of Contents

    Class LineSegment3D

    Class implementation for LineSegment3D.

    Inheritance
    System.Object
    ChartSegment
    ChartSegment3D
    LineSegment3D
    Implements
    System.ComponentModel.INotifyPropertyChanged
    Inherited Members
    ChartSegment.AlignHiLoSegment(Double, Double, Double, Double)
    ChartSegment.Interior
    ChartSegment.InteriorProperty
    ChartSegment.IsEmptySegmentInterior
    ChartSegment.Item
    ChartSegment.OnPropertyChanged(String)
    ChartSegment.PolygonPoints
    ChartSegment.PropertyChanged
    ChartSegment.Series
    ChartSegment.SetData(ChartPoint, ChartPoint, ChartPoint, ChartPoint)
    ChartSegment.SetData(ChartPoint, ChartPoint, ChartPoint, ChartPoint, Boolean)
    ChartSegment.SetData(ChartPoint, ChartPoint, ChartPoint, ChartPoint, ChartPoint, ChartPoint, Boolean)
    ChartSegment.SetData(Double[])
    ChartSegment.SetData(IList<Double>, IList<Double>)
    ChartSegment.SetData(IList<Double>, IList<Double>, Brush)
    ChartSegment.SetData(IList<Double>, IList<Double>, Brush, Int32)
    ChartSegment.SetData(IList<Double>, IList<Double>, IList<Double>)
    ChartSegment.SetData(IList<Double>, IList<Double>, IList<Double>, IList<Double>)
    ChartSegment.SetData(IList<Double>, IList<Double>, IList<Double>, IList<Double>, IList<Double>)
    ChartSegment.SetData(List<ChartPoint>)
    ChartSegment.SetData(List<Point>)
    ChartSegment.SetData(Point, Point, Point, Point)
    ChartSegment.SetData(Point, Point, Point, Point, Boolean)
    ChartSegment.SetData(Point, Point, Point, Point, Point, Point)
    ChartSegment.SetData(Point, Point, Point, Point, Point, Point, Boolean)
    ChartSegment.SetVisualBindings(Shape)
    ChartSegment.Stroke
    ChartSegment.StrokeDashArray
    ChartSegment.StrokeDashArrayProperty
    ChartSegment.StrokeProperty
    ChartSegment.StrokeThickness
    ChartSegment.StrokeThicknessProperty
    ChartSegment.XRange
    ChartSegment.YRange
    ChartSegment3D.endDepth
    ChartSegment3D.startDepth
    ChartSegment3D.ZRange
    Namespace: Syncfusion.UI.Xaml.Charts
    Assembly: Syncfusion.SfChart.UWP.dll
    Syntax
    public class LineSegment3D : ChartSegment3D, INotifyPropertyChanged

    Constructors

    LineSegment3D()

    Initializes a new instance of the LineSegment3D class with default settings.

    Declaration
    public LineSegment3D()

    LineSegment3D(List<Double>, IList<Double>, Double, Double, LineSeries3D)

    Initializes a new instance of the LineSegment3D class with default settings.

    Declaration
    public LineSegment3D(List<double> xValues, IList<double> YValues, double startDepth, double endDepth, LineSeries3D lineSeries3D)
    Parameters
    Type Name Description
    System.Collections.Generic.List<System.Double> xValues

    The X Values

    System.Collections.Generic.IList<System.Double> YValues

    The Y Values

    System.Double startDepth

    The Start Depth

    System.Double endDepth

    The End Depth

    LineSeries3D lineSeries3D

    The LineSeries3D

    Fields

    backPolygonCollection

    Declaration
    public Polygon3D[] backPolygonCollection
    Field Value
    Type
    Polygon3D[]

    bottomPolygonCollection

    Declaration
    public Polygon3D[] bottomPolygonCollection
    Field Value
    Type
    Polygon3D[]

    frontPolygonCollection

    Declaration
    public Polygon3D[] frontPolygonCollection
    Field Value
    Type
    Polygon3D[]

    polygonRecycler

    Declaration
    public PolygonRecycler polygonRecycler
    Field Value
    Type
    PolygonRecycler

    topPolygonCollection

    Declaration
    public Polygon3D[] topPolygonCollection
    Field Value
    Type
    Polygon3D[]

    Properties

    XData

    Gets or sets the x value of this segment (data point).

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

    YData

    Gets or sets the y data of this segment (data point).

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

    Methods

    CreateVisual(Size)

    Used for creating UIElement for rendering this segment. This method is not intended to be called explicitly outside the Chart but it can be overridden by any derived class.

    Declaration
    public override UIElement CreateVisual(Size size)
    Parameters
    Type Name Description
    Windows.Foundation.Size size

    Size of the panel

    Returns
    Type Description
    Windows.UI.Xaml.UIElement

    returns UI Element

    Overrides
    ChartSegment.CreateVisual(Size)

    GetRenderedVisual()

    Gets the UIElement used for rendering this segment.

    Declaration
    public override UIElement GetRenderedVisual()
    Returns
    Type Description
    Windows.UI.Xaml.UIElement

    returns UIElement

    Overrides
    ChartSegment.GetRenderedVisual()

    OnSizeChanged(Size)

    Called whenever the segment's size changed. This method is not intended to be called explicitly outside the Chart but it can be overridden by any derived class.

    Declaration
    public override void OnSizeChanged(Size size)
    Parameters
    Type Name Description
    Windows.Foundation.Size size

    The Size

    Overrides
    ChartSegment.OnSizeChanged(Size)

    SetData(List<Double>, IList<Double>, Double, Double)

    Sets the values for this segment. This method is not intended to be called explicitly outside the Chart but it can be overridden by any derived class.

    Declaration
    public override void SetData(List<double> xValues, IList<double> YValues, double startDepth, double endDepth)
    Parameters
    Type Name Description
    System.Collections.Generic.List<System.Double> xValues

    The X Values

    System.Collections.Generic.IList<System.Double> YValues

    The Y Values

    System.Double startDepth

    The Start Depth

    System.Double endDepth

    The End Depth

    Overrides
    ChartSegment.SetData(List<Double>, IList<Double>, Double, Double)

    Update(IChartTransformer)

    Updates the segments based on its data point value. This method is not intended to be called explicitly outside the Chart but it can be overridden by any derived class.

    Declaration
    public override void Update(IChartTransformer transformer)
    Parameters
    Type Name Description
    Syncfusion.UI.Xaml.Charts.IChartTransformer transformer

    Represents the view port of chart control.(refer Syncfusion.UI.Xaml.Charts.IChartTransformer)

    Overrides
    ChartSegment.Update(IChartTransformer)

    Implements

    System.ComponentModel.INotifyPropertyChanged

    Extension Methods

    DateTimeExtension.ToDateTime(Object)
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved