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

SeriesBase.Colorizer Property

Gets or sets the Series Point Colorizer used by this series.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
[XtraSerializableProperty(XtraSerializationVisibility.Content, true)]
public IColorizer Colorizer { get; set; }

Property Value

Type Description
IColorizer

An object of the class implementing the IColorizer interface.

Example

To use the Range Colorizer, perform the following steps.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace RangeColorizerExample {
    static class Program {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main() {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}
See Also