/// <summary> /// Occurs when the presenter has been successfully attached to its owning <see cref="RadChartBase" /> instance. /// </summary> protected override void OnAttached() { base.OnAttached(); RadPolarChart polarChart = this.chart as RadPolarChart; if (polarChart.RadialAxis != null) { this.ChartAxisChanged(null, polarChart.RadialAxis); } if (polarChart.PolarAxis != null) { this.ChartAxisChanged(null, polarChart.PolarAxis); } }
/// <summary> /// Initializes a new instance of the RadPolarChartAutomationPeer class. /// </summary> public RadPolarChartAutomationPeer(RadPolarChart owner) : base(owner) { }
internal PolarAnnotationCollection(RadPolarChart owner) : base(owner) { }