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


IStackedChartSymbol.Fixed Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > IS > IStackedChartSymbol Interface > IStackedChartSymbol.Fixed Property
ArcGIS Developer Help

IStackedChartSymbol.Fixed Property

Indicates if the bars are of a fixed length (the alternative is graduated length bars).

[Visual Basic .NET]
Public Property Fixed As Boolean
[C#]
public bool Fixed {get; set;}
[C++]
HRESULT get_Fixed(
  Boolean* flag
);
[C++]
HRESULT put_Fixed(
  VARIANT_BOOL flag
);
[C++]
Parameters
flag [out, retval]

flag is a parameter of type bool* flag [in]
flag is a parameter of type bool

Product Availability

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

Description

This property specifies whether or not the stacked bar or column chart will have a fixed length when used by a CharRenderer. If True then the bar or columns will all be the same length. This is useful to compare the relative ratio of each value field for each feature, while ignoring the difference in overall magnitude between features. If this property is False, then the stacked charts will have varying length, depending on the magnitudes of the values for the fields that comprise the renderer/symbol.

See Also

IStackedChartSymbol Interface