Skip to product information
1 of 3

New - My Store1

OLIXIS Dining Chairs Set of 8 Kitchen Mid Century Modern Chairs with Wood Legs and PU Leather Cushion, Upholstered Accent Chai for Living Room Bedroom Outdoor Lounge, White

OLIXIS Dining Chairs Set of 8 Kitchen Mid Century Modern Chairs with Wood Legs and PU Leather Cushion, Upholstered Accent Chai for Living Room Bedroom Outdoor Lounge, White

Regular price Rs. 19,379.00 INR
Regular price Sale price Rs. 19,379.00 INR
Sale Sold out
Taxes included.
Quantity

About this item

  • Multi Purpose: White dining table chairs are simple and beautiful, suitable for family dining table, dining room, guest room, kitchen, apartment, office, and holiday decoration. Modern style dining chairs with overall size: 22.83 "W x 20.47 "D x 32.87 "H. The enlarged size is suitable for most tables and is versatile
  • Ergonomic Comfort: Christmas decoration chair with a new generation of thickened high-density sponge cushions, more full. At the same time, the backrest design wraps the entire back, with high elasticity, and tilts back 10 degrees so it is not easy to break. The chair is comfortable to sit on, can support the back and hips, long time use will not feel sore, promote blood circulation, relax the body and protect health
  • High-quality Materials: This dining chair is made of good epidermal material. With the characteristics of not easy to wear, scratch-resistant, and waterproof. Skin-friendly and non-irritating, to ensure health. At the same time resistant to wear and tear, corrosion resistance, not easy to discolor, waterproof and easy to clean, and very easy to take care of, clean. Indoor and outdoor can be used
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>