現在、棒グラフ内でデータを生成できないようです。障害が作成した JSON 文字列にあるのか、jQuery コードにあるのかはわかりません。
編集:(配列を単一の値に変更すると、基本的なグラフが生成されますが、まだバーはありません)
JSON 文字列:[{"Name":"Poll Results","Serie":[[10],[14],[14],[19]]}]
jQuery:
<script type="text/javascript">
//Enable JQuery IntelliSense for Visual Studio
///<reference path="jquery-1.3.2-vsdoc.js2 />
jQuery(document).ready(function () {
urlDataJSON = '/Home/BarChartJSON';
$.getJSON(urlDataJSON, "", function (data) {
var dataLines = [];
var dataLabels = "";
$.each(data, function (entryindex, entry) {
dataLines.push(entry['Serie']);
dataLabels = dataLabels + entry['Name'];
});
Plot(dataLines, dataLabels);
function Plot(dataLines, dataLabels) {
options = {
legend: { show: true },
Title: 'Poll Results',
seriesDefaults: {
renderer: $.jqplot.BarRenderer,
pointLabels: { show: true, location: 'e', edgeTolerance: -15 },
shadowAngle: 135,
renderOptions: {
barDirection: 'horizontal'
}
},
axes: {
yaxis: {
renderer: $.jqplot.CategoryAxisRenderer
}
}
}
}
var plot = $.jqplot('barChart', [dataLines], options);
});
});
</script>
<h2>barChart</h2>
<div id="barChart" style="height:600px;width:600px;"></div>
スクリーンショットは、これまでに生成されたものを示しています。