|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IChartSymbol
Provides access to properties common to all type of chart symbols.
Use this interface to set up generic properties for a chart symbol. Chart symbols are used by the ChartRenderer to draw features with pie, bar/column, and stacked bar/column charts.
Chart symbols are data-driven and behave differently from most other symbols. Chart symbols are not designed to be used outside the context of a ChartRenderer.
IBarChartSymbol
,
IChartSymbol
Method Summary | |
---|---|
double |
getMaxValue()
The maximum value. |
double |
getValue(int index)
The value at the index position. |
void |
setMaxValue(double value)
The maximum value. |
void |
setValue(int index,
double value)
The value at the index position. |
Method Detail |
---|
double getValue(int index) throws IOException, AutomationException
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setValue(int index, double value) throws IOException, AutomationException
index
- The index (in)value
- The value (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.double getMaxValue() throws IOException, AutomationException
When building a ChartRenderer through code and having varying size charts, you need to set this property so that the renderer's legend information is correct. This property should be set to the largest value for any field for all of the features in the layer.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setMaxValue(double value) throws IOException, AutomationException
value
- The value (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |