Axes can be drawn using built-in D3 functions. It is made of Lines, Ticks and Labels. Axis API can be configured using the following script.
<script src = "https://d3js.org/d3-axis.v1.min.js"></script>
The d3.axisLeft() function in D3.js is used to create a left vertical axis. This function will construct a new left-oriented axis generator for the given scale, with empty tick arguments, a tick size of 6 and padding of 3.
Syntax:
d3.axisLeft( scale )
Parameters: This function accepts only one parameter as mentioned above and described below:
- scale: This parameter holds the used scale.
Return Value: This function returns a created left vertical axis.
Below programs illustrate the d3.axisLeft() function in D3.js:
Example 1:
HTML
| <html>  Â<head>     <title>         D3.js d3.axisLeft() Function     </title>  Â    <scripttype="text/javascript"    </script> </head>  Â<body>     <script>         var width = 400, height = 400;         var svg = d3.select("body")             .append("svg")             .attr("width", width)             .attr("height", height);  Â        var yscale = d3.scaleLinear()             .domain([0, 100])             .range([height - 50, 0]);  Â        var y_axis = d3.axisLeft(yscale);  Â        svg.append("g")             .attr("transform", "translate(100, 10)")             .call(y_axis)     </script> </body>  Â</html> | 
Output:
Example 2:
HTML
| <!DOCTYPE html> <html>  Â<head>     <title>         D3.js d3.axisLeft() Function     </title>      Â    <scripttype="text/javascript"    </script>      Â    <style>         svg text {             fill: green;             font: 15px sans-serif;             text-anchor: center;         }     </style> </head>  Â<body>     <script>         var width = 400, height = 400;         var data = [10, 12, 14, 16, 18, 20];         var svg = d3.select("body")             .append("svg")             .attr("width", width)             .attr("height", height);  Â        var yscale = d3.scaleLinear()             .domain([d3.min(data), d3.max(data)])             .range([height - 50, 0]);  Â        var y_axis = d3.axisLeft(yscale);  Â        svg.append("g")             .attr("transform", "translate(100, 20)")             .call(y_axis)     </script> </body>  Â</html> | 
Output:


 
                                    








