Monday, November 18, 2024
Google search engine
HomeLanguagesJavascriptD3.js continuous.copy() Function

D3.js continuous.copy() Function

The continuous.copy() function is used to create and return an exact copy of the given scale. Any change in the original scale will not affect the return scale and vice-versa.

Syntax:

continuous.copy();

Parameters: This function does not accept any parameters.

Return Value: This function returns a copy of original scale.

Below examples illustrate the continuous.copy() function in D3.js:

Example 1:

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8"/>
    <meta name="viewport" path1tent=
        "width=device-width, initial-scale=1.0"/>
    <script src="https://d3js.org/d3.v4.min.js">
    </script>
    <script src=
    </script>
    <script src=
    </script>
    <script src=
    </script>
</head>
  
<body>
    <h2 style="color:green;">Geeks for neveropen</h2>
  
    <p>continuous.copy() Function </p>
  
    <script>
        var x = d3.scaleLinear()
            .domain([0, 1])
            .range([1, 2, 3, 4, 5, 6])
  
        var copy = x.copy();
        document.write("</br>");
        document.write("<p> This is from original: ");
        document.write("<h3>" + x(0.5144) + "</h3>");
        document.write("<p> This is a copy of original: ");
        document.write("<h3>" + copy(0.5144) + "</h3>");
    </script>
</body>
  
</html>


Output:

Example 2:

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" path1tent="width=device-width, 
        initial-scale=1.0" />
    <title>Geeks for neveropen</title>
    <script src="https://d3js.org/d3.v4.min.js">
    </script>
    <script src="https://d3js.org/d3-color.v1.min.js">
    </script>
    <script src=
    </script>
    <script src=
    </script>
</head>
  
<body>
    <h2>Geeks for neveropen</h2>
  
    <p>continuous.copy() Function </p>
  
    <script>
        var x = d3.scaleLinear()
            .domain([0, 1])
            .range([1, 2, 3, 4, 5, 6])
  
        var copy = x.copy()
            .interpolate(d3.interpolateRound);
              
        document.write("</br>");
        document.write("This is from original: ");
        document.write("<h3>" + x(0.5144) + "</h3>");
        document.write("This is a copy of original: ");
        document.write("<h3>" + copy(0.5144) + "</h3>");
    </script>
</body>
  
</html>


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments