How to have solid colored bars in angular-chart bar chart

后端 未结 4 549
南旧
南旧 2020-12-20 22:34

I\'m using angular-chart (based on chart.js) to create some bar charts and am having trouble getting the bar styling I want. I want the bars to be solid colors like this:

4条回答
  •  情歌与酒
    2020-12-20 22:48

    You can use chart-dataset-override="datasetOverride"

    HTML

     

    Controller

      ctrl.datasetOverride = [{
            fill: true,
            backgroundColor: [
              "#ED402A",
              "#36A2EB",
              "#FFCE56"
            ]
          }, {
            fill: true,
            backgroundColor: [
              "#F0AB05",
              "#36A2EB",
              "#FFCE56"
            ]
          }, {
            fill: true,
            backgroundColor: [
              "#A0B421",
              "#36A2EB",
              "#FFCE56"
            ]
          }, {
            fill: true,
            backgroundColor: [
              "#00A39F",
              "#36A2EB",
              "#FFCE56"
            ]
          },
        ];
    

    DEMO

提交回复
热议问题