MindFusion.Charting Programmer's Guide

AxesChart.PlotAreaOutlinePen Property

See Also
 





Gets or sets the Brush for filling the plot area.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public Pen PlotAreaOutlinePen { get; }

Visual Basic  Copy Code

Public ReadOnly Property PlotAreaOutlinePen As Pen

 Property Value

An instance of MindFusion.Drawing.Brush. Default value is null.

 Remarks

The PlotAreaBrush is used for filling the area of the chart background that lies between the chart axes. If the PlotAreaBrush is not set, the BackgroundBrush is used for drawing the whole chart background.

Value for the property can be any brush that is derived from MindFusion.Drawing.Brush - SolidBrush, LinearGradientBrush, PathGradientBrush etc.

The border around the plot area is drawn with PlotAreaOutlinePen.

Default value for the PlotAreaBrush property is null, which means the plot area is drawn with the BackgroundBrush.

 See Also