Back to Devexpress

PaletteException Class

corelibraries-devexpress-dot-xtracharts-63fd18c4.md

latest2.1 KB
Original Source

PaletteException Class

An exception that is thrown if an error occur when processing the palettes in a chart control.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public class PaletteException :
    Exception
vb
Public Class PaletteException
    Inherits Exception

Remarks

This exception can be thrown in different cases when working with palettes in XtraCharts.

Exception TextReasonSolution
The palette is a default palette and can’t be modified.You’re trying to modify one of the default palettes in XtraCharts. This isn’t permitted.Copy an existing palette via its Palette.Clone method and modify it how you need.
The chart doesn’t contain a palette with the PaletteName name.There’s no palette with the name you specified when trying to access the palette within the palette repository.Make sure that the palette repository contains a palette with the specified name, and you’ve entered it correctly.
Can’t add a palette which has an empty name (“”) to the palette repository. Please, specify a name for the palette.You’re trying to add a palette with an empty name to the repository.Specify a non-empty name for the palette.
The palette with the PaletteName name already exists in the repository.A palette with the specified name already exists.Specify a different name for the palette.

Inheritance

Object Exception PaletteException

See Also

PaletteException Members

DevExpress.XtraCharts Namespace