This document is archived and information here might be outdated.  Recommended version.


IChartSymbol.Value Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > IC > IChartSymbol Interface > IChartSymbol.Value Property
ArcGIS Developer Help

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,
  System.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