Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataColorPalette

import type { DataColorPalette } from "https://aws-api.deno.dev/v0.3/services/quicksight.ts?docs=full";

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.

interface DataColorPalette {
Colors?: string[] | null;
EmptyFillColor?: string | null;
MinMaxGradient?: string[] | null;
}

§Properties

§
Colors?: string[] | null
[src]

The hexadecimal codes for the colors.

§
EmptyFillColor?: string | null
[src]

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

§
MinMaxGradient?: string[] | null
[src]

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