ESRI.ArcGIS.ADF.IMS
Field Property
See Also 
ESRI.ArcGIS.ADF.IMS.Display.Symbol Namespace > ChartValue Class : Field Property




Gets or sets the lookup field for the chart segment.

Syntax

Visual Basic (Declaration) 
Public Property Field As String
Visual Basic (Usage)Copy Code
Dim instance As ChartValue
Dim value As String
 
instance.Field = value
 
value = instance.Field
C# 
public string Field {get; set;}

Remarks

The referenced field can be in the layer table or in a joined table. Performance is generally better if the field name is all upper case. The selected field must also be listed as a SimpleLabelRenderer or ValueMapLabelRenderer LabelField.

  • For shapefiles with no joined tables, the field can be referenced using the short format: Field="AREA"
  • For shapefiles with joined tables, the name of the joined table must be included along with the field: Field="JOINEDTABLE.AREA"
  • For ArcSDE layers without joined tables, the field can be referenced using the short format: Field="AREA". The fully qualified name can also be used: Field="ARCSDENAME.TABLE.AREA"
  • For ArcSDE layers with joined tables, joined fields must be referenced using the fully qualified format: Field="ARCSDENAME.TABLE.AREA"

See Also

© 2010 All Rights Reserved.