chart.js Line chart with different background colors for each section

后端 未结 4 1006
天涯浪人
天涯浪人 2020-12-09 22:41

Lets say I have a Line chart with mon-fri for 4 weeks. I want that these 4 weeks are diveded in sections. I want the first monday to friday have a white background color. Th

4条回答
  •  無奈伤痛
    2020-12-09 23:27

    I'd try a little work around,I'd draw an image with four line each one with width 1px and a different color; then in a CSS sheet define:

    canvas {
        background-image: url(backgroundimage.jpg);
        background-size: contain;
    }
    

提交回复
热议问题