Skip to main content

Customize the Report Designer Color Scheme (ASP.NET WebForms)

  • 4 minutes to read

Choose a Predefined Color Scheme

The Web Report Designer uses predefined color schemes to display controls.

Each color scheme consists of nine colors. The following table illustrates the available palettes:

Light

Dark

Carmine

Dark Moon

Soft Blue

Dark Violet

Green Mist

Contrast

You can click the control’s smart tag and use its Color Scheme property to change the color scheme.

Create a Custom Color Scheme (Use a Demo Application)

Run Demo: Color Scheme Customization View Example: How to Create a Custom Color Scheme for the Web Report Designer and Document Viewer

To create a custom color scheme in the Color Scheme Customization demo, select a base color scheme from the Color Scheme Customization tab’s drop-down menu.

Use the color picker or specify a color value to change a color. Changes are applied instantly.

After you complete customization, click the Save Changes button to download a ZIP archive.

The file name is {color_scheme}.customization.zip, where {color_scheme} is the applied color scheme’s name (for instance, light.customization.zip).

The archive includes the following files:

  • reporting.{color_scheme}.custom.css (in this example, reporting.light.custom.css)

    Contains changed styles that define the Report Designer’s common appearance.

  • devextreme.{color_scheme}.custom.css (in this example, devextreme.light.custom.css)

    Contains changed styles for DevExtreme UI widgets used in the Report Designer.

  • dx.themebuilder.metadata.json

    Contains metadata that you can use in the Theme Builder to customize DevExtreme widgets.

Click the View Changes button to invoke the Customization Results dialog. This dialog’s tabs list the same changed CSS classes and Theme Builder metadata.

The Reset Changes button resets all the changes.

Once you saved the resulting files, you can apply the created color scheme to your Report Designer control:

  1. Open an ASP.NET Web Forms application that contains the Report Designer.

  2. Copy the reporting and DevExtreme CSS files to the Content folder.

  3. Link the reporting and DevExtreme CSS files as shown below:

    <asp:Content ID="Content" ContentPlaceHolderID="MainContent" runat="server">
    
        <link rel="stylesheet" href="Content/devextreme.light.custom.css" type="text/css" />
        <link rel="stylesheet" href="Content/reporting.light.custom.css" type="text/css" /> 
    
        <dx:ASPxReportDesigner ID="ASPxReportDesigner1" runat="server" ColorScheme="light" Height="800px" Width="900px" >
        </dx:ASPxReportDesigner>
    
    </asp:Content>
    

Run the application to see the result.

Create a Custom Color Scheme Manually

You can customize the Report Designer CSS classes to create a custom color scheme.

1. Customize the DevExtreme CSS Classes

Change the CSS classes for the Report Designer’s internal DevExtreme UI widgets.

Use the DevExtreme Theme Builder to change the colors and save the customization results (in this example, the generic.light.custom.css file for the light color scheme).

Refer to the documentation topic for information on how to use the Theme Builder.

2. Customize the Report Designer CSS Classes

The following tables list the classes that define the Report Designer’s common appearance grouped by categories. These classes correspond to colors in the base palettes.

Color

Background

Borders

1

.dxd-back-primary2

.dxrd-navigation-panel-wrapper .dx-tab

2

.dxd-back-primary

.dxd-back-highlighted:hover:not(.dxd-state-no-hover)

.dxrd-navigation-panel-wrapper .dx-tab:hover

3

.dxd-back-secondary

.dxd-border-primary

4

.dxd-back-highlighted.dxd-state-normal:hover:not(.dxd-state-no-hover)

.dxd-back-highlighted.dxd-state-selected

.dxd-back-highlighted.dxd-state-selected:hover

.dxd-border-secondary

5

.dxd-back-highlighted.dxd-state-active

.dxrd-navigation-panel-wrapper .dx-tab.dx-tab-selected

.dxrd-navigation-panel-wrapper .dx-tab.dx-tab-selected:hover

.dxrd-navigation-panel-wrapper .dx-tab

6

.dxd-back-contrast,

.dxd-back-highlighted.dxd-state-active:hover:not(.dxd-state-no-hover)

7

.dxd-back-contrast .dxd-back-highlighted:hover

.dxd-back-contrast .dxd-back-highlighted.dxd-state-active

9

.dxd-back-accented

.dxd-border-accented

Color

Icons

Text

1

.dxd-state-active .dxd-icon-fill

.dxd-back-contrast .dxd-state-active .dxd-icon-fill

.dxd-state-active .dxd-text-primary

.dxrd-navigation-panel-wrapper .dx-tab.dx-tab-selected

.dxrd-navigation-panel-wrapper .dx-tab.dx-tab-selected .dx-icon

5

.dxd-back-contrast .dxd-icon-fill

6

.dxd-icon-fill

7

.dxrd-navigation-panel-wrapper .dx-icon

.dxd-text-info

8

.dxd-text-primary

.dxrd-navigation-panel-wrapper .dx-tab

9

.dxd-text-accented

The following code snippet demonstrates how to specify colors for each category (for instance, in the designer.light.custom.css file):

.dx-designer-viewport .dxd-back-primary {
    background-color: #d9d9f2;
}

.dx-designer-viewport .dxd-border-primary {
    border-color: #b3b3e6;
}

.dx-designer-viewport .dxd-icon-fill {
    fill: #4040bf;
}

.dx-designer-viewport .dxd-text-info {
    color: #333399;
}

// ...

Important

To apply a Reporting CSS style rather than a DevExtreme style within a color swatch, add the “.dx-designer-viewport “ selector to the style name.

You can also specify styles for individual Report Designer elements. Use a browser’s Developer Tools, locate the corresponding UI element in the page markup…

web-report-designer-inspect-element-css-class

… and declare the assigned CSS class in your CSS file as follows:

// ...

.dx-designer-viewport .dxd-side-panel-tabs-back-color { 
    background-color: #333399; 
} 

3. Apply CSS files to Report Designer

Open the web page that contains the Report Designer control and link the DevExtreme (generic.light.custom.css) and Report Designer (designer.light.custom.css) CSS files as shown below:

<asp:Content ID="Content" ContentPlaceHolderID="MainContent" runat="server">

    <link rel="stylesheet" href="generic.light.custom.css" type="text/css" />
    <link rel="stylesheet" href="designer.light.custom.css" type="text/css" />  

    <dx:ASPxReportDesigner ID="ASPxReportDesigner1" runat="server" ColorScheme="light" Height="800px" Width="900px" >
    </dx:ASPxReportDesigner>

</asp:Content>

Upgrade from Previous Versions

You can use dx-swatch CSS selectors to apply predefined styles to your application’s elements. CSS styles with these selectors are applied to the Report Designer/DocumentViewer widgets. Custom color schemes defined in Reporting have no effect.

To resolve the issue, add the .dx-designer-viewport selector prefix to the names of the reporting CSS styles to raise their priority over DevExtreme styles in the color swatch, as in the following sample class definition:

.dx-designer-viewport .dxd-back-primary {
    background-color: #d9d9f2;
}
.dx-designer-viewport .dxd-back-primary2 {
    background-color: #ececf9;
}

You can also use our online demo to generate the correct style definitions.