在Raphael图表上设置标签颜色

时间:2011-04-15 02:28:18

标签: javascript css charts raphael graphael

我无法弄清楚如何在dot chart示例上设置标签。我确定它与下面的代码有关。我已经尝试设置与饼图一起使用的legendcolor,但看起来它不像点图表。有任何想法吗?感谢。

r.g.dotchart(20, 20, 850, 320, xs, ys, data, {symbol: "o", max: 14, heat:
     

true,axis:“0 0 1 1”,axisxstep:23,   axisystep:6,axisxlabels:axisx,   axisxtype:“”,axisytype:“”,   axisylabels:axisy,   legendcolor: “白”})悬停(函数   (){

3 个答案:

答案 0 :(得分:3)

在调用dotchart后,事实证明这很简单 -

            r.g.txtattr.fill = "white";

答案 1 :(得分:1)

我也很幸运在CSS中定义了这个

text {
  fill:#fff;
}

答案 2 :(得分:0)

看起来它不需要使用颜色参数。在g.dot.js的第64行,它似乎引用了颜色。这些颜色在g.rapheal.js的第35-43行创建。抓住光源并根据需要改变颜色应该不会太难:D