New to Telerik UI for WPFStart a free 30-day trial

Represents a decoration layer over a RadPolarChart. Adds visual representation of Polar and Radial lines and stripes.

Definition

Constructors

Initializes a new instance of the PolarChartGrid class.

C#
public PolarChartGrid()

Fields

GridLineVisibilityProperty

DependencyProperty

Identifies the GridLineVisibility property.

C#
public static readonly DependencyProperty GridLineVisibilityProperty

Identifies the MinorGridLineVisibility property.

C#
public static readonly DependencyProperty MinorGridLineVisibilityProperty

Identifies the MinorPolarLineDashArray property.

C#
public static readonly DependencyProperty MinorPolarLineDashArrayProperty

MinorPolarLineStyleProperty

DependencyProperty

Identifies the MinorPolarLineStyle property.

C#
public static readonly DependencyProperty MinorPolarLineStyleProperty

Identifies the MinorRadialDashArray property.

C#
public static readonly DependencyProperty MinorRadialDashArrayProperty

Identifies the MinorRadialLineStyle property.

C#
public static readonly DependencyProperty MinorRadialLineStyleProperty

Identifies the MinorStripesVisibility dependency property.

C#
public static readonly DependencyProperty MinorStripesVisibilityProperty

PolarLineDashArrayProperty

DependencyProperty

Identifies the PolarLineDashArray property.

C#
public static readonly DependencyProperty PolarLineDashArrayProperty

PolarLineStyleProperty

DependencyProperty

Identifies the PolarLineStyle property.

C#
public static readonly DependencyProperty PolarLineStyleProperty

RadialLineDashArrayProperty

DependencyProperty

Identifies the RadialLineDashArray property.

C#
public static readonly DependencyProperty RadialLineDashArrayProperty

RadialLineStyleProperty

DependencyProperty

Identifies the RadialLineStyle property.

C#
public static readonly DependencyProperty RadialLineStyleProperty

StripesVisibilityProperty

DependencyProperty

Identifies the StripesVisibility dependency property.

C#
public static readonly DependencyProperty StripesVisibilityProperty

Properties

Gets or sets which lines are displayed by this instance.

C#
public PolarGridLineVisibility GridLineVisibility { get; set; }

Gets or sets which lines are displayed by this instance.

C#
public PolarGridLineVisibility MinorGridLineVisibility { get; set; }

MinorPolarLineDashArray

DoubleCollection

Gets or sets the DoubleCollection that defines the pattern of the minor polar (radius) lines within the grid.

C#
public DoubleCollection MinorPolarLineDashArray { get; set; }

Gets or sets the Style instance that defines the appearance of the minor polar (radius) lines within the grid. The style should target the Line type.

C#
public Style MinorPolarLineStyle { get; set; }

MinorRadialDashArray

DoubleCollection

Gets or sets the DoubleCollection that defines the pattern of the minor radial (angle) lines within the grid.

C#
public DoubleCollection MinorRadialDashArray { get; set; }

Gets or sets the Style instance that defines the appearance of the minor radial (angle) lines within the grid. The style should target the type.

C#
public Style MinorRadialLineStyle { get; set; }

Gets or sets the visibility of grid's minor Stripes.

C#
public PolarGridLineVisibility MinorStripesVisibility { get; set; }

PolarLineDashArray

DoubleCollection

Gets or sets the DoubleCollection that defines the pattern of the major polar (radius) lines within the grid.

C#
public DoubleCollection PolarLineDashArray { get; set; }

Gets or sets the Style instance that defines the appearance of the major polar (radius) lines within the grid. The style should target the Line type.

C#
public Style PolarLineStyle { get; set; }

Gets the collection of brushes used to display polar stripes.

C#
public ObservableCollection<Brush> PolarStripeBrushes { get; }

RadialLineDashArray

DoubleCollection

Gets or sets the DoubleCollection that defines the pattern of the major radial (angle) lines within the grid.

C#
public DoubleCollection RadialLineDashArray { get; set; }

Gets or sets the Style instance that defines the appearance of the major radial (angle) lines within the grid. The style should target the type.

C#
public Style RadialLineStyle { get; set; }

Gets the collection of brushes used to display radial stripes.

C#
public ObservableCollection<Brush> RadialStripeBrushes { get; }

Gets or sets which major stripes area displayed by this instance.

C#
public PolarGridLineVisibility StripesVisibility { get; set; }

Methods

When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call . In simplest terms, this means the method is called just before a UI element displays in an application. For more information, see Remarks.

C#
public override void OnApplyTemplate()

Overrides: PresenterBase.OnApplyTemplate()

Occurs when the presenter has been successfully attached to its owning RadChartBase instance.

C#
protected override void OnAttached()

Overrides: ChartElementPresenter.OnAttached()

Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.

C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

The type-specific AutomationPeer implementation.

Occurs when the presenter has been successfully detached from its owning RadChartBase instance.

C#
protected override void OnDetached(RadChartBase oldChart)
Parameters:oldChartRadChartBase

Overrides: ChartElementPresenter.OnDetached(RadChartBase)