ChartDirector 7.1 (.NET Edition)

WPFChartViewer.updateFullRangeV


Usage

[C#]public void updateFullRangeV(string id, {double | DateTime} minValue, {double | DateTime} maxValue, int updateType);
[VB]Public Sub updateFullRangeV(id As String, minValue As {double | DateTime}, maxValue As {double | DateTime} maxValue, updateType As Integer)

Description

Updates the full range of a vertical viewport data scale.

This method is similar to WPFChartViewer.updateFullRangeH except that it is for vertical instead of horizontal data scale. Please refer to WPFChartViewer.updateFullRangeH for the explanation on its usage.

Arguments

ArgumentDefaultDescription
id(Mandatory)The name of the vertical data scale.
minValue(Mandatory)The new minimum value of the data scale.
maxValue(Mandatory)The new maximum value of the data scale.
updateType(Mandatory)The method to update the viewport. Must be one of ViewPortNoUpdate, KeepVisibleRange, ScrollWithMax or ScrollWithMin.

Return Value

None