com.esri.arcgis.cartoUI
Interface IDataHistogram

All Superinterfaces:
Serializable
All Known Implementing Classes:
DataHistogram

public interface IDataHistogram
extends Serializable

Provides access to members used to create a histogram from data values.

Product Availability

Available with ArcGIS Desktop.


Method Summary
 void setData(Object doubleArrayValues)
          Sets data from a array of values (doubles).
 void setHistogramData(Object doubleArrayValues, Object longArrayFrequencies)
          Sets data from a histogram; an array of values (doubles) and a paired array of frequencies (longs).
 

Method Detail

setData

void setData(Object doubleArrayValues)
             throws IOException,
                    AutomationException
Sets data from a array of values (doubles).

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Parameters:
doubleArrayValues - A Variant (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setHistogramData

void setHistogramData(Object doubleArrayValues,
                      Object longArrayFrequencies)
                      throws IOException,
                             AutomationException
Sets data from a histogram; an array of values (doubles) and a paired array of frequencies (longs).

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Parameters:
doubleArrayValues - A Variant (in)
longArrayFrequencies - A Variant (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.