2

我正在使用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 系列之间的区域。有谁知道如何做到这一点?

4

1 回答 1

0

我已经为这个问题创建了修复程序: Bitbucket pull request for jqplot

我已将更改提交到主 Jqplot 存储库以合并到下一个版本中。如果需要,请随意使用我的修复程序。

于 2013-09-06T04:31:28.620 回答