D3.js stackOrderAscending() Method

The d3.stackOrderAscending() method orders the series based on the ordering of the keys as defined by the stack.keys() method. The series with the smallest sum with be placed on the bottom, ascending upwards to the largest.

Syntax:

d3.stackOrderAscending(series)

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

  • series: This is the series based on the ordering of the keys to be ordered.

Return Value: This method returns no value.

Example: Ordering the stack using d3.stackOrderAscendingfunction.

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;">
        w3wiki
    </h1>
 
    <script>
        var data = [
          {a: 3840, b: 1920, c: 960, d: 400},
          {a: 1600, b: 1440, c: 960, d: 400},
          {a:  640, b:  960, c: 640, d: 400},
          {a:  320, b:  480, c: 640, d: 400}
        ];
        var stack = d3.stack()
            .keys(["a", "b", "c", "d"])
            .order(d3.stackOrderAscending)
            .offset(d3.stackOffsetNone);
 
        var series = stack(data);
        console.log(series);
 
    </script>
</body>
 
</html>


Output:


Contact Us