Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

105
Views
Disable stacking for 1 dataset

I have this following chart

enter image description here

They are stacked. I use this property in my options:

      scales: {
        y: {
          stacked: true,
        }
      },

How can i disable stacking for just 1 dataset? I want to disable stacking for the brown dataset so that the other charts fill it.

The brown chart is the summ of the 3 small charts. I want to deactivate the stacking for the big brown chart so i can see if my chart data is displaying correctly.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can specify the stacks in the datasets. If you assign all datasets to the same stack except for your brown one you get what you want:

var options = {
  type: 'line',
  data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
        label: '# of Votes',
        data: [12, 19, 3, 5, 2, 3],
        borderColor: 'pink',
        stack: 'stack2'
      },
      {
        label: '# of Points',
        data: [7, 11, 5, 8, 3, 7],
        borderColor: 'orange',
        stack: 'stack1'
      },
      {
        label: '# of Points',
        data: [5, 5, 5, 5, 5, 5],
        borderColor: 'turquoise',
        stack: 'stack1'
      }
    ]
  },
  options: {
    scales: {
      y: {
        stacked: true
      }
    }
  }
}

var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
  <canvas id="chartJSContainer" width="600" height="400"></canvas>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.js"></script>
</body>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!