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
}
});