如何更改使用d3.js创建的圆环图的颜色?

时间:2015-11-19 11:33:02

标签: javascript css d3.js donut-chart

我是d3排行榜的新手。我有这个代码创建甜甜圈图表。但是,无法改变颜色。有人可以帮忙吗?

  <body>
    <div id="chart"></div>
    <script src="d3.v3.min.js"></script>
    <script>            

      (function(d3) {
        'use strict';    
        var dataset = [
          { label: 'Abulia', count: 10 }, 
          { label: 'Betelgeuse', count: 20 },
          { label: 'Cantaloupe', count: 30 },
          { label: 'Dijkstra', count: 40 }
        ];

        var width = 360;
        var height = 360;
        var radius = Math.min(width, height) / 3.5;
        var donutWidth = 50;                            // NEW

        var color = d3.scale.category20b();

        var svg = d3.select('#chart')
          .append('svg')
          .attr('width', width)
          .attr('height', height)
          .append('g')
          .attr('transform', 'translate(' + (width / 2) + 
            ',' + (height / 2) + ')');    
        var arc = d3.svg.arc()
          .innerRadius(radius - donutWidth)             // NEW
          .outerRadius(radius);              
        var pie = d3.layout.pie()
          .value(function(d) { return d.count; })
          .sort(null);

        var path = svg.selectAll('path')
          .data(pie(dataset))
          .enter()
          .append('path')
          .attr('d', arc)
          .attr('fill', function(d, i) { 
            return color(d.data.label);
          });

      })(window.d3);
    </script>
  </body>
</html>

我想用这些颜色#65C400,#2290EE,#FFC096来制作甜甜圈。

有没有其他方法可以创建带有自定义值和颜色的圆环图?有人请帮忙。

提前感谢。

1 个答案:

答案 0 :(得分:6)

使用序数色标。

var color = d3.scale.ordinal()
  .domain(["Abulia", "Betelgeuse", "Cantaloupe","Dijkstra"])
  .range(["#65C400" , "#2290EE" , "#FFC096", "#5e5e5e"]);

var dataset = [{
   label: 'Abulia',
   count: 10
 }, {
   label: 'Betelgeuse',
   count: 20
 }, {
   label: 'Cantaloupe',
   count: 30
 }, {
   label: 'Dijkstra',
   count: 40
 }];

var color = d3.scale.ordinal()
  .domain(["Abulia", "Betelgeuse", "Cantaloupe","Dijkstra"])
  .range(["#65C400" , "#2290EE" , "#FFC096", "#5e5e5e"]);

 var width = 360;
 var height = 360;
 var radius = Math.min(width, height) / 3.5;
 var donutWidth = 50; // NEW


 var svg = d3.select('#chart')
   .append('svg')
   .attr('width', width)
   .attr('height', height)
   .append('g')
   .attr('transform', 'translate(' + (width / 2) +
     ',' + (height / 2) + ')');
 var arc = d3.svg.arc()
   .innerRadius(radius - donutWidth) // NEW
   .outerRadius(radius);
 var pie = d3.layout.pie()
   .value(function(d) {
     return d.count;
   })
   .sort(null);

 var path = svg.selectAll('path')
   .data(pie(dataset))
   .enter()
   .append('path')
   .attr('d', arc)
   .attr('fill', function(d, i) {
     return color(d.data.label);
   });
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<div id="chart"></div>