Class ChartAdornmentInfo
Represents the class used for configuring chart adornments for 2D chart.
Implements
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public sealed class ChartAdornmentInfo : ChartAdornmentInfoBase, ICloneable
Remarks
Chart adornments are used to show additional information about the data point.
Examples
This example, we are using PieSeries.
<syncfusion:PieSeries>
<syncfusion:PieSeries.AdornmentInfo>
<syncfusion:ChartAdornmentInfo/>
</syncfusion:PieSeries.AdornmentInfo>
<syncfusion:PieSeries>
ChartAdornmentInfo chartAdornmentInfo = new ChartAdornmentInfo();
pieSeries.AdornmentInfo = chartAdornmentInfo;
Constructors
ChartAdornmentInfo()
Declaration
public ChartAdornmentInfo()
Methods
DrawLineSegment(List<Point>, Path)
Draws the line segment for adornment connector line.
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 |