Chakra UI Data Tables - Horizon UI

Check out our React datatables examples and learn how to add advanced interaction controls to your tables the easy way.

Usage#

function Example() {
return (
<Box bg="red.400" color="white">
<iframe
src="https://codesandbox.io/embed/nice-water-1v4hzb?fontsize=14&hidenavigation=1&initialpath=%2Fdata-tables&module=%2Fsrc%2Fcomponents%2FdataTables.js&theme=dark"
width="100%"
height="500px"
ms="-15px"
overflow="hidden"
></iframe>
</Box>
)
}
<TableTopCreators
tableData={tableDataTopCreators}
columnsData={tableColumnsTopCreators}
/>

Table data example#

const tableColumnsTopCreators = [
{
Header: "Name",
accessor: "name",
},
{
Header: "Artworks",
accessor: "artworks",
},
{
Header: "Rating",
accessor: "rating",
},
]

Data example#

;[
{
name: [
"@maddison_c21",
"https://images.unsplash.com/photo-1506863530036-1efeddceb993?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2244&q=80",
],
artworks: "9821",
rating: 97,
},
{
name: [
"@karl.will02",
"https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1780&q=80",
],
artworks: "7032",
rating: 87,
},
{
name: [
"@andreea.1z",
"https://images.unsplash.com/photo-1573766064535-6d5d4e62bf9d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1315&q=80",
],
artworks: "5204",
rating: 82,
},
{
name: [
"@abraham47.y",
"https://images.unsplash.com/photo-1628157588553-5eeea00af15c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1780&q=80",
],
artworks: "4309",
rating: 68,
},
{
name: ["@simmmple.web", "https://i.ibb.co/7p0d1Cd/Frame-24.png"],
artworks: "3871",
rating: 55,
},
{
name: ["@horizon.ui", "https://i.ibb.co/NSJYQYD/Horizon-UI-Avatar.png"],
artworks: "3152",
rating: 46,
},
{
name: [
"@venus.sys",
"https://scontent.fotp8-1.fna.fbcdn.net/v/t1.6435-9/202074221_101421322193072_8201469573182417214_n.png?_nc_cat=108&ccb=1-5&_nc_sid=09cbfe&_nc_ohc=78fLje1ri2sAX-9M9k1&_nc_ht=scontent.fotp8-1.fna&oh=00_AT-yCcI9whoAZcSaGmJQK53xRa1CldCaj2q5qJlPvDvHRA&oe=626E41FF",
],
artworks: "2907",
rating: 38,
},
]

V8 Version

Usage#

function Example() {
return (
<Box bg="red.400" color="white">
<iframe
src="https://codesandbox.io/embed/nice-water-1v4hzb?fontsize=14&hidenavigation=1&initialpath=%2Fdata-tables-v8&module=%2Fsrc%2FApp.js&theme=dark&view=preview"
width="100%"
height="500px"
ms="-15px"
overflow="hidden"
></iframe>
</Box>
)
}
<TableTopCreators
tableData={tableDataTopCreators}
/>

Data example#

type RowObj = {
name: string[];
artworks: number;
rating: number;
};
const tableColumnsTopCreators: RowObj[] = [
{
name: [
"@maddison_c21",
"https://images.unsplash.com/photo-1506863530036-1efeddceb993?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2244&q=80"
],
artworks: 9821,
rating: 97
},
{
name: [
"@karl.will02",
"https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1780&q=80"
],
artworks: 7032,
rating: 87
},
{
name: [
"@andreea.1z",
"https://images.unsplash.com/photo-1573766064535-6d5d4e62bf9d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1315&q=80"
],
artworks: 5204,
rating: 82
},
{
name: [
"@abraham47.y",
"https://images.unsplash.com/photo-1628157588553-5eeea00af15c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1780&q=80"
],
artworks: 4309,
rating: 68
},
{
name: ["@simmmple.web", "https://i.ibb.co/7p0d1Cd/Frame-24.png"],
artworks: 3871,
rating: 55
},
{
name: ["@horizon.ui", "https://i.ibb.co/NSJYQYD/Horizon-UI-Avatar.png"],
artworks: 3152,
rating: 46
},
{
name: [
"@venus.sys",
"https://scontent.fotp8-1.fna.fbcdn.net/v/t1.6435-9/202074221_101421322193072_8201469573182417214_n.png?_nc_cat=108&ccb=1-5&_nc_sid=09cbfe&_nc_ohc=78fLje1ri2sAX-9M9k1&_nc_ht=scontent.fotp8-1.fna&oh=00_AT-yCcI9whoAZcSaGmJQK53xRa1CldCaj2q5qJlPvDvHRA&oe=626E41FF"
],
artworks: 2907,
rating: 38
}
];
export default tableColumnsTopCreators;

Horizon UI © 2021-2023 Copyright. All Rights Reserved.

  • Blog
  • License