Skip to main content
All docs
V23.2

HeatmapPaletteColorProvider.LegendItemPattern Property

Gets or sets the format string that configures legend item text.

Namespace: DevExpress.XtraCharts.Heatmap

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public string LegendItemPattern { get; set; }

Property Value

Type Description
String

A format string.

Remarks

The LegendItemPattern can contain regular text (displayed as is) and value placeholders in braces. To format numeric values, you can apply Format Specifiers. Use a colon to separate a placeholder and its format specifier.

The following table contains the available placeholders for the HeatmapRangeColorProvider:

Placeholder Description
{V1} Displays a start range value.
{V2} Displays a end range value.
{VP1} Displays a start range value as percentage.
{VP2} Displays a end range value as percentage.

The following table contains the available placeholders for the HeatmapKeyColorProvider:

Placeholder Description
{V} Displays a key value.

In the following image, the “{VP1:0%} - {VP2:0%}” format string is applied to legend items:

Formatted legend items

heatmapRangeColorProvider.LegendItemPattern = "{VP1:0%} - {VP2:0%}";

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the LegendItemPattern property.

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