Class ChartAdornmentInfo3D
Represents the class used for configuring chart adornments for 3D chart.
Implements
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public sealed class ChartAdornmentInfo3D : ChartAdornmentInfoBase, ICloneable
Remarks
Chart adornments are used to show additional information about the data point.
Examples
This example, we are using PieSeries3D.
<syncfusion:PieSeries3D>
<syncfusion:PieSeries3D.AdornmentInfo>
<syncfusion:ChartAdornmentInfo3D>
</syncfusion:PieSeries3D.AdornmentInfo>
<syncfusion:PieSeries3D>
ChartAdornmentInfo3D chartAdornmentInfo = new ChartAdornmentInfo();
pieSeries3D.AdornmentInfo = chartAdornmentInfo;
Constructors
ChartAdornmentInfo3D()
Declaration
public ChartAdornmentInfo3D()
Methods
DrawLineSegment(List<Point>, Path)
Draws the line segment for adornment connectorline.
Declaration
protected override void DrawLineSegment(List<Point> points, Path path)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.List<System.Windows.Point> | points | |
System.Windows.Shapes.Path | path |