Open In App

D3.js axis.tickSizeInner() Function

Last Updated : 18 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The d3.axis.tickSizeInner() function in D3.js is used to set the inner tick size to the specified value and returns the axis. The inner tick size controls the length of the tick lines, offset from the native position of the axis.

Syntax:

axis.tickSizeInner([size])

Parameters: This function accepts single parameter as mentioned above and described below:

  • size: This parameter holds the size to set the inner and outer tick size.

Return Value: This function returns the axis.

Below programs illustrate the d3.axis.tickSizeInner() function in D3.js:

Example 1:

HTML




<!DOCTYPE html> 
<html
    
<head
    <title
        D3.js | D3.axis.tickSizeInner() Function 
    </title
    
    <script type="text/javascript" 
        src="https://d3js.org/d3.v4.min.js"
    </script
    
    <style
        svg text { 
            fill: green; 
            font: 15px sans-serif; 
            text-anchor: center; 
        
    </style
</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, 1]) 
            .range([height - 50, 0]); 
    
        var y_axis = d3.axisRight() 
            .scale(yscale).tickSizeInner(0);
    
        svg.append("g") 
            .attr("transform", "translate(100, 20)") 
            .call(y_axis)  
    </script
</body
</html>


Output:

Example 2:

HTML




<!DOCTYPE html> 
<html
    
<head
    <title
        D3.js | D3.axis.tickSizeInner() Function 
    </title
    
    <script type="text/javascript" 
        src="https://d3js.org/d3.v4.min.js"
    </script
    
    <style
        svg text { 
            fill: green; 
            font: 15px sans-serif; 
            text-anchor: center; 
        
    </style
</head
    
<body
    <script
        var width = 400, height = 400; 
        var svg = d3.select("body") 
            .append("svg") 
            .attr("width", width) 
            .attr("height", height); 
    
        var xscale = d3.scaleLinear() 
            .domain([0, 10]) 
            .range([0, width - 60]); 
    
        var x_axis = d3.axisBottom() 
            .scale(xscale).tickSizeInner(2);
    
        var xAxisTranslate = height / 2; 
    
        svg.append("g") 
            .attr("transform", "translate(50, " 
                + xAxisTranslate + ")") 
            .call(x_axis)  
    </script
</body
</html>


Output:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads