MindFusion.Charting Programmer's Guide

RadarChart.Background3D Property

See Also
 






Gets or sets whether the chart is drawn with 3D effect.

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

 Syntax

C#  Copy Code

public Color Background3D { get; }

Visual Basic  Copy Code

Public ReadOnly Property Background3D As Color

 Property Value

An instance of the .NET Color structure.

 Remarks

The property specifies the color of the chart background if the RadarType is set to RadarType.Radar3D or RadarType.Polar3D.

When a 3D chart is drawn, the 3D effect is achieved by changing the color angles of the chart background. That's why no brushes are suitable for painting the background in these types of charts.

If the radar chart is 2D, you can specify different brushes and types of background. Please check the SectionBrushes, SectionPoints and SegmentBrushes properties for further details.

Default value for the Background3D property is Color.Grey.

 See Also