你们中有人知道如何使用 flot 在条形图旁边放置饼图吗?我希望他们使用相同的数据。
我尝试启用在系列选项中显示饼图,但条形图为空白。
$.plot("#placeholder", data, {
series: {
bars: {
barWidth: 0.2,
},
stack: null,
pie: {
show: true
}
},
yaxis: {
min: 0,
tickFormatter: plnFormatter
},
xaxis: {
mode: "categories",
tickLength: 0,
autoscaleMargin: 0.1
},
grid: {
borderWidth: 0,
hoverable: true,
clickable: true
}
});