Xceed Workbooks for .NET v3.0 Documentation
Xceed.Workbooks.NET Assembly / Xceed.Workbooks.NET Namespace / Area Class / InvertedColor Property


In This Topic
    InvertedColor Property
    In This Topic
    Gets or sets the Area's inverted Color.
    Syntax
    'Declaration
     
    
    Public Property InvertedColor As Nullable(Of Color)
    'Usage
     
    
    Dim instance As Area
    Dim value As Nullable(Of Color)
     
    instance.InvertedColor = value
     
    value = instance.InvertedColor
    public Nullable<Color> InvertedColor {get; set;}
    Remarks

    This is the color that will be used for negative values. For example, a ColumnSeries could have a value of-5; in that case, the Area associated with said value could make use of this color.

    Note, however, that to use this property, the InvertIfNegative property must be set to true.

    The default value is null, which doesn't apply any color to the Area.

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also