我正在为条形图制作graphael Chart,如下所示。我很难为下面的代码获取 x 轴和 y 轴。
<script type="text/javascript" charset="utf-8">
window.onload = function () {
var r = Raphael("holder");
//r.barchart(x, y, width, height, values(array), opts);
var barChart = r.barchart(100, 100, 300, 200, [100, 50, 50, 50, 50, 50, 20],
{stacked: true,width: 50,
//It is the Space between the bars and the size will be reduced
"gutter":"150%",
colors: [
"000-#d00-#900",
"000-#f64-#c31",
"000-#fc0-#c90",
"000-#3a3-#070",
"000-#2bc-#089",
"000-#00d-#00a",
"000-#808-#404"
]});
};
</script>
上述代码的图表如下
现在我想要 x 和 y 轴值是空的。X 和 Y 刻度。
我尝试了一些没有成功的技术。我在选项中添加了 轴:“0 0 1 1”并尝试了其他一些解决方法,但都是徒劳的。
感谢回复。