シンプルな 1 列の積み上げ棒グラフがあります。
これは操作に関しては機能しますが、次のことを希望します。1)各バーの色を設定します2)タイプオプションのリストを見つけます(タイプ:「ソフト」)
var b = Raphael("holder"),
data = [[75], [150], [300]];
txtattr = { font: "12px sans-serif" };
//(location_LR, location_TB)
b.text(85, 80, "Simple one column, stacked, bar chart").attr(txtattr);
//(location_LR, location_TB, width, height)
b.barchart(50, 80, 80, 210, data, {stacked: true, type: "soft"});
ありがとう