This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > ID > IDataNormalization Interface > IDataNormalization.NormalizationType Property (ArcObjects .NET 10.4 SDK) |
Normalization type.
[Visual Basic .NET] Public Property NormalizationType As esriDataNormalization
[C#] public esriDataNormalization NormalizationType {get; set;}
[C++]
HRESULT get_NormalizationType(
esriDataNormalization* Type
);
[C++]
HRESULT put_NormalizationType(
esriDataNormalization Type
);
[C++]
Parameters Type [out, retval]
Type is a parameter of type esriDataNormalization Type [in]
Type is a parameter of type esriDataNormalization
esriNormalizeByField requires that the NormalizationField be set.
esriNormalizeByLog takes a base 10 logarithm of the data values.
esriNormalizeByPercentageOfTotal requires the NormalizationTotal field to be set to the total data value. This is used to calculate percentages. Each value is divided by the NormalizationTotal and then multiplied by 100. You can use IDataStatistics to generate NormalizationTotal .
esriNormalizeByArea is not implemented.
esriNormalizeByNothing disables normalization.