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

AxisScale

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

The scale setup options for a numeric axis display.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

interface AxisScale {
Linear?: AxisLinearScale | null;
Logarithmic?: AxisLogarithmicScale | null;
}

§Properties

§
Linear?: AxisLinearScale | null
[src]

The linear axis scale setup.

§
Logarithmic?: AxisLogarithmicScale | null
[src]

The logarithmic axis scale setup.