我只想使用colorbrewer.js的“蓝色”颜色集中的5种最暗的颜色。我怎么做?我找不到任何有关它的文档。这是我的代码:

var colorScale = d3.scale.quantize()
    .domain([0, maxInteractions*2])
    .range(colorbrewer.Blues[9]);

最佳答案

colorbrewer.Blues[9]只是颜色的数组。您可以使用旧的array.slice()来获取最后五个元素。

colorbrewer.Blues[9]
//["#f7fbff", "#deebf7", "#c6dbef", "#9ecae1", "#6baed6", "#4292c6", "#2171b5", "#08519c", "#08306b"]

colorbrewer.Blues[9].slice(4)
//["#6baed6", "#4292c6", "#2171b5", "#08519c", "#08306b"]

09-25 13:09