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

axisTop

Constructs a new top-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 above the horizontal domain path.

function axisTop<Domain extends AxisDomain>(scale: AxisScale<Domain>): Axis<Domain>;
§
axisTop<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]