ViewEventArgs.NewSizeType Property

Definition

Gets the unit of measurement for the new size of a view.

public:
 property System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType NewSizeType { System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType get(); void set(System::Windows::Forms::DataVisualization::Charting::DateTimeIntervalType value); };
public System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType NewSizeType { get; set; }
member this.NewSizeType : System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType with get, set
Public Property NewSizeType As DateTimeIntervalType

Property Value

A DateTimeIntervalType enumeration value that represents the unit of measurement for the NewSize property, which represents the width or height of a data view. The default value is Auto.

Remarks

When this property is set to Auto, the unit of measurement for the NewSize property is automatically determined by the Chart control, and will be either a number or a day.

Recall that the NewSize property is always measured as an axis value. Make sure that if you explicitly set the size type, the type matches the axis that the scrollbar belongs to. In other words, do not specify Minutes if the axis does not use DateTime values.

Note that the NewSize property can be set to a new value in the AxisViewChanging event, but cannot be set to a new value for the AxisViewChanged event because the view is already created.

Applies to