Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id="graph_container"></div>
              
            
!

CSS

              
                 .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; }
 .y0.axis path, .y0.axis line { stroke: #98abc5; }
 .y1.axis path, .y1.axis line { stroke: #98abc5; }
 .x.axis path, .x.axis line { stroke: #98abc5; }
 .x.axis text { fill: #98abc5; } 
              
            
!

JS

              
                var AllData = [
    {
        date:"Q3-2018",
        values:[
            {name:"Android User Count", value:8589, yoffset:8589, yscale:0, total:13851},
            {name:"iPhone User Count", value:5262, yoffset:13851, yscale:0, total:13851},
            {name:"Traffic from Android Users", value:51534, yoffset:51534, yscale:1, total:72582},
            {name:"Traffic from iPhone Users", value:21048, yoffset:72582, yscale:1, total:72582},
        ]
    },
    {
        date:"Q4-2018",
        values:[
            {name:"Android User Count", value:12552, yoffset:12552, yscale:0, total:20802},
            {name:"iPhone User Count", value:8250, yoffset:20802, yscale:0, total:20802},
            {name:"Traffic from Android Users", value:62762, yoffset:62762, yscale:1, total:95762},
            {name:"Traffic from iPhone Users", value:33000, yoffset:95762, yscale:1, total:95762},
        ]
    },
    {
        date:"Q1-2019",
        values:[
            {name:"Android User Count", value:15456, yoffset:15456, yscale:0, total:27441},
            {name:"iPhone User Count", value:11985, yoffset:27441, yscale:0, total:27441},
            {name:"Traffic from Android Users", value:61824, yoffset:61824, yscale:1, total:86992},
            {name:"Traffic from iPhone Users", value:25168, yoffset:86992, yscale:1, total:86992},
        ]
    }
];

var stack_key_mapping={
  "Android User Count":"Users",
  "iPhone User Count":"Users",
  "Traffic from Android Users":"Traffic",
  "Traffic from iPhone Users":"Traffic"
};

var _barStacked = function() {

  // Main variables
  var element = document.getElementById('graph_container'), height = 300;
  element.innerHTML = '';

  // Define main variables
  var d3Container = d3.select(element),
      margin = {top: 5, right: 40, bottom: 40, left: 40},
      width = d3Container.node().getBoundingClientRect().width - margin.left - margin.right,
      height = height - margin.top - margin.bottom - 5;

  var container = d3Container.append("svg");

  // Add SVG group
  var svg = container
            .attr("width", width + margin.left + margin.right)
            .attr("height", height + margin.top + margin.bottom)
            .append("g")
                .attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var color = d3.scale.ordinal().range(["#36C265", "#397EFF", "#68F095", "#88B1FE"]);
                // Add tooltip
  var round = function(n){return Math.round(n * 100) / 100};
  var tip = d3.tip()
  .attr('class', 'd3-tip')
  .offset([-5, 0])
  .html(function(d) {
    p = d.total>0 ? d.value/d.total : 0;
    p = round(p*100)+' %';
    return d.name + ": "+p+"<br>" + round(d.value) + " out of "+ round(d.total);
  });
  svg.call(tip);
       
  var x0 = d3.scale.ordinal().rangeRoundBands([0, width], .2);
  var x1 = d3.scale.ordinal();

  var y0 = d3.scale.linear().range([height, 0]);
  var y1 = d3.scale.linear().range([height, 0]);

  var xAxis = d3.svg.axis().scale(x0).orient("bottom").ticks(5);
  var yAxisLeft = d3.svg.axis().scale(y0).orient("left").tickFormat(function(d) { return parseInt(d) });
  var yAxisRight = d3.svg.axis().scale(y1).orient("right").tickFormat(function(d) { return parseInt(d) });

  x0.domain(AllData.map(function(d) { return d.date; }));
  x1.domain(['Users','Traffic']).rangeRoundBands([0, x0.rangeBand()], 0.5);

  y0.domain([0, d3.max(AllData, function(d) { return d.values[0].value+d.values[1].value; })]);
  y1.domain([0, d3.max(AllData, function(d) { return Math.max(d.values[2].value+d.values[3].value)})]);

  // Ticks on x-axis and y-axis
  svg.append("g").attr("class", "x axis").attr("transform", "translate(0," + height + ")").call(xAxis);

  svg.append("g").attr("class", "y0 axis").call(yAxisLeft).append("text").attr("transform", "rotate(-90)").attr("y", 6).attr("dy", ".71em").style("text-anchor", "end").style("fill", "#98abc5").text("Users");

  svg.select('.y0.axis').selectAll('.tick').style("fill","#98abc5");

  svg.append("g").attr("class", "y1 axis").attr("transform", "translate(" + width + ",0)")
    .call(yAxisRight).append("text")
    .attr("transform", "rotate(-90)")
    .attr("y", -16)
    .attr("dy", ".71em")
    .style("text-anchor", "end")
    .style("fill", "#98abc5")
    .text("Traffic");

  svg.select('.y1.axis')
    .selectAll('.tick')
    .style("fill","#98abc5");
  // End ticks

  var graph = svg.selectAll(".date")
  .data(AllData)
  .enter()
  .append("g")
  .attr("class", "g")
  .attr("transform", function(d) { return "translate(" + x0(d.date) + ",0)"; });


  graph.selectAll("rect")
    .data(function(d) { return d.values; })
    .enter()
    .append("rect")
    .attr("width", x1.rangeBand())
    .attr("x", function(d) { return x1(stack_key_mapping[d.name]); })
    .attr("y", function(d) { return d.yscale==0 ? y0(d.yoffset) : y1(d.yoffset); })
    .attr("height", function(d) { return height - (d.yscale==0 ? y0(d.value) : y1(d.value)); })
    .style("fill", function(d) { return color(d.name); })
    .on('mouseover', tip.show)
    .on('mouseout', tip.hide);

  //console.log(width);
  // Create legend
  var legend = svg.selectAll(".d3-legend")
  .data(Object.keys(stack_key_mapping))
  .enter()
  .append("g")
  .attr("class", "d3-legend")
  .attr("transform", function(d, i) { return "translate(" + ((i * 150 ) + (width/2-370)) + ", "+(height+20)+")"; });

  // Legend indicator  .attr("x", width/2)
  legend.append("rect")
    .attr("width", 12)
    .attr("height", 12)
    .attr("rx", 8)
    .style("fill", color);

  //Legend text /.attr("x", width/2 + 20)
  legend.append("text")
    .attr("x", 18)
    .attr("y", 2)
    .attr("dy", ".85em")
    .style("text-anchor", "start")
    .style("font-size", 10)
    .text(function(d) { return d; });

};

_barStacked();

              
            
!
999px

Console