下面我发布了一些代码和注释,用于制作带有标签hovereffects的简单gRaphael线图(包含的脚本文件可以在http://raphaeljs.com和http://g.raphaeljs.com找到)。代码可以正常工作(因此可以作为其他人从gRaphael线图开始的一个很好的例子),但我有一个关于标记函数的文本参数的问题/请求:
按原样,标签将显示当前列中每个点(this.values [i])的Y值,但我希望显示X值和Y值(X,Y)。我确信它很简单,但到目前为止我还没弄清楚如何做到这一点。添加逗号和空格没问题,只是', ' + this.values[i]
,但我无法弄清楚如何解决X值。 this.attr("x")
是我到目前为止最接近的,但那是纸上的X坐标,而不是图表X轴上的X值; - )
有人可以帮帮我吗?
// make tags at every point on the current column
for (var i = 0; i < this.y.length; i++) {
this.tags.push(
// make tag (x, y, text, degree, radius)
paper.tag(this.x, this.y[i], this.values[i], 0, 4).insertBefore(this).attr([{ fill: "#ffffff" }, { fill: this.symbols[i].attr("fill") }])
);
<html>
<head>
<title></title>
<script src="raphael-min.js"></script>
<script src="g.raphael-min.js"></script>
<script src="g.line-min.js"></script>
<script language="JavaScript">
function graphael() {
var paper = Raphael("paper");
var chartwidth = 800;
var chartheight = 300;
var charttopleftx = 20;
var charttoplefty = 0;
// The chart
var linechart = paper.linechart(charttopleftx, charttoplefty, chartwidth, chartheight,
// The X-coordinate sets
[
[0, 1, 2, 3, 4, 5],
[0, 1, 2, 3, 4, 5],
[0, 1, 2, 3, 4, 5]
],
// The Y-coordinate sets
[
[500, 550, 540, 510, 600, 570],
[500, 525, 400, 450, 390, 490],
[500, 425, 500, 430, 650, 425]
],
// Chart config
{ axis: "0 0 1 1", symbol: "circle", smooth: false, axisxstep: 5 });
// The dots
linechart.symbols.attr({ r: 4 });
// The tags
linechart.hoverColumn(
// show
function onmousein() {
this.tags = paper.set(); // creates a set of tags (to be able to hide them all in one operation)
// make tags at every point on the current column
for (var i = 0; i < this.y.length; i++) {
this.tags.push(
// make tag (x, y, text, degree, radius)
paper.tag(this.x, this.y[i], this.values[i], 0, 4).insertBefore(this).attr([{ fill: "#ffffff" }, { fill: this.symbols[i].attr("fill") }])
);
}
}
,
// hide
function onmouseout() {
this.tags.hide();
}
);
}
</script>
</head>
<body onload="graphael()">
<div id='paper' style='width:900;height:320;'></div>
</body>
</html>
答案 0 :(得分:0)
尝试在chrome中列出对象(CTRL + SHIFT + I-&gt;控制台)。例如 - 为饼图图例中的每个标签获取cy和y。
var pieChart = paper.piechart(w, h, rad, values, {legend: legend, legendpos: "south", minPercent: 0.1, legendothers: "Others"});
for( var i = 0; i < pieChart.labels.length; i++ ) {
var CY=pieChart.labels[i][0][0].cy.animVal.value;
var Y=pieChart.labels[i][1][0].y.animVal[0].value;
}