Skip to product information
1 of 2

New - My Store1

Dewhut Oversized Pumpkin Couch Accent Chair, Modern Comfy Velvet Upholstered Barrel Chairs, Luxury Single Sofa Armchair for Living Room, Waiting Room, Office and Vanity, (Beige)

Dewhut Oversized Pumpkin Couch Accent Chair, Modern Comfy Velvet Upholstered Barrel Chairs, Luxury Single Sofa Armchair for Living Room, Waiting Room, Office and Vanity, (Beige)

Regular price Rs. 8,233.00 INR
Regular price Sale price Rs. 8,233.00 INR
Sale Sold out
Taxes included.
Quantity

About this item

  • [Pumpkin-shaped soft package design] The oversized round arm chair is wide and cozy, accommodating no matter what kind of body you are. Pumpkin-shaped smooth lines design, each piece is thick and independent soft Upholstered support. Sitting on it as if surrounded by warmth, suitable for relaxation after work exhaustion.
  • [Ergonomic Design] High-density sponge does not easily collapse. Velvet fabric reading chair is skin-friendly and comfortable. The appropriate height of the armrests can give hands comfortable support, long time sitting on the arm chair will not feel tired.
  • [Sturdy and durable] The large accent chair is made up of 4 metal legs, which are sturdy and durable. Each chair leg is equipped with foot pads to protect the floor while reducing noise. The maximum weight-bearing capacity is 300lb.
View full details

Chart.js

slack

Installation

You can download the latest version of Chart.js from the GitHub releases or use a Chart.js CDN. Detailed installation instructions can be found on the installation page.

Creating a Chart

It's easy to get started with Chart.js. All that's required is the script included in your page along with a single <canvas> node to render the chart.

In this example, we create a bar chart for a single dataset and render that in our page. You can see all the ways to use Chart.js in the usage documentation.

<canvas id="myChart" width="400" height="400"></canvas>
<script>
var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
    type: 'bar',
    data: {
        labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
        datasets: [{
            label: '# of Votes',
            data: [12, 19, 3, 5, 2, 3],
            backgroundColor: [
                'rgba(255, 99, 132, 0.2)',
                'rgba(54, 162, 235, 0.2)',
                'rgba(255, 206, 86, 0.2)',
                'rgba(75, 192, 192, 0.2)',
                'rgba(153, 102, 255, 0.2)',
                'rgba(255, 159, 64, 0.2)'
            ],
            borderColor: [
                'rgba(255, 99, 132, 1)',
                'rgba(54, 162, 235, 1)',
                'rgba(255, 206, 86, 1)',
                'rgba(75, 192, 192, 1)',
                'rgba(153, 102, 255, 1)',
                'rgba(255, 159, 64, 1)'
            ],
            borderWidth: 1
        }]
    },
    options: {
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero: true
                }
            }]
        }
    }
});
</script>