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

Define an Appearance for Painting All Visual Elements

  • 2 minutes to read

This document describes the easiest way to change a chart’s overall look and feel - by choosing one from the built-in appearances.

In XtraCharts, numerous built-in appearance presets are available, that define the look of all the chart’s key elements - its diagram, axes, legend, series, and so on.

Note

To quickly change the appearance of your chart, you can use the Appearance page of the Chart Wizard.

A chart’s appearance is determined by the ChartControl.AppearanceName property, and the list of its presets is returned by the ChartControl.GetAppearanceNames method.

appearance_0

The following images demonstrate a chart with two different appearances.

The property’s value Resulting image
ChartControl.AppearanceName = Light AppearanceName_Light
ChartControl.AppearanceName = Gray AppearanceName_Gray

When an appearance is defined, it’s often required to individually paint each series, or each point within a series (e.g. for a Bar series), and define a palette that is used to paint them. This is described in the next section of this document.

For a step-by-step tutorial, refer to How to: Customize a Chart’s Appearance.

Note

In addition, you can enable your end-users to specify pallettes and appearance for a chart themselves. The corresponding sample project is available in the DevExpress Code Central database at How to provide end-users with the capability to change a chart’s appearance on the fly.

See Also