gpt4 book ai didi

raphael - 为 graphael 条形图添加标签?

转载 作者:行者123 更新时间:2023-12-01 12:57:30 25 4
gpt4 key购买 nike

我正在使用 graphael 为我的数据绘制条形图,但不知道如何为条形图添加标签。

var r = Raphael(element);
r.hbarchart(10, 20, 500, 220, barData, {colors:colors, type:'square'}).hover(fin, fout);

最佳答案

在您的图表对象上调用label

  var barChart = r.g.barchart(0, 0, 200, 200, [3,2,1]);
barChart.label(['a','b','c']);

关于raphael - 为 graphael 条形图添加标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8936837/

25 4 0