Método D3.js símbolo.tipo()

símbolo.tipo() método t d3.symbolCircle

Sintaxis:

symbol.type([type])

Parámetros: esta función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:

  • tipo: Este es el tipo de símbolo que se establecerá

Valor de retorno: este método no tiene valor de retorno.

Ejemplo 1:

HTML

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
  
    <script src=
        "https://d3js.org/d3.v5.min.js">
    </script>
</head>
  
<body>
  
    <h1 style="text-align:center; color:green;">
        GeeksforGeeks
    </h1>
  
    <h3 style="text-align: center;">
        D3.js | symbol.type() Method
    </h3>
  
    <center>
    <svg id="gfg" width="100" height="100"></svg>
    </center>
  
    <script>
        var sym = d3.symbol()
            .type(d3.symbolSquare).size(500);
        d3.select("#gfg")
            .append("path")
            .attr("d", sym)
            .attr("fill", "green")
            .attr("transform", "translate(50,50)");
  
    </script>
</body>
  
</html>

Producción:

Ejemplo 2:

HTML

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
  
    <script src=
        "https://d3js.org/d3.v5.min.js">
    </script>
</head>
  
<body>
    <h1 style="text-align:center; color:green;">
        GeeksforGeeks
    </h1>
  
    <h3 style="text-align: center;">
        D3.js | symbol.type() Method
    </h3>
  
    <center>
    <svg id="gfg" width="100" height="100"></svg>
    </center>
  
    <script>
        var sym = d3.symbol()
            .type(d3.symbolCircle).size(500);
        d3.select("#gfg")
            .append("path")
            .attr("d", sym)
            .attr("fill", "green")
            .attr("transform", "translate(50,50)");
    </script>
</body>
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *