1
$(document).ready(function(){
var l0 = [6, 11, 10, 13, 11, 7];
var l1 = [3, 6, 7, 7, 5, 3];
var l2 = [4, 8, 9, 10, 8, 6];
var l3 = [9, 13, 14, 16, 17, 19];
var l4 = [15, 17, 16, 18, 13, 11];
var plot1 = $.jqplot("chart1", [l0, l1, l2, l3, l4], {
title: "Fill between 2 lines",
axesDefaults: {
pad: 1.05
},
fillBetween: {
series1: 1,
series2: 3,
color: "rgba(227, 167, 111, 0.7)",
baseSeries: 0,
fill: true
},
seriesDefaults: {
rendererOptions: {
smooth: true
}
}
});
});
此示例顯示2個系列之間的填充。 我需要填寫系列1,2和3,4。 堆積填充不符合我的要求。如何在JqPlot中填充該系列?
非常感謝您的提升!我已將它移植到Github。 https://github.com/jqPlot/jqPlot/pull/34 – user1158559