Skip to main content

Palette.Add(Color) Method

Appends a new palette entry with the specified color to the current palette.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public int Add(
    Color color
)

Parameters

Name Type Description
color Color

A Color object that specifies the first and second colors of the palette entry. This value is assigned to the PaletteEntry.Color property.

Returns

Type Description
Int32

An integer value indicating the position at which the new element was inserted.

Remarks

This method creates a new PaletteEntry object, initializes it with the specified values and adds it to the end of the collection.

Note: In this case the PaletteEntry.Color2 property will also be set to the specified color.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Add(Color) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also