Saturday, October 18, 2025
HomeLanguagesJavascriptD3.js schemePRGn Function

D3.js schemePRGn[] Function

The d3.schemePRGn[] function is a part of the diverging color scheme in d3.js and is used to return a HEX code color string which corresponds to the color from “BrBG” diverging color scheme.

Syntax:

d3.schemePRGn[k];

Parameters: This function accepts a single parameter as mentioned above and described below:

  • k: It is any number in the range [3, 10].

Return Values: This function returns a HEX code color string.

Below examples illustrate the d3.schemePRGn[] 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="https://d3js.org/d3-color.v1.min.js">
    </script>
    <script src=
    </script>
    <script src=
    </script>
</head>
  
<body>
    <h2 style="color:green">Geeks for neveropen</h2>
    <p style="line-height: 1px">
        Different colors from schemePRGn are: 
    </p>
  
    <script>
        document.write("<p><b>" 
            + d3.schemePRGn[10][0] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][1] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][2] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][3] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][4] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][5] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][6] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][7] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][8] + "</p></b>");
        document.write("<p><b>" 
            + d3.schemePRGn[10][9] + "</p></b>"); 
    </script>
</body>
  
</html>


Output:

Example 2:

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, 
                initial-scale=1.0">
    <!--Fetching from CDN of D3.js -->
    <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>
  
    <style>
        div {
            padding: 6px;
            text-align: center;
            vertical-align: middle;
            display: flex;
            justify-content: center;
            width: fit-content;
            margin-top: 2px;
            height: 20px;
        }
    </style>
</head>
  
<body>
    <h2>D3.schemePRGn[k] </h2>
    <div class="box1">
        <span>d3.schemePRGn[10][0]</span>
    </div>
    <div class="box2">
        <span>d3.schemePRGn[10][1]</span>
    </div>
    <div class="box3">
        <span>d3.schemePRGn[10][2]</span>
    </div>
    <div class="box4">
        <span>d3.schemePRGn[10][3]</span>
    </div>
    <div class="box5">
        <span>d3.schemePRGn[10][4]</span>
    </div>
      
    <script>
        // creating different colors 
        // for different value of k
        let color1 =
            d3.schemePRGn[10][0];
        let color2 =
            d3.schemePRGn[10][1];
        let color3 =
            d3.schemePRGn[10][2];
        let color4 =
            d3.schemePRGn[10][3];
        let color5 =
            d3.schemePRGn[10][4];
  
        // Selecting Div using query selector.
        let box1 = document.querySelector(".box1");
        let box2 = document.querySelector(".box2");
        let box3 = document.querySelector(".box3");
        let box4 = document.querySelector(".box4");
        let box5 = document.querySelector(".box5");
  
        // Setting style and BG color of 
        // the particular DIVs
        box1.style.backgroundColor = color1;
        box2.style.backgroundColor = color2;
        box3.style.backgroundColor = color3;
        box4.style.backgroundColor = color4;
        box5.style.backgroundColor = color5;
    </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!
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS