2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>
|
|
|
|
Columns can be grouped within a <i>Row</i> component and groups can be displayed within a ColumnGroup component. These groups can be displayed using <i>type</i> property that can be <i>header</i> or <i>footer</i>. Number of cells and rows
|
|
|
|
to span are defined with the <i>colspan</i> and <i>rowspan</i> properties of a Column.
|
|
|
|
</p>
|
|
|
|
</DocSectionText>
|
2023-12-31 14:08:33 +00:00
|
|
|
<DeferredDemo @load="loadDemoData">
|
|
|
|
<div class="card">
|
|
|
|
<DataTable :value="sales" tableStyle="min-width: 50rem">
|
|
|
|
<ColumnGroup type="header">
|
|
|
|
<Row>
|
|
|
|
<Column header="Product" :rowspan="3" />
|
|
|
|
<Column header="Sale Rate" :colspan="4" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Sales" :colspan="2" />
|
|
|
|
<Column header="Profits" :colspan="2" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Last Year" sortable field="lastYearSale" />
|
|
|
|
<Column header="This Year" sortable field="thisYearSale" />
|
|
|
|
<Column header="Last Year" sortable field="lastYearProfit" />
|
|
|
|
<Column header="This Year" sortable field="thisYearProfit" />
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
<Column field="product" />
|
|
|
|
<Column field="lastYearSale">
|
|
|
|
<template #body="slotProps"> {{ slotProps.data.lastYearSale }}% </template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearSale">
|
|
|
|
<template #body="slotProps"> {{ slotProps.data.thisYearSale }}% </template>
|
|
|
|
</Column>
|
|
|
|
<Column field="lastYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{ formatCurrency(slotProps.data.lastYearProfit) }}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{ formatCurrency(slotProps.data.thisYearProfit) }}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<ColumnGroup type="footer">
|
|
|
|
<Row>
|
|
|
|
<Column footer="Totals:" :colspan="3" footerStyle="text-align:right" />
|
|
|
|
<Column :footer="lastYearTotal" />
|
|
|
|
<Column :footer="thisYearTotal" />
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
</DataTable>
|
|
|
|
</div>
|
|
|
|
</DeferredDemo>
|
2023-02-28 08:29:30 +00:00
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
sales: null,
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
|
|
|
<DataTable :value="sales" tableStyle="min-width: 50rem">
|
2023-02-28 08:29:30 +00:00
|
|
|
<ColumnGroup type="header">
|
|
|
|
<Row>
|
|
|
|
<Column header="Product" :rowspan="3" />
|
|
|
|
<Column header="Sale Rate" :colspan="4" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Sales" :colspan="2" />
|
|
|
|
<Column header="Profits" :colspan="2" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Last Year" sortable field="lastYearSale" />
|
|
|
|
<Column header="This Year" sortable field="thisYearSale" />
|
|
|
|
<Column header="Last Year" sortable field="lastYearProfit" />
|
|
|
|
<Column header="This Year" sortable field="thisYearProfit" />
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
<Column field="product" />
|
|
|
|
<Column field="lastYearSale">
|
|
|
|
<template #body="slotProps"> {{ slotProps.data.lastYearSale }}% </template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearSale">
|
|
|
|
<template #body="slotProps"> {{ slotProps.data.thisYearSale }}% </template>
|
|
|
|
</Column>
|
|
|
|
<Column field="lastYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{ formatCurrency(slotProps.data.lastYearProfit) }}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{ formatCurrency(slotProps.data.thisYearProfit) }}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<ColumnGroup type="footer">
|
|
|
|
<Row>
|
|
|
|
<Column footer="Totals:" :colspan="3" footerStyle="text-align:right" />
|
|
|
|
<Column :footer="lastYearTotal" />
|
|
|
|
<Column :footer="thisYearTotal" />
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
2023-10-15 09:38:39 +00:00
|
|
|
</DataTable>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<DataTable :value="sales" tableStyle="min-width: 50rem">
|
|
|
|
<ColumnGroup type="header">
|
|
|
|
<Row>
|
|
|
|
<Column header="Product" :rowspan="3" />
|
|
|
|
<Column header="Sale Rate" :colspan="4" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Sales" :colspan="2" />
|
|
|
|
<Column header="Profits" :colspan="2" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Last Year" sortable field="lastYearSale"/>
|
|
|
|
<Column header="This Year" sortable field="thisYearSale"/>
|
|
|
|
<Column header="Last Year" sortable field="lastYearProfit"/>
|
|
|
|
<Column header="This Year" sortable field="thisYearProfit"/>
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
<Column field="product" />
|
|
|
|
<Column field="lastYearSale">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{slotProps.data.lastYearSale}}%
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearSale">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{slotProps.data.thisYearSale}}%
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="lastYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{formatCurrency(slotProps.data.lastYearProfit)}}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{formatCurrency(slotProps.data.thisYearProfit)}}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<ColumnGroup type="footer">
|
|
|
|
<Row>
|
|
|
|
<Column footer="Totals:" :colspan="3" footerStyle="text-align:right"/>
|
|
|
|
<Column :footer="lastYearTotal" />
|
|
|
|
<Column :footer="thisYearTotal" />
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
</DataTable>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
sales: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.sales = [
|
|
|
|
{product: 'Bamboo Watch', lastYearSale: 51, thisYearSale: 40, lastYearProfit: 54406, thisYearProfit: 43342},
|
|
|
|
{product: 'Black Watch', lastYearSale: 83, thisYearSale: 9, lastYearProfit: 423132, thisYearProfit: 312122},
|
|
|
|
{product: 'Blue Band', lastYearSale: 38, thisYearSale: 5, lastYearProfit: 12321, thisYearProfit: 8500},
|
|
|
|
{product: 'Blue T-Shirt', lastYearSale: 49, thisYearSale: 22, lastYearProfit: 745232, thisYearProfit: 65323},
|
|
|
|
{product: 'Brown Purse', lastYearSale: 17, thisYearSale: 79, lastYearProfit: 643242, thisYearProfit: 500332},
|
|
|
|
{product: 'Chakra Bracelet', lastYearSale: 52, thisYearSale: 65, lastYearProfit: 421132, thisYearProfit: 150005},
|
|
|
|
{product: 'Galaxy Earrings', lastYearSale: 82, thisYearSale: 12, lastYearProfit: 131211, thisYearProfit: 100214},
|
|
|
|
{product: 'Game Controller', lastYearSale: 44, thisYearSale: 45, lastYearProfit: 66442, thisYearProfit: 53322},
|
|
|
|
{product: 'Gaming Set', lastYearSale: 90, thisYearSale: 56, lastYearProfit: 765442, thisYearProfit: 296232},
|
|
|
|
{product: 'Gold Phone Case', lastYearSale: 75, thisYearSale: 54, lastYearProfit: 21212, thisYearProfit: 12533}
|
|
|
|
];
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
formatCurrency(value) {
|
|
|
|
return value.toLocaleString('en-US', {style: 'currency', currency: 'USD'});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
lastYearTotal() {
|
|
|
|
let total = 0;
|
|
|
|
for(let sale of this.sales) {
|
|
|
|
total += sale.lastYearProfit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.formatCurrency(total);
|
|
|
|
},
|
|
|
|
thisYearTotal() {
|
|
|
|
let total = 0;
|
|
|
|
for(let sale of this.sales) {
|
|
|
|
total += sale.thisYearProfit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.formatCurrency(total);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-09 11:39:38 +00:00
|
|
|
<\/script>
|
2023-10-15 09:38:39 +00:00
|
|
|
|
2023-02-28 08:29:30 +00:00
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<DataTable :value="sales" tableStyle="min-width: 50rem">
|
|
|
|
<ColumnGroup type="header">
|
|
|
|
<Row>
|
|
|
|
<Column header="Product" :rowspan="3" />
|
|
|
|
<Column header="Sale Rate" :colspan="4" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Sales" :colspan="2" />
|
|
|
|
<Column header="Profits" :colspan="2" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Column header="Last Year" sortable field="lastYearSale"/>
|
|
|
|
<Column header="This Year" sortable field="thisYearSale"/>
|
|
|
|
<Column header="Last Year" sortable field="lastYearProfit"/>
|
|
|
|
<Column header="This Year" sortable field="thisYearProfit"/>
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
<Column field="product" />
|
|
|
|
<Column field="lastYearSale">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{slotProps.data.lastYearSale}}%
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearSale">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{slotProps.data.thisYearSale}}%
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="lastYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{formatCurrency(slotProps.data.lastYearProfit)}}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<Column field="thisYearProfit">
|
|
|
|
<template #body="slotProps">
|
|
|
|
{{formatCurrency(slotProps.data.thisYearProfit)}}
|
|
|
|
</template>
|
|
|
|
</Column>
|
|
|
|
<ColumnGroup type="footer">
|
|
|
|
<Row>
|
|
|
|
<Column footer="Totals:" :colspan="3" footerStyle="text-align:right"/>
|
|
|
|
<Column :footer="lastYearTotal" />
|
|
|
|
<Column :footer="thisYearTotal" />
|
|
|
|
</Row>
|
|
|
|
</ColumnGroup>
|
|
|
|
</DataTable>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref, computed } from 'vue';
|
|
|
|
|
|
|
|
|
|
|
|
const sales = ref([
|
|
|
|
{product: 'Bamboo Watch', lastYearSale: 51, thisYearSale: 40, lastYearProfit: 54406, thisYearProfit: 43342},
|
|
|
|
{product: 'Black Watch', lastYearSale: 83, thisYearSale: 9, lastYearProfit: 423132, thisYearProfit: 312122},
|
|
|
|
{product: 'Blue Band', lastYearSale: 38, thisYearSale: 5, lastYearProfit: 12321, thisYearProfit: 8500},
|
|
|
|
{product: 'Blue T-Shirt', lastYearSale: 49, thisYearSale: 22, lastYearProfit: 745232, thisYearProfit: 65323},
|
|
|
|
{product: 'Brown Purse', lastYearSale: 17, thisYearSale: 79, lastYearProfit: 643242, thisYearProfit: 500332},
|
|
|
|
{product: 'Chakra Bracelet', lastYearSale: 52, thisYearSale: 65, lastYearProfit: 421132, thisYearProfit: 150005},
|
|
|
|
{product: 'Galaxy Earrings', lastYearSale: 82, thisYearSale: 12, lastYearProfit: 131211, thisYearProfit: 100214},
|
|
|
|
{product: 'Game Controller', lastYearSale: 44, thisYearSale: 45, lastYearProfit: 66442, thisYearProfit: 53322},
|
|
|
|
{product: 'Gaming Set', lastYearSale: 90, thisYearSale: 56, lastYearProfit: 765442, thisYearProfit: 296232},
|
|
|
|
{product: 'Gold Phone Case', lastYearSale: 75, thisYearSale: 54, lastYearProfit: 21212, thisYearProfit: 12533}
|
|
|
|
]);
|
|
|
|
|
|
|
|
const formatCurrency = (value) => {
|
|
|
|
return value.toLocaleString('en-US', {style: 'currency', currency: 'USD'});
|
|
|
|
};
|
|
|
|
|
|
|
|
const lastYearTotal = computed(() => {
|
|
|
|
let total = 0;
|
|
|
|
for(let sale of sales.value) {
|
|
|
|
total += sale.lastYearProfit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return formatCurrency(total);
|
|
|
|
});
|
|
|
|
|
|
|
|
const thisYearTotal = computed(() => {
|
|
|
|
let total = 0;
|
|
|
|
for(let sale of sales.value) {
|
|
|
|
total += sale.thisYearProfit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return formatCurrency(total);
|
|
|
|
});
|
|
|
|
|
|
|
|
<\/script>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
2023-12-31 14:08:33 +00:00
|
|
|
loadDemoData() {
|
|
|
|
this.sales = [
|
|
|
|
{ product: 'Bamboo Watch', lastYearSale: 51, thisYearSale: 40, lastYearProfit: 54406, thisYearProfit: 43342 },
|
|
|
|
{ product: 'Black Watch', lastYearSale: 83, thisYearSale: 9, lastYearProfit: 423132, thisYearProfit: 312122 },
|
|
|
|
{ product: 'Blue Band', lastYearSale: 38, thisYearSale: 5, lastYearProfit: 12321, thisYearProfit: 8500 },
|
|
|
|
{ product: 'Blue T-Shirt', lastYearSale: 49, thisYearSale: 22, lastYearProfit: 745232, thisYearProfit: 65323 },
|
|
|
|
{ product: 'Brown Purse', lastYearSale: 17, thisYearSale: 79, lastYearProfit: 643242, thisYearProfit: 500332 },
|
|
|
|
{ product: 'Chakra Bracelet', lastYearSale: 52, thisYearSale: 65, lastYearProfit: 421132, thisYearProfit: 150005 },
|
|
|
|
{ product: 'Galaxy Earrings', lastYearSale: 82, thisYearSale: 12, lastYearProfit: 131211, thisYearProfit: 100214 },
|
|
|
|
{ product: 'Game Controller', lastYearSale: 44, thisYearSale: 45, lastYearProfit: 66442, thisYearProfit: 53322 },
|
|
|
|
{ product: 'Gaming Set', lastYearSale: 90, thisYearSale: 56, lastYearProfit: 765442, thisYearProfit: 296232 },
|
|
|
|
{ product: 'Gold Phone Case', lastYearSale: 75, thisYearSale: 54, lastYearProfit: 21212, thisYearProfit: 12533 }
|
|
|
|
];
|
|
|
|
},
|
2023-02-28 08:29:30 +00:00
|
|
|
formatCurrency(value) {
|
|
|
|
return value.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
lastYearTotal() {
|
|
|
|
let total = 0;
|
|
|
|
|
|
|
|
for (let sale of this.sales) {
|
|
|
|
total += sale.lastYearProfit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.formatCurrency(total);
|
|
|
|
},
|
|
|
|
thisYearTotal() {
|
|
|
|
let total = 0;
|
|
|
|
|
|
|
|
for (let sale of this.sales) {
|
|
|
|
total += sale.thisYearProfit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.formatCurrency(total);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|