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

ScatterPlotConfiguration

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

The configuration of a scatter plot.

interface ScatterPlotConfiguration {
DataLabels?: DataLabelOptions | null;
FieldWells?: ScatterPlotFieldWells | null;
Legend?: LegendOptions | null;
Tooltip?: TooltipOptions | null;
VisualPalette?: VisualPalette | null;
XAxisDisplayOptions?: AxisDisplayOptions | null;
XAxisLabelOptions?: ChartAxisLabelOptions | null;
YAxisDisplayOptions?: AxisDisplayOptions | null;
YAxisLabelOptions?: ChartAxisLabelOptions | null;
}

§Properties

§
DataLabels?: DataLabelOptions | null
[src]

The options that determine if visual data labels are displayed.

§
FieldWells?: ScatterPlotFieldWells | null
[src]

The field wells of the visual.

§
Legend?: LegendOptions | null
[src]

The legend display setup of the visual.

§
Tooltip?: TooltipOptions | null
[src]

The legend display setup of the visual.

§
VisualPalette?: VisualPalette | null
[src]

The palette (chart color) display setup of the visual.

§
XAxisDisplayOptions?: AxisDisplayOptions | null
[src]

The label display options (grid line, range, scale, and axis step) of the scatter plot's x-axis.

§
XAxisLabelOptions?: ChartAxisLabelOptions | null
[src]

The label options (label text, label visibility, and sort icon visibility) of the scatter plot's x-axis.

§
YAxisDisplayOptions?: AxisDisplayOptions | null
[src]

The label display options (grid line, range, scale, and axis step) of the scatter plot's y-axis.

§
YAxisLabelOptions?: ChartAxisLabelOptions | null
[src]

The label options (label text, label visibility, and sort icon visibility) of the scatter plot's y-axis.