Force Swiff Chart Generator to automatically evaluate Cross and Bounds values of a given axis.

void object.ResetAxisBounds( int axis_number )

Arguments

object
Required. A Chart object.
axis_number
Required. An integer value that specifies the axis (see table below).

Remarks

The ResetAxisBounds method forces Swiff Chart Generator to automatically calculate the minimum value, the maximum value and the cross value of the selected axis.

The axis is defined by an integer value interpreted as follows:

Code Definition
0
Horizontal Axis
1
Vertical Axis
2
Secondary Horizontal Axis
3
Secondary Vertical Axis

Use the SetAxisMinValue method to specify a custom minimum value of the selected axis.

Use the SetAxisMaxValue method to specify a custom maximum value of the selected axis.

Use the SetAxisCrossValue method to specify a custom cross value of the selected axis.

JSP Sample Code

The following JSP code illustrates use of the ResetAxisBounds method in a JSP page.

chart.ResetAxisBounds( 0 );
chart.ResetAxisBounds( 1 );

// Set the minimum date displayed on the X axis to 05/2007
chart.SetAxisMinValue( 0, "05/2007" );

// Set the minimum value displayed on the Y axis to 110
chart.SetAxisMinValue( 1, 110 );

// All the other values are automatically calculated
chart.ExportAsResponse();

See Also

SetAxisMinValue Method | SetAxisMaxValue Method | SetAxisCrossValue Method

Applies To: Chart Object