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

axisBottom

Constructs a new bottom-oriented axis generator for the given scale, with empty tick arguments, a tick size of 6 and padding of 3. In this orientation, ticks are drawn below the horizontal domain path.

function axisBottom<Domain extends AxisDomain>(scale: AxisScale<Domain>): Axis<Domain>;
§
axisBottom<Domain extends AxisDomain>(scale: AxisScale<Domain>): Axis<Domain>
[src]

§Type Parameters

§
Domain extends AxisDomain
[src]

§Parameters

§
scale: AxisScale<Domain>
[src]

The scale to be used for axis generation.

§Return Type

§
Axis<Domain>
[src]