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