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


IChartRenderer.FieldTotal Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IC > IChartRenderer Interface > IChartRenderer.FieldTotal Property
ArcGIS Developer Help

IChartRenderer.FieldTotal Property

Field total for the field at the specified index.

[Visual Basic .NET]
Public Function get_FieldTotal ( _
    ByVal Index As Integer _
) As Double
[Visual Basic .NET]
Public Sub set_FieldTotal ( _
    ByVal Index As Integer, _
    ByVal total As Double _
)
[C#]
public double get_FieldTotal (
    int Index
);
[C#]
public void set_FieldTotal (
    int Index,
    double total
);
[C++]
HRESULT get_FieldTotal(
  long Index,
  System.Double* total
);
[C++]
HRESULT put_FieldTotal(
  long Index,
  double total
);
[C++]
Parameters
Index [in]

Index is a parameter of type long total [out, retval]
total is a parameter of type double* Index [in]
Index is a parameter of type long total [in]
total is a parameter of type double

Product Availability

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

Description

This property is used when normalizing by percent of total. To normalize by percent of total you must set this property, it is not calculated for you. You can use CalcRendererValues to calculate.

See Also

IChartRenderer Interface