我正在使用JqplotfillBetween
的属性来填充具有指定颜色的系列之间的区域:
fillBetween: {
// series1: Required, if missing won't fill.
series1: 0,
// series2: Required, if missing won't fill.
series2: 1,
// color: Optional, defaults to fillColor of series1.
color: "rgba(227, 167, 111, 0.7)",
baseSeries: 0,
// fill: Optional, defaults to true. False to turn off fill.
fill: true
}
根据上面的示例,它使用指定的颜色填充系列 0 和系列 1 之间的区域。
我想填充 0 和 1、2 和 3 以及 4 和 5 系列之间的区域。有谁知道如何做到这一点?