1

このラファエル パイ チャートにカスタム カラーを追加するにはどうすればよいですか。http://raphaeljs.com/pie.html HTML テーブルから値を取得し、円グラフに挿入します。現在、以下を使用してセクターを埋めています。ランダマイザーを使用して16進数の色を選択していると思います。わからない。

bcolor = Raphael.hsb(start, 1, 1),
            p = sector(cx, cy, r, angle, angle + angleplus, {fill: "90-" + bcolor + "-" + color, stroke: stroke, "stroke-width": 2}),

セットの16進数の色の配列を取り込めるようにしたい。値は 6 個を超えてはなりません。これが完全なコードです。カスタムグラデーションも設定したいのですが、今はそれほど重要ではありません。

Raphael.fn.pieChart = function (cx, cy, r, values, labels, stroke) {
    var paper = this,
        rad = Math.PI / 180,
        chart = this.set();
    function sector(cx, cy, r, startAngle, endAngle, params) {
        var x1 = cx + r * Math.cos(-startAngle * rad),
            x2 = cx + r * Math.cos(-endAngle * rad),
            y1 = cy + r * Math.sin(-startAngle * rad),
            y2 = cy + r * Math.sin(-endAngle * rad);
        return paper.path(["M", cx, cy, "L", x1, y1, "A", r, r, 0, +(endAngle - startAngle > 180), 0, x2, y2, "z"]).attr(params);
    }
    var angle = 0,
        total = 0,
        start = 0,
        process = function (j) {
            var value = values[j],
                angleplus = 360 * value / total,
                popangle = angle + (angleplus / 2),
                color = Raphael.hsb(start, .90, 1),
                ms = 500,
                delta = 30,
                bcolor = Raphael.hsb(start, 1, 1),
                p = sector(cx, cy, r, angle, angle + angleplus, {fill: "90-" + bcolor + "-" + color, stroke: stroke, "stroke-width": 2}),
                txt = paper.text(cx + (r + delta + 2) * Math.cos(-popangle * rad), cy + (r + delta + 5) * Math.sin(-popangle * rad), labels[j]).attr({fill: "#999999", stroke: "none", opacity: 1, "font-size": 13});
            p.mouseover(function () {
                p.stop().animate({transform: "s1.1 1.1 " + cx + " " + cy}, ms, "elastic");
                //txt.stop().animate({opacity: 1}, ms, "elastic");
            }).mouseout(function () {
                p.stop().animate({transform: ""}, ms, "elastic");
                //txt.stop().animate({opacity: 0}, ms);
            });
            angle += angleplus;
            chart.push(p);
            chart.push(txt);
            start += .1;
        };
    for (var i = 0, ii = values.length; i < ii; i++) {
        total += values[i];
    }
    for (i = 0; i < ii; i++) {
        process(i);
    }
    return chart;
};

$(function () {
    var values = [],
        labels = [];
    $("tr").each(function () {
        values.push(parseInt($("td", this).text(), 10));
        labels.push($("th", this).text());
    });
    $("table").hide();
    Raphael("holder-new", 400, 400).pieChart(100, 100, 50, values, labels, "#fff");
});
4

1 に答える 1

4
bcolor = Raphael.hsb(hue,saturation,value) 

start の値を色相として受け取ります。したがって、0 から始まり、セクターごとに .1 ずつ増加します。それについてランダムなことは何もありません。必要なことを行うには、配列を作成するだけです。

var colors = ['red','green','blue','yellow','#ffaa00','#00ffaa','#aa00ff'];

配列から色を設定します (モジュラスは色配列の長さ内で j の値を保持します)

bcolor = colors[j%colors.length]

セグメントで使用する

p = sector(cx, cy, r, angle, angle + angleplus, 
    {fill: "90-" + bcolor + "-" + bcolor, stroke: stroke, "stroke-width": 1})

これを編集した元のコードでは、2 つの色 (color と bcolor) を使用していましたが、ここでは bcolor のみです。グラデーションが必要な場合は、別の色を追加します。

結果を表示するフィドルを次に示します。

于 2013-01-09T16:16:31.357 に答える