我遵循了另一个问题的答案,并绝对确定 jquery.jqplot.css 已正确包含,但我仍然无法显示颜色。我尝试了很多渲染器(默认、条形、漏斗),但它们都不起作用。我什至尝试使用增强的图例渲染器无济于事。
这是我用来渲染图表的代码。一切正常,除了传说
plot2 = $j.jqplot('chart_palnie', [serie], {
seriesDefaults: {
renderer:$j.jqplot.FunnelRenderer,
rendererOptions:{
sectionMargin: 8,
widthRatio: 0.3,
showDataLabels: true,
dataLabels: serie_labeluri,
dataLabelThreshold: 0
//dataLabelFormatString: '%s, %d'
}
},
legend: {
show:true,
location: 'e',
showLabels: true,
showSwatch: true
}
});