ArcObjects Library Reference (Display)  

IChartSymbol.Value Property

The value at the index position.

[Visual Basic .NET]
Public Function get_Value ( _
    ByVal index As Integer _
) As Double
[Visual Basic .NET]
Public Sub set_Value ( _
    ByVal index As Integer, _
    ByVal Value As Double _
)
[C#]
public double get_Value (
    int index
);
[C#]
public void set_Value (
    int index,
    double Value
);
[C++]
HRESULT get_Value(
  long index,
  double* Value
);
[C++]
HRESULT put_Value(
  long index,
  double Value
);
[C++]

Parameters

index [in]   index is a parameter of type long Value [out, retval]   Value is a parameter of type double index [in]   index is a parameter of type long Value [in]   Value is a parameter of type double

Product Availability

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

Remarks

Value is used by ChartRenderer when drawing chart symbols for features. The number of values = the number of renderer fields = the number of chart components (e.g. pie slices, bar/columns, stacked chart slices). As chart symbols are created dynamically and drawn by the renderer, Value is the connection to the data values to determine how large the pie slices are for example for a given pie chart for a given feature.

See Also

IChartSymbol Interface