Friday, September 19, 2025
HomeLanguagesJavascriptD3.js | color.displayable() Function

D3.js | color.displayable() Function

The color.displayable() function in D3.js is used to return true if the color is displayable otherwise false.

Syntax:

color.displayable()

Parameters: This function does not accept any parameters.

Return Value: This function returns true if the color is displayable otherwise false.

Below program illustrate the color.displayable() function in D3.js:

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
      color.displayable() function
  </title>
  
    <script src=
  </script>
</head>
  
<body>
    <script>
        // Calling the d3.color() function
        // with some parameters
        var color1 = d3.color("red");
        var color2 = d3.color("green");
        var color3 = d3.color("blue");
  
        // Calling the color.displayable() function
        var A = color1.displayable();
        var B = color2.displayable();
        var C = color3.displayable();
  
        // Getting the value true or false
        console.log(A);
        console.log(B);
        console.log(C);
    </script>
</body>
  
</html>


Output:

true
true
true

Ref: https://devdocs.io/d3~5/d3-color#color_displayable

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

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS