0

我想使用这个饼图: http ://www.jqplot.com/tests/pie-donut-charts.php

但对于网格我想要一个透明的背景。根据选项:http ://www.jqplot.com/docs/files/jqPlotOptions-txt.html我可以更改颜色,但他们没有说明透明度,请问有什么想法吗?

4

1 回答 1

0

你的问题不是很清楚。

据我所知,我已经为你准备了这个例子: JsFiddle

$(document).ready(function () {
    var data = [
        ['Heavy Industry', 12],
        ['Retail', 9],
        ['Light Industry', 14],
        ['Out of home', 16],
        ['Commuting', 7],
        ['Orientation', 9]
    ];
    var plot2 = jQuery.jqplot('chart1', [data], {
        seriesDefaults: {
            renderer: jQuery.jqplot.PieRenderer,
            rendererOptions: {
                // Turn off filling of slices.
                fill: false,
                showDataLabels: true,
                // Add a margin to seperate the slices.
                sliceMargin: 0,
                // stroke the slices with a little thicker line.
                lineWidth: 0,
                shadowOffset: 0,
                shadowAlpha: 0
            }
        },
        legend: {
            show: true,
            location: 'e'
        }
    });
});
于 2013-06-14T22:07:01.093 回答