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


d3.js color.toString()用法及代码示例


D3.js中的color.toString()函数用于根据CSS对象模型规范返回表示颜色的字符串。

用法:

color.toString()

参数:该函数不接受任何参数。


返回值:此函数根据CSS Object Model规范返回代表颜色的字符串。

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

范例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>color.toString() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.color() function function 
        // with some parameters 
        var color1 = d3.color("red"); 
        var color2 = d3.color("green"); 
        var color3 = d3.color("blue"); 
          
        // Calling the color.toString() function 
        var A = color1.toString(); 
        var B = color2.toString(); 
        var C = color3.toString(); 
          
        // Getting the string representing 
        console.log(A); 
        console.log(B); 
        console.log(C); 
    </script> 
</body> 
  
</html>

输出:

rgb(255, 0, 0)
rgb(0, 128, 0)
rgb(0, 0, 255)

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>color.toString() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Calling the d3.rgb() function 
        // without some parameters 
        var color = d3.rgb(); 
          
        // Calling the color.toString() function 
        var A = color.toString(); 
          
        // Getting the string representing 
        console.log(A); 
    </script> 
</body> 
  
</html>

输出:

rgb(0, 0, 0)

参考: https://devdocs.io/d3~5/d3-color#color_toString



相关用法


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