Open In App

D3.js stackOrderAppearance() Method

Last Updated : 14 Sep, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The d3.stackOrderAppearance() method orders the series such that the series having the earliest maximum value (i.e. series with its maximum value at the lowest index) is positioned at the bottom of the stack, and the series that has the latest maximum is placed on the top.

Syntax:

d3.stackOrderAppearance(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.stackOrderAppearance function.

HTML




<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
 
    <script src=
    </script>
</head>
 
<body>
    <h1 style="text-align: center; color: green;">
        GeeksforGeeks
    </h1>
 
    <script>
        var data = [
          {letter: {a: 3840, b: 1920, c: 960, d: 400}},
          {letter: {a: 1600, b: 1440, c: 960, d: 400}},
          {letter: {a:  640, b:  960, c: 640, d: 400}},
          {letter: {a:  320, b:  480, c: 640, d: 400}}
        ];
        var stack = d3.stack()
            .keys(["a", "b", "c", "d"])
            .value((d, key) => d.letter[key])
            .order(d3.stackOrderAppearance);
 
        var series = stack(data);
        console.log(series);
 
    </script>
</body>
 
</html>


Output:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads