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

PanelConfiguration

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

A collection of options that configure how each panel displays in a small multiples chart.

interface PanelConfiguration {
BackgroundColor?: string | null;
BackgroundVisibility?: Visibility | null;
BorderColor?: string | null;
BorderStyle?: PanelBorderStyle | null;
BorderThickness?: string | null;
BorderVisibility?: Visibility | null;
GutterSpacing?: string | null;
GutterVisibility?: Visibility | null;
Title?: PanelTitleOptions | null;
}

§Properties

§
BackgroundColor?: string | null
[src]

Sets the background color for each panel.

§
BackgroundVisibility?: Visibility | null
[src]

Determines whether or not a background for each small multiples panel is rendered.

§
BorderColor?: string | null
[src]

Sets the line color of panel borders.

§
BorderStyle?: PanelBorderStyle | null
[src]

Sets the line style of panel borders.

§
BorderThickness?: string | null
[src]

Sets the line thickness of panel borders.

§
BorderVisibility?: Visibility | null
[src]

Determines whether or not each panel displays a border.

§
GutterSpacing?: string | null
[src]

Sets the total amount of negative space to display between sibling panels.

§
GutterVisibility?: Visibility | null
[src]

Determines whether or not negative space between sibling panels is rendered.

§
Title?: PanelTitleOptions | null
[src]

Configures the title display within each small multiples panel.