Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the border around the chart region.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the border around the chart region.{excerpt}
{signature:C#}
 public ChartLine BorderLine{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property BorderLine() As ChartLine
Remarks
By
{signature}
{remarks}
By default, the borderline of [Chart.ChartArea] for new charts are visible. All other border lines for all other components of a chart are not visible by default.


If a default borderline is visible, which is the case for Chart area borderline, the default configuration for the line is:
Color:

* [Color|ChartLine.Color]: Color.SystemColor.AutomaticLine
Style:

* [Style|ChartLine.Style]: ChartLine.LineStyle.Solid
Weight:

* [Weight|ChartLine.Weight]: ChartLine.LineWeight.Narrow


If a default borderline is invisible, as is the case with legends, data labels, titles, and axes, the defaults are as follows:
Color:

* [Color|ChartLine.Color]: Color.SystemColor.Black
Style:

* [Style|ChartLine.Style]: ChartLine.LineStyle.None
Weight:

* [Weight|ChartLine.Weight]: ChartLine.LineWeight.Narrow

{remarks}