Skip to main content
A newer version of this page is available. .
Tab

GridFormatConditionColorScale.MinimumColor Property

Specifies the color applied to a cell with the minimum value.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(typeof(Color), "")]
public Color MinimumColor { get; set; }

Property Value

Type Default Description
Color String.Empty

A Color object that specifies the cell color.

Remarks

When the GridFormatConditionColorScale.Format property is set to Custom, you can specify a custom scale that will be used to color cells.

To specify scale colors, use the following properties.

Example

protected void Page_Load(object sender, EventArgs e)
{
   CardViewFormatConditionColorScale Format1 = new CardViewFormatConditionColorScale();
    Format1.FieldName = "Discount";
    Format1.Format = GridConditionColorScaleFormat.Custom;
    Format1.MinimumColor = Color.Green;
    Format1.MaximumColor = Color.Red;
    Format1.MiddleColor = Color.Orange;

    ASPxCardView1.FormatConditions.Add(Format1);
}
See Also