Working with basic axes

In this recipe, we will focus on introducing the basic concepts and supports of the Axis component in D3 while covering different types and features of Axis as well as their SVG structures.

Getting Ready

Open your local copy of the following file in your web browser:

https://github.com/NickQiZhu/d3-cookbook/blob/master/src/chapter5/basic-axes.html

How to do it...

Let's first take a look at the following code sample:

<div class="control-group"> <button onclick="renderAll('bottom')"> horizontal bottom </button> <button onclick="renderAll('top')"> horizontal top </button> <button onclick="renderAll('left')"> vertical left </button> <button onclick="renderAll('right')"> vertical right </button> </div> <script type="text/javascript"> ...

Get Data Visualization with D3.js Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.