'宣言 Public Property RadarChart As RadarChartAppearance
public RadarChartAppearance RadarChart {get; set;}
'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;