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

axisRight

Constructs a new right-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 to the right of the vertical domain path.

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