我製作了一個customAttribute,用於繪製一條線連接圓圈中的2個點(請參閱http://dl.dropbox.com/u/3319121/problem.png上的圖像)。筆畫中的Raphael.js漸變
r.customAttributes.line = function (xloc, yloc, start, end, total, R) {
var alphas = 360/total * start,
alphae = 360/total * end,
as = (90 - alphas) * Math.PI/180,
ae = (90 - alphae) * Math.PI/180,
xs = xloc + R * Math.cos(as),
ys = yloc - R * Math.sin(as),
xe = xloc + R * Math.cos(ae),
ye = yloc - R * Math.sin(ae),
path;
path = [["M", xs, ys], ["Q", xloc, yloc, xe, ye]];
return {path: path};
};
現在我想添加一個漸變。所以你將在點2的點1上有一個從藍色漸變的漸變,以使視覺更加平滑。這對於Raphael.js中的對象是可能的,例如參見http://raphaeljs.com/ichart.html,並且在stackoverflow上已經有答案,可以解答(http://jsfiddle.net/L92Ch/538/),但要在筆畫中添加漸變(不填充)在raphael.js中似乎是不可能的。
有沒有人有解決這個問題的辦法?
這似乎是一個重複http://stackoverflow.com/questions/4771517/raphael-js-path-line-with-gradient/11053049#11053049 –