c3js onload改变颜色

时间:2016-03-14 04:09:11

标签: javascript jquery d3.js c3.js

我正在寻找一种方法来更改散点图聊天的颜色,我在图表http://jsfiddle.net/ot19Lyt8/9/

中找到了使用d3代码的示例
           onmouseover: function (d) {
  d3.select(d3.selectAll("circle")[0][d.index]).style("fill", "red");
  d3.select(d3.selectAll("circle")[1][d.index]).style("fill", "red");
 d3.select(d3.selectAll("circle")[3][d.index]).style("fill", "red");
            },

正如您所看到的那样,当您将鼠标悬停在地块上时,绘图颜色会发生变化,但我想修改它,以便为每个绘图加载不同的颜色

1 个答案:

答案 0 :(得分:1)

据我所知,你想默认看到不同颜色的情节点。

jsfiddle相同: - http://jsfiddle.net/ot19Lyt8/104/

代码: -

color: function (color, d) {
            return  colors[d.index];
        },