2017-12-13 10 views
0

세로 축의 숫자를 기반으로 ChartJS의 행에 조건부 배경색을 추가하는 데 조금 어려움이 있습니다.차트 JS - 조건부 가로 행 배경색

예 :

If the vertical axis is between 0 - 6, background colour for those rows is green. 
If the vertical axis is between 6 - 12 background colour for those rows is grey 
If the vertical axis is > 12 background colour for those rows is red 

이전에 이와 같은 작업을 한 사람이 있습니까?

대략적으로 기능을 설명하는 그림을 첨부했습니다.

enter image description here

건배!

답변

0

chartjs에는이 작업을 수행 할 수있는 옵션이 없습니다. 그러나 직접 을 작성하고 직접 beforeDraw 후크에 배경을 그릴 수 있습니다.

var chart = new Chart(ctx, { 
    plugins: [{ 
     beforeDraw: function(chart) { 
      //.. 
     } 
    }] 
}); 

차트 매개 변수에서 y 축 세그먼트의 높이를 계산하는 데 필요한 모든 정보를 얻을 수 있습니다. 어떻게 구현할 수 있는지 아래에 스 니펫을 포함 시켰습니다.

 var canvas = document.getElementById('myChart'); 
 
     window.chartColors = { 
 
      red: 'rgb(255, 99, 132)', 
 
      orange: 'rgb(255, 159, 64)', 
 
      yellow: 'rgb(255, 205, 86)', 
 
      green: 'rgb(51, 204, 51)', 
 
      blue: 'rgb(54, 162, 235)', 
 
      purple: 'rgb(153, 102, 255)', 
 
      grey: 'rgb(201, 203, 207)' 
 
     }; 
 

 
     var myLineChart = new Chart(canvas, 
 
      { 
 
       type: 'line', 
 
       data: { 
 
        labels: ['1', '2', '3', '4', '5'], 
 
        datasets: [ 
 
         { 
 
          label: '# of Votes', 
 
          fill: false, 
 
          backgroundColor: window.chartColors.blue, 
 
          borderColor: window.chartColors.blue, 
 
          data: [2, 5, 12.5, 9, 6.3] 
 
         } 
 
        ] 
 
       }, 
 
       options: { 
 
        responsive: true, 
 
        title: { 
 
         display: true, 
 
         text: 'Conditional Background' 
 
        }, 
 
        backgroundRules: [{ 
 
         backgroundColor: window.chartColors.green, 
 
         yAxisSegement: 6 
 
        }, { 
 
         backgroundColor: window.chartColors.grey, 
 
         yAxisSegement: 12 
 
        }, { 
 
         backgroundColor: window.chartColors.red, 
 
         yAxisSegement: Infinity 
 
        }], 
 
        scales: { 
 
         yAxes: [{ 
 
          ticks: { 
 
           beginAtZero: true, 
 
           stepSize: 1 
 
          } 
 
         }] 
 
        } 
 
       }, 
 
       plugins: [{ 
 
        beforeDraw: function (chart) { 
 
         var ctx = chart.chart.ctx; 
 
         var ruleIndex = 0; 
 
         var rules = chart.chart.options.backgroundRules; 
 
         var yaxis = chart.chart.scales["y-axis-0"]; 
 
         var xaxis = chart.chart.scales["x-axis-0"]; 
 
         var partPercentage = 1/(yaxis.ticksAsNumbers.length - 1); 
 
         for (var i = yaxis.ticksAsNumbers.length - 1; i > 0; i--) { 
 
          if (yaxis.ticksAsNumbers[i] < rules[ruleIndex].yAxisSegement) { 
 
           ctx.fillStyle = rules[ruleIndex].backgroundColor; 
 
           ctx.fillRect(xaxis.left, yaxis.top + ((i - 1) * (yaxis.height * partPercentage)), xaxis.width, yaxis.height * partPercentage); 
 
          } else { 
 
           ruleIndex++; 
 
           i++; 
 
          } 
 
         } 
 
        } 
 
       }] 
 
      });
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script> 
 
<canvas id="myChart" width="400" height="250"></canvas>

:이 더 적절한 구현보다는 개념 증명이다 그러나 참고