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"> var...