当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js continuous.tickFormat()用法及代码示例


Continuous.tickFormat()函数用于更改刻度值的格式。它返回一个适合显示刻度值的数字格式函数。

用法:

continuous.tickFormat( count, specifier )

参数:该函数接受上面提到和下面描述的两个参数。

  • count:它是要使用的刻度值的数量。它是一个可选参数。
  • specifier:它是一个字符串,指定要使用的格式。它是一个可选参数。

返回值:此函数不返回任何内容。

以下示例程序旨在说明D3.js中的Continuous.tickFormat()函数:



范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
    <script src= 
        "https://d3js.org/d3-color.v1.min.js"> 
    </script> 
    <script src= 
        "https://d3js.org/d3-interpolate.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-scale-chromatic.v1.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
  
    <p>continuous.tickFormat() Function </p> 
  
    <script> 
        var x = d3.scaleLinear() 
            .domain([0, 1]) 
            .range([1, 2, 3, 4, 5, 6]); 
  
        var ticks = x.ticks(3) 
        var tickFormat = x.tickFormat(3, " %"); 
  
        document.write("<h3>" + 
            ticks.map(tickFormat) + 
            "</h3>"); 
    </script> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
    <script src= 
        "https://d3js.org/d3-color.v1.min.js"> 
    </script> 
    <script src= 
        "https://d3js.org/d3-interpolate.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-scale-chromatic.v1.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
  
    <p>continuous.tickFormat() Function </p> 
  
    <script> 
        var x = d3.scaleLinear() 
            .domain([0, 1]) 
            .range(["red", "blue", "green", "orange"]); 
  
        var ticks = x.ticks(5) 
        var tickFormat = x.tickFormat(5, " $"); 
  
        document.write("<h3>" + 
            ticks.map(tickFormat) + 
            "</h3>") 
    </script> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js continuous.tickFormat() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。