MindFusion.Charting for Silverlight Programmer's Guide
RadarSeries.RadarScatterStrokeThickness Property
See Also
 






Gets or sets the thickness of the scatter stroke.

Namespace: MindFusion.Charting.Silverlight
Assembly: MindFusion.Charting.Silverlight

 Syntax

C#  Copy Code

public double RadarScatterStrokeThickness { get; set; }

Visual Basic  Copy Code

Public Property RadarScatterStrokeThickness As Double

 Property Value

A double value. Default value is 1.

 Remarks

Scatters are drawn when RadarSeries.ScatterType is not ScatterType.Empty.

 Example

The following example creates diamond scatters at a radar chart. The scatters are orange with a red outlining.

C#  Copy Code

RadarSeries serie1 = new RadarSeries();

serie1.ScatterType = ScatterType.Diamond;
serie1.ScatterSize = 20;
serie1.RadarScatterFills.Add(new SolidColorBrush(Colors.Orange));
serie1.RadarScatterStrokes.Add(new SolidColorBrush(Colors.Red));

Visual Basic  Copy Code

Dim serie1 As New RadarSeries()

serie1.ScatterType = ScatterType.Diamond
serie1.ScatterSize = 20
serie1.RadarScatterFills.Add(New SolidColorBrush(Colors.Orange))
serie1.RadarScatterStrokes.Add(New SolidColorBrush(Colors.Red))

 See Also

RadarSeries Members
RadarSeries Class
MindFusion.Charting.Silverlight Namespace