Version

Border Property (UltraChart)

The set of all appearance-related properties that apply to the border, including color, draw style, and thickness.
Syntax
'Declaration
 
Public Property Border As BorderAppearance
public BorderAppearance Border {get; set;}
Example
'sets the color of the border
UltraChart1.Border.Color = Color.Red
'determines how round the corners of the chart are
UltraChart1.Border.CornerRadius = 45
'determines the style used to draw the line
UltraChart1.Border.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dash
'whether to raise the border or not
UltraChart1.Border.Raised = True
'how thick to make the border
UltraChart1.Border.Thickness = 3
// sets the color of the border
     UltraChart1.Border.Color = Color.Red;
     // determines how round the corners of the chart are
     UltraChart1.Border.CornerRadius = 45;
     // determines the style used to draw the line
     UltraChart1.Border.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dash;
     // whether to raise the border or not
     UltraChart1.Border.Raised = true;
     // how thick to make the border
     UltraChart1.Border.Thickness = 3;
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