Dundas.SharePoint.Charting.WebParts Send comments on this topic.
AxisViewChanged Event
See Also 
Dundas.Charting.WebControl Namespace > Chart Class : AxisViewChanged Event


Called when axis view position/size is changed.

Syntax

Visual Basic (Declaration)  
<DescriptionAttribute("Fires when axis view position/size is changed.")>
<CategoryAttribute("AxisView")>
Public Event AxisViewChanged() As ViewEventHandler
Visual Basic (Usage) Copy Code
Dim instance As Chart
Dim handler As ViewEventHandler
 
AddHandler instance.AxisViewChanged, handler
C#  
[DescriptionAttribute("Fires when axis view position/size is changed.")]
[CategoryAttribute("AxisView")]
public event ViewEventHandler AxisViewChanged()

Event Data

The event handler receives an argument of type ViewEventArgs containing data related to this event. The following ViewEventArgs properties provide information specific to this event.

Property Description
Axis Axis of the event.
ChartArea Chart area of the event.
NewPosition New data view start position.
NewSize New data view size.
NewSizeType New data view size units type.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also