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

BarChartConfiguration

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

The configuration of a BarChartVisual.

interface BarChartConfiguration {
BarsArrangement?: BarsArrangement | null;
CategoryAxis?: AxisDisplayOptions | null;
CategoryLabelOptions?: ChartAxisLabelOptions | null;
ColorLabelOptions?: ChartAxisLabelOptions | null;
ContributionAnalysisDefaults?: ContributionAnalysisDefault[] | null;
DataLabels?: DataLabelOptions | null;
FieldWells?: BarChartFieldWells | null;
Legend?: LegendOptions | null;
Orientation?: BarChartOrientation | null;
ReferenceLines?: ReferenceLine[] | null;
SmallMultiplesOptions?: SmallMultiplesOptions | null;
SortConfiguration?: BarChartSortConfiguration | null;
Tooltip?: TooltipOptions | null;
ValueAxis?: AxisDisplayOptions | null;
ValueLabelOptions?: ChartAxisLabelOptions | null;
VisualPalette?: VisualPalette | null;
}

§Properties

§
BarsArrangement?: BarsArrangement | null
[src]

Determines the arrangement of the bars. The orientation and arrangement of bars determine the type of bar that is used in the visual.

§
CategoryAxis?: AxisDisplayOptions | null
[src]

The label display options (grid line, range, scale, axis step) for bar chart category.

§
CategoryLabelOptions?: ChartAxisLabelOptions | null
[src]

The label options (label text, label visibility and sort icon visibility) for a bar chart.

§
ColorLabelOptions?: ChartAxisLabelOptions | null
[src]

The label options (label text, label visibility and sort icon visibility) for a color that is used in a bar chart.

§
ContributionAnalysisDefaults?: ContributionAnalysisDefault[] | null
[src]

The contribution analysis (anomaly configuration) setup of the visual.

§
DataLabels?: DataLabelOptions | null
[src]

The options that determine if visual data labels are displayed.

§
FieldWells?: BarChartFieldWells | null
[src]

The field wells of the visual.

§
Legend?: LegendOptions | null
[src]

The legend display setup of the visual.

§
Orientation?: BarChartOrientation | null
[src]

The orientation of the bars in a bar chart visual. There are two valid values in this structure:

  • HORIZONTAL: Used for charts that have horizontal bars. Visuals that use this value are horizontal bar charts, horizontal stacked bar charts, and horizontal stacked 100% bar charts.
  • VERTICAL: Used for charts that have vertical bars. Visuals that use this value are vertical bar charts, vertical stacked bar charts, and vertical stacked 100% bar charts.
§
ReferenceLines?: ReferenceLine[] | null
[src]

The reference line setup of the visual.

§
SmallMultiplesOptions?: SmallMultiplesOptions | null
[src]

The small multiples setup for the visual.

§
SortConfiguration?: BarChartSortConfiguration | null
[src]

The sort configuration of a BarChartVisual.

§
Tooltip?: TooltipOptions | null
[src]

The tooltip display setup of the visual.

§
ValueAxis?: AxisDisplayOptions | null
[src]

The label display options (grid line, range, scale, axis step) for a bar chart value.

§
ValueLabelOptions?: ChartAxisLabelOptions | null
[src]

The label options (label text, label visibility and sort icon visibility) for a bar chart value.

§
VisualPalette?: VisualPalette | null
[src]

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