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

ASPxCloudControl.MaxColor Property

Gets or sets the text color of the most popular item(s).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(typeof(Color), "#1E3695")]
public Color MaxColor { get; set; }

Property Value

Type Default Description
Color "#1E3695"

A Color structure that specifies the text color of the most popular item(s).

Remarks

Each item has an associated weight specified by its CloudControlItem.Value property (unbound mode) or provided by the data source field specified by the ASPxCloudControl.ValueField property (bound mode). Popular items have a higher weight and larger font size. The MaxColor property specifies the text color of the most popular item(s).

Example

The following sample code demonstrates how to customize the appearance of the ASPxCloudControl control.

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register assembly="DevExpress.Web.v8.3, Version=8.3.2.0, Culture=neutral, 
PublicKeyToken=b88d1754d700e49a" namespace="DevExpress.Web.ASPxCloudControl" tagprefix="dxcc" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
    protected void Page_Load(object sender, EventArgs e) {

        ASPxCloudControl ASPxCloudControl1 = new ASPxCloudControl();
        CloudControlItem Item1 = new CloudControlItem("Home", 20, "/home");
        CloudControlItem Item2 = new CloudControlItem("Products", 5, "/products");
        CloudControlItem Item3 = new CloudControlItem("Contacts", 10, "/contacts");
        ASPxCloudControl1.Items.Add(Item1);
        ASPxCloudControl1.Items.Add(Item2);
        ASPxCloudControl1.Items.Add(Item3);
        Page.Form.Controls.Add(ASPxCloudControl1);

        ASPxCloudControl1.ItemBeginText = "{";
        ASPxCloudControl1.ItemEndText = "}";
        ASPxCloudControl1.ItemBeginEndTextColor = System.Drawing.Color.Brown;

        ASPxCloudControl1.MaxColor = System.Drawing.Color.Red;
        ASPxCloudControl1.MinColor = System.Drawing.Color.Green;

        ASPxCloudControl1.LinkStyle.HoverColor = System.Drawing.Color.Pink;
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    </div>
    </form>
</body>
</html>
See Also