Class ChartDefaultView
This class represents the default chart view of RadChart. By default it contains a basic layout with a single chart area, legend, and title within a grid panel. You can still add additional elements (chart areas, legends, titles) as content of the RadChart control; alternatively you can modify the template as well.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ChartDefaultView : DependencyObject, INotifyPropertyChanged, ILogicalItem
Constructors
ChartDefaultView()
Fields
ChartAreaProperty
Identifies the ChartArea dependency property.
Declaration
public static readonly DependencyProperty ChartAreaProperty
Field Value
System.Windows.DependencyProperty
|
ChartLegendPositionProperty
Identifies the ChartLegendPosition dependency property.
Declaration
public static readonly DependencyProperty ChartLegendPositionProperty
Field Value
System.Windows.DependencyProperty
|
ChartLegendProperty
Identifies the ChartLegend dependency property.
Declaration
public static readonly DependencyProperty ChartLegendProperty
Field Value
System.Windows.DependencyProperty
|
ChartTitleProperty
Identifies the ChartTitle dependency property.
Declaration
public static readonly DependencyProperty ChartTitleProperty
Field Value
System.Windows.DependencyProperty
|
Properties
ChartArea
Gets or sets the default chart area of the control.
Declaration
public ChartArea ChartArea { get; set; }
Property Value
ChartArea
|
ChartLegend
Gets or set the default chart legend of the control.
Declaration
public ChartLegend ChartLegend { get; set; }
Property Value
ChartLegend
|
ChartLegendPosition
Gets or sets the chart legend position.
Declaration
public Dock ChartLegendPosition { get; set; }
Property Value
Dock
The chart legend position. |
ChartTitle
Gets or set the default chart title of the control.
Declaration
public ChartTitle ChartTitle { get; set; }
Property Value
ChartTitle
|
Methods
OnPropertyChanged(PropertyChangedEventArgs)
Raises the PropertyChanged event.
Declaration
protected virtual void OnPropertyChanged(PropertyChangedEventArgs e)
Parameters
System.ComponentModel.PropertyChangedEventArgs
e
The System.ComponentModel.PropertyChangedEventArgs instance containing the event data. |
ResetTheme()
Resets the theme.
Declaration
public void ResetTheme()
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|