Version

RadarChart Property

Returns an Appearance object that you can use to access all the formatting properties of a Radar Chart.
Syntax
'Declaration
 
Public Property RadarChart As RadarChartAppearance
public RadarChartAppearance RadarChart {get; set;}
Example


'determines whether or not each area of the chart if filled in with color
UltraChart1.RadarChart.ColorFill = True
'determines the style to be used for drawing the lines
UltraChart1.RadarChart.LineDrawStyle = Infragistics.UltraChart.[Shared].Styles.LineDrawStyle.DashDot
'sets the end anchor for the line
UltraChart1.RadarChart.LineEndCapStyle = Infragistics.UltraChart.[Shared].Styles.LineCapStyle.Round
'sets the thickness of the lines
UltraChart1.RadarChart.LineThickness = 3
'shows/hides the midpoints of the lines.
UltraChart1.RadarChart.MidPointAnchors = True
// determines whether or not each area of the chart if filled in with color
        UltraChart1.RadarChart.ColorFill = True;
        // determines the style to be used for drawing the lines
        UltraChart1.RadarChart.LineDrawStyle = Infragistics.UltraChart.[Shared].Styles.LineDrawStyle.DashDot;
        // sets the end anchor for the line
        UltraChart1.RadarChart.LineEndCapStyle = Infragistics.UltraChart.[Shared].Styles.LineCapStyle.Round;
        // sets the thickness of the lines
        UltraChart1.RadarChart.LineThickness = 3;
        // shows/hides the midpoints of the lines.
        UltraChart1.RadarChart.MidPointAnchors = True;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also