8

我正在运行jqPlot,由于某种原因,应该显示在饼图渲染器图例中的颜色编码方块没有出现。我想知道这是否与我使用 twitter bootstrap 的事实有关?我没有使用任何其他 css 库。

        var plot1 = jQuery.jqplot('chartdiv', [graphData],
        {
            grid: {
                shadow: false, 
                background: '#FFFFFF',                                                                                          
            },
            seriesDefaults: {
                // Make this a pie chart.
                renderer: jQuery.jqplot.PieRenderer,
                rendererOptions: {
                    // Put data labels on the pie slices.
                    // By default, labels show the percentage of the slice.
                    showDataLabels: true,
                    padding: 20,
                    startAngle: 270 
                }
            },
            legend: {
                show: true,
                location: 'e',
                fontSize: 11,
                marginTop: 10,                                
            }
        });
4

1 回答 1

18

你确定你加载的CSSjqPlot正确的(即 url/href 指向正确的位置)?

这是您加载了 jquery.jqplot.css 的代码。

这是你的没有CSS的代码。

这个包含 jquery.jqplot.css 和引导程序(下载时没有jQuery插件,也没有链接img下载附带的文件夹)。这里都显示正确,因此您必须仔细检查hrefjquery.jqplot.css 的。

于 2012-05-29T09:53:56.913 回答