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

axisLeft

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

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