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

              
                
              
            
!

CSS

              
                svg{
  margin-left:0 auto
}


.tooltip {
            position: absolute;
  text-align:center;
            font-size: 14px;
            width:  auto;
  padding-top:10px;
  padding-left:10px;
  padding-right:10px;
  padding-bottom:10px;
            height: auto;
  border-radius:10px;
            pointer-events: none;
  color:white;
            background-color: black;
}


              
            
!

JS

              
                $.getJSON(
  "https://raw.githubusercontent.com/FreeCodeCamp/ProjectReferenceData/master/global-temperature.json",
  function(x) {
    
  var data=x.monthlyVariance;
    
  var baseTemp = x.baseTemperature;
  
    
	

		// finds the lowest and highest values of variance from base temp
		// will be used to determine color of rectangle
		// increasing the min and max for a wider range
		var colorDomain = d3.extent(data.map(function(each) {
      return baseTemp + each.variance;
    }));
    var margin = { top: 40, right: 20, bottom: 30, left: 40 },
        width = 1060 - margin.left - margin.right,
        height = 600 - margin.top - margin.bottom;
    var months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
    var colors = ["#5D2EE8", "#2F9EEE", "#2FC8EE", "#2DD91A", "#CBF22C", "#F2CE2C", "#F06E1D", "#E61717"];
    //var colors = ["#5e4fa2", "#3288bd", "#66c2a5", "#abdda4", "#e6f598", "#ffffbf", "#fee08b", "#fdae61", "#f46d43", "#d53e4f", "#9e0142"];
		
    var colorRange = d3.scaleQuantile().domain(colorDomain).range(colors);
    
    var svg = d3
    .select("body")
    .append("svg")
    .attr("width", width + margin.left + margin.right)
    .attr("height", height + margin.top + margin.bottom)
    .append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");
    
    var years=[]
    
    var h=460
    
   for(var i=0;i<data.length;i++){
     years.push(data[i].year)
   }
   
     var chart = d3
    .select(".chart")
    .attr("width", width + margin.left + margin.right)
    .attr("height", height + margin.top + margin.bottom)
    .append("g")
    .attr(
      "transform",
      "translate(" + margin.left + 500 + "," + margin.top + 100 + ")"
    );
   
    var x=d3
    .scaleLinear()
    .domain([1753,2015])
    .range([0, width ]);
    
   
    
    var xAxis=d3.axisBottom()
    .scale(x)
    .ticks(25)
    
    
    svg
      .append('g')
      .call(xAxis)
    
    .attr(
      "transform",
      "translate(40,"+ h +")"
    );
    
  	var yScale = d3.scaleLinear().domain([months]).range([0, height]);
   var yAxis = svg.append("g")
						.attr("class", "y axis")
					.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
						.selectAll("text")
						.data(months)
						.enter()
						.append("text")
						.text(function(d) { return d; })
						.attr("x", 0)
						.attr("y", function(d, i) { return (i+1) * 35})
						.attr("text-anchor", "end")
   ;
    
//     getMonths
  
    
    
    function getMonths(y){
      return months[y]
    }
    
     var tooltip = d3
    .select("body")
    .append("div")
    .attr("class", "tooltip")
    .style("opacity", 0);
    
  

    // tooltip mouseover event handler
    var tipMouseover = function(data) {
     
      
      //var color = colorScale(d.manufacturer);
      var color = "black";
      var html =
        "<span><strong><i>" +  data.year +" - " +getMonths(data.month-1)   +"</i></strong></span><br/>" +
          "<span class='tip'><strong> <i>" + ((baseTemp + data.variance).toFixed(2))+"</i></strong></span><br />"+ 
         "<span class='tip'><strong><i> " +  data.variance +"</i></strong></span>"
          ;

      tooltip
        .html(html)
        .style("left", d3.event.pageX + 15 + "px")
        .style("top", d3.event.pageY - 28 + "px")
        .transition()
        .duration(200) // ms
        .style("opacity", 0.9); // started as 0!
    };
    // tooltip mouseout event handler
    var tipMouseout = function(data) {
     
      tooltip
        .transition()
        .duration(300) // ms
        .style("opacity", 0); // don't care about position!
    };
 
    
    
   
    
  
    
    var rectWidth = (width/(2015-1753));
   
    
    svg
      .selectAll(".heatBars")
      .data(data)
      .enter()
      .append("rect")
      .attr("class", "bars")
      .attr("width","3px")
      .attr("height","32px")
     .attr("x", function(d) {
							return rectWidth * (d.year - 1753);
						})
		.attr("y", function(d) {
							return (d.month) *32;
						})
    .on("mouseover", tipMouseover)
    .on("mouseout", tipMouseout)
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
    .style("fill", function(each,i) {
							return colorRange(baseTemp + each.variance);
						});
  
    
   
   
    
    
    
  })
              
            
!
999px

Console