ArcObjects Library Reference (Carto)  

IChartRenderer.ColorScheme Property

Color scheme (user interface property only).

[Visual Basic .NET]
Public Property ColorScheme As String
[C#]
public string ColorScheme {get; set;}
[C++]
HRESULT get_ColorScheme(
  BSTR* Name
);
[C++]
HRESULT put_ColorScheme(
  BSTR Name
);
[C++]

Parameters

Name [out, retval]   Name is a parameter of type BSTR Name [in]   Name is a parameter of type BSTR

Product Availability

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

Description

This property is a string that represents the name of a random color ramp used to determine the color of the pie slices, individual bars/columns, or stacked chart slices in the user interface. This property doesn't affect the display of charts on the map. If you are building a chart renderer through code, and assigning colors using a random color ramp to your slices, bars, or columns, then it's good practice to set this property to the name of the ramp you use. This just keeps the user interface up to date with your renderer.

See Also

IChartRenderer Interface