com.esri.arcgis.carto
Interface IBubbleSeriesProperties

All Superinterfaces:
Serializable
All Known Implementing Classes:
IBubbleSeriesPropertiesProxy

public interface IBubbleSeriesProperties
extends Serializable

Provides access to members that control bubble series.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void getNormalizedRadiusMinMax(double[] minval, double[] maxval)
          Get normalized radius min max (percent of Y values).
 IDataGraphTSymbolProperties getSymbolProperties()
          Properties of the bubble symbol.
 int getTransparency()
          Transparency level.
 boolean isNormalizedRadius()
          Properties of normalized Radius.
 void setNormalizedRadius(boolean bNormalized)
          Properties of normalized Radius.
 void setNormalizedRadiusMinMax(double minval, double maxval)
          Set normalized radius min max (percent of Y values).
 void setTransparency(int pValue)
          Transparency level.
 

Method Detail

getSymbolProperties

IDataGraphTSymbolProperties getSymbolProperties()
                                                throws IOException,
                                                       AutomationException
Properties of the bubble symbol.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
A reference to a com.esri.arcgis.carto.IDataGraphTSymbolProperties
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTransparency

int getTransparency()
                    throws IOException,
                           AutomationException
Transparency level.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pValue
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setTransparency

void setTransparency(int pValue)
                     throws IOException,
                            AutomationException
Transparency level.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

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

isNormalizedRadius

boolean isNormalizedRadius()
                           throws IOException,
                                  AutomationException
Properties of normalized Radius.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The bNormalized
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setNormalizedRadius

void setNormalizedRadius(boolean bNormalized)
                         throws IOException,
                                AutomationException
Properties of normalized Radius.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

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

setNormalizedRadiusMinMax

void setNormalizedRadiusMinMax(double minval,
                               double maxval)
                               throws IOException,
                                      AutomationException
Set normalized radius min max (percent of Y values).

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
minval - The minval (in)
maxval - The maxval (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getNormalizedRadiusMinMax

void getNormalizedRadiusMinMax(double[] minval,
                               double[] maxval)
                               throws IOException,
                                      AutomationException
Get normalized radius min max (percent of Y values).

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
minval - The minval (out: use single element array)
maxval - The maxval (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.