LineStyle Property
Applies To
Border object, Borders collection object.
Description
Returns or sets the line style for the border. Can be one of the following XlLineStyle constants: xlContinuous, xlDash, xlDashDot, xlDashDotDot, xlDot, xlDouble, xlSlantDashDot, or xlLineStyleNone. Read/write Variant.
Example
This example puts a border around the chart area and the plot area of Chart1.
With Charts("Chart1")
.ChartArea.Border.LineStyle = xlDasDot
With .PlotArea.Border
.LineStyle = xlDashDotDot
.Weight = xlThick
End With
End With