ArcObjects Library Reference (Display)  

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(
  VARIANT_BOOL* flag
);
[C++]
HRESULT put_Fixed(
  VARIANT_BOOL flag
);
[C++]

Parameters

flag [out, retval]   flag is a parameter of type VARIANT_BOOL flag [in]   flag is a parameter of type VARIANT_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