Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

D3.js: Changing the color of the bar depending on the value [closed]

I have been experimenting with d3.js bar chart, I want to change the color depending on the value of the y axis, how do I achieve this. I tried adding linear gradients but then I lose control over it.

The code I am working on is based on this: http://bost.ocks.org/mike/bar/

like image 311
QuikProBroNa Avatar asked Jan 27 '16 13:01

QuikProBroNa


2 Answers

Add the following attributes to adapt the color:

var data = [4, 8, 15, 16, 23, 42];

var width = 420,
  barHeight = 20;

var x = d3.scale.linear()
  .domain([0, d3.max(data)])
  .range([0, width]);

var chart = d3.select(".chart")
  .attr("width", width)
  .attr("height", barHeight * data.length);

var bar = chart.selectAll("g")
  .data(data)
  .enter().append("g")
  .attr("transform", function(d, i) {
    return "translate(0," + i * barHeight + ")";
  });

bar.append("rect")
  .attr("width", x)
  // add this attribute to change the color of the rect
  .attr("fill", function(d) {
    if (d > 25) {
      return "red";
    } else if (d > 10) {
      return "orange";
    }
    return "yellow";
  })
  .attr("height", barHeight - 1);

bar.append("text")
  .attr("x", function(d) {
    return x(d) - 3;
  })
  .attr("y", barHeight / 2)
  .attr("dy", ".35em")
  // add this attribute to change the color of the text
  .attr("fill", function(d) {
    if (d > 10) {
      return "white";
    }
    return "black";
  })
  .text(function(d) {
    return d;
  });
.chart text {
  font: 10px sans-serif;
  text-anchor: end;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>

<svg class="chart"></svg>
like image 88
Elfayer Avatar answered Oct 13 '22 11:10

Elfayer


You will have to use the quantile scale to range the color. You can get documentation here https://github.com/mbostock/d3/wiki/Quantitative-Scales

Also you can refer http://colorbrewer2.org/ for range of colors.

var data = [4, 8, 15, 16, 23, 42];

var colors = ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"];

var colorScale = d3.scale.quantile()
  .domain([0, colors.length - 1, d3.max(data, function(d) {
    return d;
  })])
  .range(colors);


var x = d3.scale.linear()
  .domain([0, d3.max(data)])
  .range([0, 420]);

d3.select(".chart")
  .selectAll("div")
  .data(data)
  .enter().append("div")
  .style("width", function(d) {
    return x(d) + "px";
  })
  .style("background-color", function(d) {
    return colorScale(d);
  })
  .text(function(d) {
    return d;
  });
.chart div {
  font: 10px sans-serif;
  background-color: steelblue;
  text-align: right;
  padding: 3px;
  margin: 1px;
  color: white;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>

<div class="chart"></div>
like image 35
murli2308 Avatar answered Oct 13 '22 12:10

murli2308