amazonka-quicksight-2.0: Amazon QuickSight SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.QuickSight.Types.DataColorPalette

Description

 
Synopsis

Documentation

data DataColorPalette Source #

The theme colors that are used for data colors in charts. The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5.

See: newDataColorPalette smart constructor.

Constructors

DataColorPalette' 

Fields

Instances

Instances details
FromJSON DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

ToJSON DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

Generic DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

Associated Types

type Rep DataColorPalette :: Type -> Type #

Read DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

Show DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

NFData DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

Methods

rnf :: DataColorPalette -> () #

Eq DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

Hashable DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

type Rep DataColorPalette Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DataColorPalette

type Rep DataColorPalette = D1 ('MetaData "DataColorPalette" "Amazonka.QuickSight.Types.DataColorPalette" "amazonka-quicksight-2.0-9P6nV9koXl6GTlt8ZjS7C9" 'False) (C1 ('MetaCons "DataColorPalette'" 'PrefixI 'True) (S1 ('MetaSel ('Just "colors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "emptyFillColor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "minMaxGradient") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))))

newDataColorPalette :: DataColorPalette Source #

Create a value of DataColorPalette with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:colors:DataColorPalette', dataColorPalette_colors - The hexadecimal codes for the colors.

$sel:emptyFillColor:DataColorPalette', dataColorPalette_emptyFillColor - The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

$sel:minMaxGradient:DataColorPalette', dataColorPalette_minMaxGradient - The minimum and maximum hexadecimal codes that describe a color gradient.

dataColorPalette_colors :: Lens' DataColorPalette (Maybe [Text]) Source #

The hexadecimal codes for the colors.

dataColorPalette_emptyFillColor :: Lens' DataColorPalette (Maybe Text) Source #

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

dataColorPalette_minMaxGradient :: Lens' DataColorPalette (Maybe [Text]) Source #

The minimum and maximum hexadecimal codes that describe a color gradient.