我正在运行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,
}
});