1
/
of
1
New - My Store1
Finch Fox® Taskpro Modern Unique Velvet Upholstered Seating Living Room Dining Chair with Black Metal Legs in Tan Color
Finch Fox® Taskpro Modern Unique Velvet Upholstered Seating Living Room Dining Chair with Black Metal Legs in Tan Color
Regular price
Rs. 5,222.00 INR
Regular price
Sale price
Rs. 5,222.00 INR
Taxes included.
Quantity
Couldn't load pickup availability
- "Product Dimensions":- Height: (79cm) X Length: (51cm) X Depth: (46cm) | Main Material:- Velvet Upholstery | Seat Depth: 46cm | Height from floor to seat:- 46cm| Leg Material:- Black Metal Powdered Coated Legs | Upholstered:- Yes | Upholstery Material:- Velvet | Leg Construction Type:- Metal | Weight Capacity:- 120 Kgs | Felt Foot Pads:- Yes | Fire Retardant:- Yes | Foldable:- No | Cushioned Back Support | High-resilience foam | Inner solid wood frame |
- A comfortable dining chair designed to make dining a pleasure.| Assembly :- Self Assemble Product DIY|
- Indulge in the epitome of luxury and sophistication with our meticulously crafted Finch Fox dining chairs. Elevate your dining experience and leave your guests envious of the premium ambiance you’ve created. These chairs aren’t limited to just the dining room – they’re designed to make a statement in your study, living room, and dressing room, showcasing their versatility and ultra-modern aesthetic.
- The dining Room chairs boast an exquisite blend of style and substance. Featuring an inner solid metal construction and plush velvet upholstery, these chairs guarantee lasting quality and a touch of opulence. The solid steel legs come equipped with anti-slip feet pads, ensuring ultimate stability while keeping your floors free from scratches.
- Experience unparalleled comfort with the plush seats crafted from high-resilience foam. The cushioned back support invites you to dine in relaxation and style. With a weight capacity of up to 120kg and reinforced steel fixings, these dining chairs exude super stability and reliability, making them a sound investment for the long run.
- Incredibly stylish and sophisticated, the dining room chairs offer a big bang for your buck. Bring home this luxurious set without hesitation and transform your space into a haven of elegance. Plus, enjoy peace of mind with our one-year warranty. Redefine your dining and entertaining moments with the dining room chairs – where comfort meets design in perfect harmony.
- The curved backrest and armrests provide excellent seating comfort and a stylish touch to any dining room.
- Contact us :- support@finchfox.com for Product Enquiry / Installation / Warranty Claims.
Share

Chart.js
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>