存在jqplot的奇怪問題。我創建了一個包含2個系列和5個標籤的水平條形圖;所有的變量都來自表格。JQPlot - 堆疊水平條形圖 - 堆疊時無條形
var plot1 = $.jqplot('chart1', [
[[SERIESA[0],TITLE[0]], [SERIESA[1],TITLE[1]], [SERIESA[2],TITLE[2]], [SERIESA[3],TITLE[3]], [SERIESA[4],TITLE[4]]],
[[SERIESB[0],TITLE[0]], [SERIESB[1],TITLE[1]], [SERIESB[2],TITLE[2]], [SERIESB[3],TITLE[3]], [SERIESB[4],TITLE[4]]]], {
seriesDefaults: {
renderer:$.jqplot.BarRenderer,
// Show point labels to the right ('e'ast) of each bar.
// edgeTolerance of -15 allows labels flow outside the grid
// up to 15 pixels. If they flow out more than that, they
// will be hidden.
pointLabels: { show: true, location: 'e', edgeTolerance: -15 },
// Rotate the bar shadow as if bar is lit from top right.
shadow: false,
// Here's where we tell the chart it is oriented horizontally.
rendererOptions: {
barDirection: 'horizontal'
}
},
axes: {
yaxis: {
renderer: $.jqplot.CategoryAxisRenderer
}
}
});
這呈現一個可愛的水平條形圖。我想爲2系列的每個標籤下疊,但是當我添加行
stackSeries: true,
我上面的seriesDefaults我的酒吧全部消失。其他一切(標籤,刻度等)保持不變。除了我需要添加的stackSeries選項之外還有什麼嗎?
在此先感謝! Karl
是我的數據是建立在一個非常奇怪的方式(我使用CAML的混合物在MS的SharePoint這樣做,jQuery的和JavaScript),但正如你所說,因爲它正確呈現沒有堆疊,我不明白數據設置會突然成爲堆疊時的問題!然後再次SharePoint可以拋出一些奇怪的錯誤,沒有明顯的原因......感謝您看看! –
卡爾你可以在這種情況下,如果你仍然有這個問題發表一個代碼示例,在這裏展示你的問題http://jsfiddle.net/,所以我們可以看看還有什麼其他的東西? – Boro