Method Property

The Method property returns or sets the method to be used in calculating the classes for class plot, polar class plot, ternary class plot, or 3D XYZ class plot. Returns a Long.

Syntax

object.Method

object.Method = Method

 

Parameter Type Description
Method Long required, grfClassMethod

 

Example 1

This example shows how to set the method for class scatter plots to equal interval.

ClassScatterPlot.Method = grfEqualInterval

Example 2

This example shows how to set the method for class scatter plots to text strings.

ClassScatterPlot.Method = grfNamedClasses

 

'Set the text strings for each class

ClassScatterPlot1.DeleteAllClasses

ClassScatterPlot1.NumberOfClasses = 4

ClassScatterPlot1.AddClass(0,0,"low")

ClassScatterPlot1.AddClass(0,0,"normal")

ClassScatterPlot1.AddClass(0,0,"caution")

ClassScatterPlot1.AddClass(0,0,"extreme")

 

Used by: AutoClassPlot object, AutoPolarClassPlot object, AutoTernaryClassPlot object, AutoXYZClassPlot object