html D3byEX 5.6:序数比例(适应D3.js v4)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html D3byEX 5.6:序数比例(适应D3.js v4)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <meta charset=utf-8>
<head>
    <meta name="description" 
          content="D3.js v4, .scaleOrdinal, ordinal scale" />
</head>
<body>
    <script src="http://d3js.org/d3.v4.min.js"></script>
    <script>
       var colorScale = d3.scaleOrdinal() // v4
                          .domain(['red', 'green', 'blue'])
                          .range(['#ff0000', '#00ff00', '#0000ff']);
       // view console: #ff0000 #00ff00 #0000ff
       console.log(colorScale('red'), colorScale('green'), colorScale('blue'));
    </script>
</body>
</html>

以上是关于html D3byEX 5.6:序数比例(适应D3.js v4)的主要内容,如果未能解决你的问题,请参考以下文章

html D3byEX 5.5:线性比例(适用于D3.js v4)

html D3byEX 8.4:拖放(适应D3.js v4)

html D3byEX:4.7:右轴(适应D3.js v4)

html D3byEX 9.9:环形图(适应D3.js v4)

html D3byEX 7.3:延迟转换(适应D3.js v4)

html D3byEX 7.1:动画颜色(适应D3.js v4)