Open In App

D3.js symbol() Method

Last Updated : 14 Sep, 2020
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

The d3.symbol() method constructs a new symbol generator with the default settings.

Syntax:

d3.symbol()

Parameters: This function does not take any parameter.

Return Value: This method returns a new symbol generator.

Example:

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 | d3.symbol() Method
    </h3>

    <center>
    <svg id="gfg" width="80" height="100"></svg>
    </center>

    <script>

        d3.select("#gfg")
            .append("path")
            .attr("d", d3.symbol())
            .attr("transform", "translate(25,25)");

    </script>
</body>

</html>

Output:


Next Article

Similar Reads