Provides access to members that control the classification methods that require only a minimum and maximum value to classify.
Description
The IClassifyMinMax interface provides properties for setting the Minimum and Maximum values to generate class breaks instead of setting data values using the IClassify::SetHistogramData method. After setting the Minimum and Maximum properties call the IClassify.Classify method to generate the class breaks.
Both the Minimum and Maximum properties must be set. Subsequently, using the IClassify::SetHistogramData method will override the Minimum and Maximum values.
Members
Name | Description | |
---|---|---|
Maximum | The maximum value. | |
Minimum | The minimum value. |
IClassifyMinMax.Maximum Property
The maximum value.
Public WriteOnly Property Maximum
public void Maximum {set;}
Description
Set the Maximum value in order to generate class breaks with the IClassify.Classify method. You also will need to set the Minimum value before generating the class breaks.
IClassifyMinMax.Minimum Property
The minimum value.
Public WriteOnly Property Minimum
public void Minimum {set;}
Description
Set the Minimum value in order to generate class breaks with the IClassify.Classify method. You will also need to set the Maximum value before generating the class breaks.
Classes that implement IClassifyMinMax
Classes | Description |
---|---|
DefinedInterval | Defines a defined interval classification method. |
EqualInterval | Defines an equal interval classification method. |