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

LegendOptions

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

The options for the legend setup of a visual.

interface LegendOptions {
Height?: string | null;
Position?: LegendPosition | null;
Title?: LabelOptions | null;
Visibility?: Visibility | null;
Width?: string | null;
}

§Properties

§
Height?: string | null
[src]

The height of the legend. If this value is omitted, a default height is used when rendering.

§
Position?: LegendPosition | null
[src]

The positions for the legend. Choose one of the following options:

  • AUTO
    
  • RIGHT
    
  • BOTTOM
    
  • LEFT
    
§
Title?: LabelOptions | null
[src]

The custom title for the legend.

§
Visibility?: Visibility | null
[src]

Determines whether or not the legend is visible.

§
Width?: string | null
[src]

The width of the legend. If this value is omitted, a default width is used when rendering.