Check box Selection in React Grid component
20 Nov 202524 minutes to read
Checkbox selection in the Grid component allows you to provide an option to select multiple records by using a checkbox in each row. This feature is particularly useful when you need to perform bulk actions or operations on selected records within the Grid.
To render checkbox in each grid row, you need to use checkbox column with type as checkbox using column type property.
Here’s an example of how to enable check box selection using type property in the Grid component:
import { ColumnDirective, ColumnsDirective, GridComponent } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
return (<GridComponent dataSource={data} height={315}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='ShipCity' headerText='Ship City' width='100' />
<ColumnDirective field='ShipName' headerText='Ship Name' width='150' />
</ColumnsDirective>
</GridComponent>);
}
;
export default App;import { ColumnDirective, ColumnsDirective, GridComponent } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
return (<GridComponent dataSource={data} height={315}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='ShipCity' headerText='Ship City' width='100' />
<ColumnDirective field='ShipName' headerText='Ship Name' width='150' />
</ColumnsDirective>
</GridComponent>)
};
export default App;export let data = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VICTE', EmployeeID: 3, OrderDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'RICSU', EmployeeID: 9, OrderDate: new Date(8371098e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'WELLI', EmployeeID: 3, OrderDate: new Date(837369e6),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'HILAA', EmployeeID: 4, OrderDate: new Date(8374554e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'ERNSH', EmployeeID: 1, OrderDate: new Date(8375418e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'OTTIK', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'QUEDE', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'RATTC', EmployeeID: 8, OrderDate: new Date(8379738e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}
];export let data: Object[] = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VICTE', EmployeeID: 3, OrderDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'RICSU', EmployeeID: 9, OrderDate: new Date(8371098e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'WELLI', EmployeeID: 3, OrderDate: new Date(837369e6),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'HILAA', EmployeeID: 4, OrderDate: new Date(8374554e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'ERNSH', EmployeeID: 1, OrderDate: new Date(8375418e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'OTTIK', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'QUEDE', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'RATTC', EmployeeID: 8, OrderDate: new Date(8379738e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];By default selection is allowed by clicking a grid row or checkbox in that row. To allow selection only through checkbox, you can set selectionSettings.checkboxOnly property to true.
Selection can be persisted on all the operations using selectionSettings.persistSelection property. For persisting selection on the Grid, any one of the column should be defined as a primary key using isPrimaryKey property.
Checkbox selection mode
The checkbox selection mode in the Grid allows you to select rows either by clicking on checkboxes or by clicking on the rows themselves. This feature provides two types of checkbox selection modes that can be set using the selectionSettings.checkboxMode property. The available modes are:
-
Default: This is the default value of the
checkboxMode. In this mode, you can select multiple rows by clicking rows one by one. When you click on a row, the checkbox associated with that row also switches to the ‘checked’ state. -
ResetOnRowClick: In
ResetOnRowClickmode, when clicking on row it will reset previously selected row. Also you can perform multiple-selection in this mode by press and hold CTRL key and click the desired rows. To select range of rows, press and hold the SHIFT key and click the rows.
In the following example, it demonstrates how to dynamically enable and change the checkboxMode using the DropDownList component:
import { ChangeEventArgs, DropDownListComponent } from '@syncfusion/ej2-react-dropdowns'
import { ColumnDirective, ColumnsDirective, GridComponent } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
let grid;
const dropdownData = [
{ text: 'Default', value: 'Default' },
{ text: 'ResetOnRowClick', value: 'ResetOnRowClick' },
];
const valueChange = (args) => {
grid.selectionSettings.checkboxMode = args.value;
}
return (<div>
<label style={{ padding: "30px 17px 0 0" }} >Choose checkbox selection mode:</label>
<DropDownListComponent index={0} width={150} dataSource={dropdownData} change={valueChange}></DropDownListComponent>
<GridComponent ref={g => grid = g} dataSource={data} height={315}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='ShipCity' headerText='Ship City' width='100' />
<ColumnDirective field='ShipName' headerText='Ship Name' width='150' />
</ColumnsDirective>
</GridComponent></div>)
};
export default App;import { ChangeEventArgs, DropDownListComponent } from '@syncfusion/ej2-react-dropdowns'
import { ColumnDirective, ColumnsDirective, GridComponent } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
let grid: GridComponent | null;
const dropdownData: { [key: string]: Object; }[] = [
{ text: 'Default', value: 'Default' },
{ text: 'ResetOnRowClick', value: 'ResetOnRowClick' },
];
const valueChange = (args: ChangeEventArgs) => {
(grid as GridComponent).selectionSettings.checkboxMode = args.value;
}
return (<div>
<label style={{ padding: "30px 17px 0 0" }} >Choose checkbox selection mode:</label>
<DropDownListComponent index={0} width={150} dataSource={dropdownData} change={valueChange}></DropDownListComponent>
<GridComponent ref={g => grid = g} dataSource={data} height={315}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='ShipCity' headerText='Ship City' width='100' />
<ColumnDirective field='ShipName' headerText='Ship Name' width='150' />
</ColumnsDirective>
</GridComponent></div>)
};
export default App;export let data = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VICTE', EmployeeID: 3, OrderDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'RICSU', EmployeeID: 9, OrderDate: new Date(8371098e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'WELLI', EmployeeID: 3, OrderDate: new Date(837369e6),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'HILAA', EmployeeID: 4, OrderDate: new Date(8374554e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'ERNSH', EmployeeID: 1, OrderDate: new Date(8375418e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'OTTIK', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'QUEDE', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'RATTC', EmployeeID: 8, OrderDate: new Date(8379738e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}
];export let data: Object[] = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VICTE', EmployeeID: 3, OrderDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'RICSU', EmployeeID: 9, OrderDate: new Date(8371098e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'WELLI', EmployeeID: 3, OrderDate: new Date(837369e6),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'HILAA', EmployeeID: 4, OrderDate: new Date(8374554e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'ERNSH', EmployeeID: 1, OrderDate: new Date(8375418e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'OTTIK', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'QUEDE', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'RATTC', EmployeeID: 8, OrderDate: new Date(8379738e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];Hide selectall checkbox in column header
You can hide the select all checkbox in the column header of the Syncfusion® Grid. This is a useful feature in various scenarios where you want to customize the appearance and behavior of the checkboxes within the grid.
By default, when you set the column type as checkbox, it renders a column with checkboxes for selection purposes. However, if you want to hide the header checkbox, you can achieve this by defining an empty HeaderTemplate directive in the grid Column.
Here’s an example of how to hide selectall checkbox in column header using empty HeaderTemplate directive in the Grid component:
import { ColumnDirective, ColumnsDirective, GridComponent, SelectionSettingsModel } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
const selectionSettings = { type: 'Multiple' };
const headerTemplate = () => {
return(<div></div>);
}
return (<div>
<GridComponent dataSource={data} height={315} selectionSettings={selectionSettings}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' headerTemplate={headerTemplate} />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='OrderDate' headerText='Order Date' width='100' format='yMd' />
<ColumnDirective field='Freight' headerText='Freight' width='150' />
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='100' format='yMd' />
<ColumnDirective field='ShipCountry' headerText='ShipCountry' width='150' />
</ColumnsDirective>
</GridComponent></div>)
};
export default App;import { ColumnDirective, ColumnsDirective, GridComponent, SelectionSettingsModel } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
const selectionSettings: SelectionSettingsModel = { type: 'Multiple' };
const headerTemplate = () => {
return (<div></div>);
}
return (<div>
<GridComponent dataSource={data} height={315} selectionSettings={selectionSettings}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' headerTemplate={headerTemplate} />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='OrderDate' headerText='Order Date' width='100' format='yMd' />
<ColumnDirective field='Freight' headerText='Freight' width='150' />
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='100' format='yMd' />
<ColumnDirective field='ShipCountry' headerText='ShipCountry' width='150' />
</ColumnsDirective>
</GridComponent></div>)
};
export default App;export let data = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),ShippedDate: new Date(8367642e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),ShippedDate: new Date(8367642e5),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VINET', EmployeeID: 3, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),ShippedDate: new Date(8367642e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),ShippedDate: new Date(8367642e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'VINET', EmployeeID: 9, OrderDate: new Date(8371098e5),ShippedDate: new Date(8367642e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(837369e6),ShippedDate: new Date(8367642e5),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'VINET', EmployeeID: 4, OrderDate: new Date(8374554e5),ShippedDate: new Date(8367642e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'VINET', EmployeeID: 1, OrderDate: new Date(8375418e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),ShippedDate: new Date(8367642e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'VINET', EmployeeID: 8, OrderDate: new Date(8379738e5),ShippedDate: new Date(8367642e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];export let data: Object[] = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),ShippedDate: new Date(8367642e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),ShippedDate: new Date(8367642e5),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VINET', EmployeeID: 3, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),ShippedDate: new Date(8367642e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),ShippedDate: new Date(8367642e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'VINET', EmployeeID: 9, OrderDate: new Date(8371098e5),ShippedDate: new Date(8367642e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(837369e6),ShippedDate: new Date(8367642e5),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'VINET', EmployeeID: 4, OrderDate: new Date(8374554e5),ShippedDate: new Date(8367642e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'VINET', EmployeeID: 1, OrderDate: new Date(8375418e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),ShippedDate: new Date(8367642e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'VINET', EmployeeID: 8, OrderDate: new Date(8379738e5),ShippedDate: new Date(8367642e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];Prevent specific rows from being selected in checkbox selection
The checkbox selection mode allows you to select rows either by clicking on checkboxes or by clicking on the rows themselves. However, there might be scenarios where you want to prevent specific rows from being selected based on certain conditions or business requirements.
To achieve this, you can use the rowDataBound event of the Grid. The rowDataBound event is triggered for each row after it is bound to the data source. In this event, you can check the row data and determine whether the row should be selectable or not. If you want to prevent the row from being selected, you can set the isSelectable argument of the event to false.
In the following sample, the selection of specific rows has been prevented based on the isSelectable argument in the rowDataBound event.
import { ColumnDirective, ColumnsDirective, GridComponent, Inject, Edit, Toolbar, Filter, Selection, Page } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
const settings = { persistSelection: true, type: 'Multiple' };
const editSettings = { allowEditing: true, allowAdding: true, allowDeleting: true, mode: 'Normal' };
const toolbarOptions = ['Add', 'Edit', 'Delete', 'Update', 'Cancel', 'Search'];
const filterOptions = { type: 'CheckBox' };
const load = () => {
for (let i = 0; i < data.length; i++) {
data[i]['List'] = i + 1;
}
}
const rowDataBound = (args) => {
args.isSelectable = args.data.List % 5 === 0;
}
return <GridComponent dataSource={data} selectionSettings={settings}
editSettings={editSettings} toolbar={toolbarOptions} filterSettings={filterOptions} allowPaging={true} allowFiltering={true} pageSettings={{ pageSize: 5 }}
rowDataBound={rowDataBound} load={load}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='List' width='120' headerText="List" />
<ColumnDirective field='OrderID' headerText="Order ID" isPrimaryKey="true" width='150' />
<ColumnDirective field='CustomerID' headerText="Customer ID" width='150' />
<ColumnDirective field='EmployeeID' headerText="Employee ID" width='150' />
<ColumnDirective field='ShipCity' headerText="Ship City" width='150' />
</ColumnsDirective>
<Inject services={[Edit, Toolbar, Filter, Selection, Page]} />
</GridComponent>
};
export default App;import { ColumnDirective, ColumnsDirective, GridComponent, Inject, Edit, Toolbar, Filter, Selection, Page, ToolbarItems, FilterSettingsModel, RowDataBoundEventArgs, EditSettingsModel, SelectionSettingsModel} from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
const settings: SelectionSettingsModel = { persistSelection: true, type:'Multiple' };
const editSettings: EditSettingsModel = { allowEditing: true, allowAdding: true, allowDeleting: true, mode: 'Normal' };
const toolbarOptions: ToolbarItems[] = ['Add', 'Edit', 'Delete', 'Update', 'Cancel', 'Search'];
const filterOptions: FilterSettingsModel = { type: 'CheckBox' };
const load = () => {
for (let i = 0; i < data.length; i++) {
data[i]['List'] = i + 1;
}
}
const rowDataBound = (args: RowDataBoundEventArgs) => {
args.isSelectable = args.data.List % 5 === 0;
}
return <GridComponent dataSource={data} selectionSettings={settings}
editSettings={editSettings} toolbar={toolbarOptions} filterSettings={filterOptions} allowPaging={true} allowFiltering={true} pageSettings={{pageSize : 5}}
rowDataBound={rowDataBound} load={load}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50'/>
<ColumnDirective field='List' width='120' headerText="List"/>
<ColumnDirective field='OrderID' headerText="Order ID" isPrimaryKey="true" width='150'/>
<ColumnDirective field='CustomerID' headerText="Customer ID" width='150'/>
<ColumnDirective field='EmployeeID' headerText="Employee ID" width='150'/>
<ColumnDirective field='ShipCity' headerText="Ship City" width='150'/>
</ColumnsDirective>
<Inject services={[Edit, Toolbar, Filter, Selection, Page]}/>
</GridComponent>
};
export default App;export let data = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VICTE', EmployeeID: 3, OrderDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'RICSU', EmployeeID: 9, OrderDate: new Date(8371098e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'WELLI', EmployeeID: 3, OrderDate: new Date(837369e6),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'HILAA', EmployeeID: 4, OrderDate: new Date(8374554e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'ERNSH', EmployeeID: 1, OrderDate: new Date(8375418e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'OTTIK', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'QUEDE', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'RATTC', EmployeeID: 8, OrderDate: new Date(8379738e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}
];export let data: Object[] = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VICTE', EmployeeID: 3, OrderDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'RICSU', EmployeeID: 9, OrderDate: new Date(8371098e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'WELLI', EmployeeID: 3, OrderDate: new Date(837369e6),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'HILAA', EmployeeID: 4, OrderDate: new Date(8374554e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'ERNSH', EmployeeID: 1, OrderDate: new Date(8375418e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'OTTIK', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'QUEDE', EmployeeID: 4, OrderDate: new Date(8377146e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'RATTC', EmployeeID: 8, OrderDate: new Date(8379738e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];Partial selection using isRowSelectable
The isRowSelectable callback in Syncfusion’s EJ2 Grid allows control over which rows users can select. It uses a simple callback that runs before the grid loads the data. This callback checks each row data and returns true if the row can be selected, or false for non-selectable rows.
For local data, the callback checks all items just once when the grid first loads. For remote data, it only checks the rows shown on the current page when the grid first appears. It re-checks them every time an action occurs, such as changing pages, filtering, or sorting.
In the example below, it prevents selection of rows with canceled orders.
import { ColumnDirective, ColumnsDirective, GridComponent, Inject, Page,
Sort, Selection, Filter, Toolbar, Edit, } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { ordersTrackData } from './datasource';
function App() {
const editSettings = { allowEditing: true, allowAdding: false, allowDeleting: false };
const orderIDRules = { required: true };
const customerNameRules = { required: true };
const amountRules = { required: true };
const toolbarSettings = ['Edit', 'Update', 'Cancel'];
const selectionSettings = { persistSelection: true };
const filterSettings = { type: 'Excel' };
const isRowSelectable = (data, columns) =>{
return data.Status !== 'Cancelled';
}
return (<div>
<GridComponent dataSource={ordersTrackData} allowPaging={true} editSettings={editSettings} toolbar={toolbarSettings} allowSelection={true}
allowFiltering={true} filterSettings={filterSettings} allowSorting={true} isRowSelectable={isRowSelectable} selectionSettings={selectionSettings}>
<Inject services={[Page, Sort, Selection, Filter, Toolbar, Edit ]} />
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' ></ColumnDirective>
<ColumnDirective field='OrderID' headerText='Order ID' isPrimaryKey='true' validationRules={orderIDRules} textAlign='Right' width='110' ></ColumnDirective>
<ColumnDirective field='CustomerName' headerText='Customer Name' validationRules={customerNameRules} width='120' ></ColumnDirective>
<ColumnDirective field='Product' headerText='Product' editType= 'dropdownedit' width='110' ></ColumnDirective>
<ColumnDirective field='Amount' headerText='Amount' validationRules={amountRules} format='C2' textAlign='Right' width='110' ></ColumnDirective>
<ColumnDirective field='OrderDate' headerText='Order Date' editType= 'datepickeredit' format='yMd' textAlign='Right' width='110' ></ColumnDirective>
<ColumnDirective field='Status' headerText='Order Status' editType= 'dropdownedit' width='110' ></ColumnDirective>
</ColumnsDirective>
</GridComponent></div>)
}
export default App;import { ColumnDirective, ColumnsDirective, GridComponent, Inject, Page, Selection, Filter, Toolbar, Edit,
Sort, EditSettingsModel, ToolbarItems, ColumnModel } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { ordersTrackData, OrderTrackModel } from './datasource';
function App() {
const editSettings: EditSettingsModel = { allowEditing: true, allowAdding: false, allowDeleting: false };
const orderIDRules: object = { required: true };
const customerNameRules: object = { required: true };
const amountRules: object = { required: true };
const toolbarSettings: ToolbarItems[] = ['Edit', 'Update', 'Cancel'];
const selectionSettings = { persistSelection: true };
const filterSettings = { type: 'Excel' };
const isRowSelectable = (data: OrderTrackModel, columns: ColumnModel[]) =>{
return data.Status !== 'Cancelled';
}
return (<div>
<GridComponent dataSource={ordersTrackData} allowPaging={true} editSettings={editSettings} toolbar={toolbarSettings} allowSelection={true}
allowFiltering={true} filterSettings={filterSettings} allowSorting={true} isRowSelectable={isRowSelectable} selectionSettings={selectionSettings}>
<Inject services={[Page, Sort, Selection, Filter, Toolbar, Edit ]} />
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' ></ColumnDirective>
<ColumnDirective field='OrderID' headerText='Order ID' isPrimaryKey='true' validationRules={orderIDRules} textAlign='Right' width='110' ></ColumnDirective>
<ColumnDirective field='CustomerName' headerText='Customer Name' validationRules={customerNameRules} width='120' ></ColumnDirective>
<ColumnDirective field='Product' headerText='Product' editType= 'dropdownedit' width='110' ></ColumnDirective>
<ColumnDirective field='Amount' headerText='Amount' validationRules={amountRules} format='C2' textAlign='Right' width='110' ></ColumnDirective>
<ColumnDirective field='OrderDate' headerText='Order Date' editType= 'datepickeredit' format='yMd' textAlign='Right' width='110' ></ColumnDirective>
<ColumnDirective field='Status' headerText='Order Status' editType= 'dropdownedit' width='110' ></ColumnDirective>
</ColumnsDirective>
</GridComponent></div>)
}
export default App;export let ordersTrackData = [
{
"OrderID": "ORD1001",
"CustomerName": "Eve Green",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-04-25"),
"Amount": "$148.14"
},
{
"OrderID": "ORD1002",
"CustomerName": "Jack Black",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-17"),
"Amount": "$39.50"
},
{
"OrderID": "ORD1003",
"CustomerName": "David Brown",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-10-15"),
"Amount": "$206.85"
},
{
"OrderID": "ORD1004",
"CustomerName": "Olivia Purple",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-29"),
"Amount": "$285.41"
},
{
"OrderID": "ORD1005",
"CustomerName": "Alice Johnson",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-05-23"),
"Amount": "$163.92"
},
{
"OrderID": "ORD1006",
"CustomerName": "Grace Lee",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-19"),
"Amount": "$365.39"
},
{
"OrderID": "ORD1007",
"CustomerName": "Noah Green",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-08-24"),
"Amount": "$540.87"
},
{
"OrderID": "ORD1008",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-11-18"),
"Amount": "$622.33"
},
{
"OrderID": "ORD1009",
"CustomerName": "Kelly Gray",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-01-24"),
"Amount": "$664.65"
},
{
"OrderID": "ORD1010",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-07-14"),
"Amount": "$285.19"
},
{
"OrderID": "ORD1011",
"CustomerName": "Alice Johnson",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-04-18"),
"Amount": "$673.47"
},
{
"OrderID": "ORD1012",
"CustomerName": "Noah Green",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-03-25"),
"Amount": "$467.64"
},
{
"OrderID": "ORD1013",
"CustomerName": "Jack Black",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-01-29"),
"Amount": "$236.76"
},
{
"OrderID": "ORD1014",
"CustomerName": "Mia Blue",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-03"),
"Amount": "$218.87"
},
{
"OrderID": "ORD1015",
"CustomerName": "Carol Davis",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-26"),
"Amount": "$464.26"
},
{
"OrderID": "ORD1016",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-10-27"),
"Amount": "$434.15"
},
{
"OrderID": "ORD1017",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-09-18"),
"Amount": "$498.58"
},
{
"OrderID": "ORD1018",
"CustomerName": "Grace Lee",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-12-15"),
"Amount": "$427.94"
},
{
"OrderID": "ORD1019",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-28"),
"Amount": "$258.90"
},
{
"OrderID": "ORD1020",
"CustomerName": "Grace Lee",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-11-25"),
"Amount": "$346.77"
},
{
"OrderID": "ORD1021",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-02"),
"Amount": "$954.28"
},
{
"OrderID": "ORD1022",
"CustomerName": "Ivy White",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-11-17"),
"Amount": "$305.46"
},
{
"OrderID": "ORD1023",
"CustomerName": "Noah Green",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-07-11"),
"Amount": "$764.89"
},
{
"OrderID": "ORD1024",
"CustomerName": "Ivy White",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-09-08"),
"Amount": "$29.28"
},
{
"OrderID": "ORD1025",
"CustomerName": "Bob Wilson",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-05-04"),
"Amount": "$879.23"
},
{
"OrderID": "ORD1026",
"CustomerName": "Henry Taylor",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-09-30"),
"Amount": "$768.18"
},
{
"OrderID": "ORD1027",
"CustomerName": "Paul Orange",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-05-16"),
"Amount": "$532.40"
},
{
"OrderID": "ORD1028",
"CustomerName": "Carol Davis",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-06-09"),
"Amount": "$405.00"
},
{
"OrderID": "ORD1029",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-03"),
"Amount": "$255.43"
},
{
"OrderID": "ORD1030",
"CustomerName": "Mia Blue",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-10-29"),
"Amount": "$228.02"
},
{
"OrderID": "ORD1031",
"CustomerName": "Jane Smith",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-01-17"),
"Amount": "$861.04"
},
{
"OrderID": "ORD1032",
"CustomerName": "Ivy White",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-12-09"),
"Amount": "$490.56"
},
{
"OrderID": "ORD1033",
"CustomerName": "Frank Miller",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-05"),
"Amount": "$786.77"
},
{
"OrderID": "ORD1034",
"CustomerName": "Carol Davis",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-12-04"),
"Amount": "$436.74"
},
{
"OrderID": "ORD1035",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-12-11"),
"Amount": "$656.92"
},
{
"OrderID": "ORD1036",
"CustomerName": "Jane Smith",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-25"),
"Amount": "$256.17"
},
{
"OrderID": "ORD1037",
"CustomerName": "Jack Black",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-08-05"),
"Amount": "$191.65"
},
{
"OrderID": "ORD1038",
"CustomerName": "David Brown",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-09"),
"Amount": "$106.93"
},
{
"OrderID": "ORD1039",
"CustomerName": "Eve Green",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-03-27"),
"Amount": "$412.35"
},
{
"OrderID": "ORD1040",
"CustomerName": "Carol Davis",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-03-26"),
"Amount": "$385.18"
},
{
"OrderID": "ORD1041",
"CustomerName": "John Doe",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-08-05"),
"Amount": "$699.63"
},
{
"OrderID": "ORD1042",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-04-22"),
"Amount": "$969.02"
},
{
"OrderID": "ORD1043",
"CustomerName": "Jane Smith",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-01-26"),
"Amount": "$588.34"
},
{
"OrderID": "ORD1044",
"CustomerName": "Ivy White",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-09-18"),
"Amount": "$89.31"
},
{
"OrderID": "ORD1045",
"CustomerName": "Henry Taylor",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-12-12"),
"Amount": "$863.20"
},
{
"OrderID": "ORD1046",
"CustomerName": "Grace Lee",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-10-24"),
"Amount": "$598.57"
},
{
"OrderID": "ORD1047",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-05-14"),
"Amount": "$212.22"
},
{
"OrderID": "ORD1048",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-09"),
"Amount": "$674.97"
},
{
"OrderID": "ORD1049",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-01-05"),
"Amount": "$463.70"
},
{
"OrderID": "ORD1050",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-09-17"),
"Amount": "$272.55"
},
{
"OrderID": "ORD1051",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-05-26"),
"Amount": "$166.17"
},
{
"OrderID": "ORD1052",
"CustomerName": "Bob Wilson",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-12-08"),
"Amount": "$818.93"
},
{
"OrderID": "ORD1053",
"CustomerName": "Grace Lee",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-03-01"),
"Amount": "$890.82"
},
{
"OrderID": "ORD1054",
"CustomerName": "John Doe",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-06-25"),
"Amount": "$211.56"
},
{
"OrderID": "ORD1055",
"CustomerName": "Ivy White",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-01-27"),
"Amount": "$101.38"
},
{
"OrderID": "ORD1056",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-06-20"),
"Amount": "$773.41"
},
{
"OrderID": "ORD1057",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-15"),
"Amount": "$19.57"
},
{
"OrderID": "ORD1058",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-07-09"),
"Amount": "$586.68"
},
{
"OrderID": "ORD1059",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-06-07"),
"Amount": "$371.01"
},
{
"OrderID": "ORD1060",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-12-08"),
"Amount": "$111.77"
},
{
"OrderID": "ORD1061",
"CustomerName": "Noah Green",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-03-25"),
"Amount": "$976.44"
},
{
"OrderID": "ORD1062",
"CustomerName": "Olivia Purple",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-06-20"),
"Amount": "$784.56"
},
{
"OrderID": "ORD1063",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-12-26"),
"Amount": "$117.01"
},
{
"OrderID": "ORD1064",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-08-24"),
"Amount": "$356.16"
},
{
"OrderID": "ORD1065",
"CustomerName": "David Brown",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-07-24"),
"Amount": "$334.98"
},
{
"OrderID": "ORD1066",
"CustomerName": "John Doe",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-14"),
"Amount": "$981.34"
},
{
"OrderID": "ORD1067",
"CustomerName": "Mia Blue",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-05-14"),
"Amount": "$186.78"
},
{
"OrderID": "ORD1068",
"CustomerName": "Jane Smith",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-26"),
"Amount": "$731.26"
},
{
"OrderID": "ORD1069",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-07-17"),
"Amount": "$900.51"
},
{
"OrderID": "ORD1070",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-01"),
"Amount": "$524.72"
},
{
"OrderID": "ORD1071",
"CustomerName": "Carol Davis",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-05"),
"Amount": "$949.39"
},
{
"OrderID": "ORD1072",
"CustomerName": "Noah Green",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-06-03"),
"Amount": "$512.05"
},
{
"OrderID": "ORD1073",
"CustomerName": "Mia Blue",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-10-11"),
"Amount": "$136.01"
},
{
"OrderID": "ORD1074",
"CustomerName": "Quinn Yellow",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-07-27"),
"Amount": "$552.46"
},
{
"OrderID": "ORD1075",
"CustomerName": "Bob Wilson",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-08-09"),
"Amount": "$787.90"
},
{
"OrderID": "ORD1076",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-12"),
"Amount": "$221.56"
},
{
"OrderID": "ORD1077",
"CustomerName": "Alice Johnson",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-09-21"),
"Amount": "$667.22"
},
{
"OrderID": "ORD1078",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-04-26"),
"Amount": "$808.50"
},
{
"OrderID": "ORD1079",
"CustomerName": "Eve Green",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-09-01"),
"Amount": "$615.16"
},
{
"OrderID": "ORD1080",
"CustomerName": "Leo Red",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-12-23"),
"Amount": "$390.14"
},
{
"OrderID": "ORD1081",
"CustomerName": "David Brown",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-02-24"),
"Amount": "$780.64"
},
{
"OrderID": "ORD1082",
"CustomerName": "Alice Johnson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-26"),
"Amount": "$561.83"
},
{
"OrderID": "ORD1083",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-08"),
"Amount": "$535.82"
},
{
"OrderID": "ORD1084",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-08"),
"Amount": "$451.45"
},
{
"OrderID": "ORD1085",
"CustomerName": "Paul Orange",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-05-07"),
"Amount": "$841.46"
},
{
"OrderID": "ORD1086",
"CustomerName": "Ivy White",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-05-21"),
"Amount": "$445.47"
},
{
"OrderID": "ORD1087",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-06-13"),
"Amount": "$894.10"
},
{
"OrderID": "ORD1088",
"CustomerName": "Frank Miller",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-07-16"),
"Amount": "$697.01"
},
{
"OrderID": "ORD1089",
"CustomerName": "Henry Taylor",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-19"),
"Amount": "$547.19"
},
{
"OrderID": "ORD1090",
"CustomerName": "Jane Smith",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-19"),
"Amount": "$905.79"
},
{
"OrderID": "ORD1091",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-04"),
"Amount": "$943.31"
},
{
"OrderID": "ORD1092",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-07"),
"Amount": "$227.23"
},
{
"OrderID": "ORD1093",
"CustomerName": "Paul Orange",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-22"),
"Amount": "$672.18"
},
{
"OrderID": "ORD1094",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-11-15"),
"Amount": "$538.78"
},
{
"OrderID": "ORD1095",
"CustomerName": "Kelly Gray",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-02-12"),
"Amount": "$646.32"
},
{
"OrderID": "ORD1096",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-05-14"),
"Amount": "$385.31"
},
{
"OrderID": "ORD1097",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-07-14"),
"Amount": "$285.47"
},
{
"OrderID": "ORD1098",
"CustomerName": "John Doe",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-10"),
"Amount": "$751.53"
},
{
"OrderID": "ORD1099",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-11-30"),
"Amount": "$49.86"
},
{
"OrderID": "ORD1100",
"CustomerName": "David Brown",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-11-15"),
"Amount": "$160.86"
},
{
"OrderID": "ORD1101",
"CustomerName": "Paul Orange",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-08-27"),
"Amount": "$702.47"
},
{
"OrderID": "ORD1102",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-03-25"),
"Amount": "$965.07"
},
{
"OrderID": "ORD1103",
"CustomerName": "Kelly Gray",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-10-22"),
"Amount": "$680.57"
},
{
"OrderID": "ORD1104",
"CustomerName": "Quinn Yellow",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-10-31"),
"Amount": "$693.71"
},
{
"OrderID": "ORD1105",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-10-17"),
"Amount": "$784.81"
},
{
"OrderID": "ORD1106",
"CustomerName": "Jack Black",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-05"),
"Amount": "$510.90"
},
{
"OrderID": "ORD1107",
"CustomerName": "Eve Green",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-24"),
"Amount": "$439.19"
},
{
"OrderID": "ORD1108",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-01"),
"Amount": "$736.46"
},
{
"OrderID": "ORD1109",
"CustomerName": "Noah Green",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-27"),
"Amount": "$441.22"
},
{
"OrderID": "ORD1110",
"CustomerName": "Mia Blue",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-05-23"),
"Amount": "$882.81"
},
{
"OrderID": "ORD1111",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-22"),
"Amount": "$38.41"
},
{
"OrderID": "ORD1112",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-01"),
"Amount": "$799.85"
},
{
"OrderID": "ORD1113",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-10-12"),
"Amount": "$20.05"
},
{
"OrderID": "ORD1114",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-08"),
"Amount": "$559.62"
},
{
"OrderID": "ORD1115",
"CustomerName": "Paul Orange",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-09"),
"Amount": "$102.12"
},
{
"OrderID": "ORD1116",
"CustomerName": "Quinn Yellow",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-12-06"),
"Amount": "$585.74"
},
{
"OrderID": "ORD1117",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-08-06"),
"Amount": "$996.67"
},
{
"OrderID": "ORD1118",
"CustomerName": "Rose Pink",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-06-06"),
"Amount": "$258.89"
},
{
"OrderID": "ORD1119",
"CustomerName": "Carol Davis",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-02"),
"Amount": "$951.37"
},
{
"OrderID": "ORD1120",
"CustomerName": "Carol Davis",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-22"),
"Amount": "$727.34"
},
{
"OrderID": "ORD1121",
"CustomerName": "Noah Green",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-04-10"),
"Amount": "$303.28"
},
{
"OrderID": "ORD1122",
"CustomerName": "Alice Johnson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-12-29"),
"Amount": "$538.79"
},
{
"OrderID": "ORD1123",
"CustomerName": "Jane Smith",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-12-24"),
"Amount": "$944.65"
},
{
"OrderID": "ORD1124",
"CustomerName": "Grace Lee",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-08-29"),
"Amount": "$483.93"
},
{
"OrderID": "ORD1125",
"CustomerName": "Alice Johnson",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-09-02"),
"Amount": "$122.95"
},
{
"OrderID": "ORD1126",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-10-23"),
"Amount": "$633.15"
},
{
"OrderID": "ORD1127",
"CustomerName": "Frank Miller",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-02-13"),
"Amount": "$993.98"
},
{
"OrderID": "ORD1128",
"CustomerName": "Jack Black",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-25"),
"Amount": "$386.57"
},
{
"OrderID": "ORD1129",
"CustomerName": "Bob Wilson",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-06"),
"Amount": "$572.94"
},
{
"OrderID": "ORD1130",
"CustomerName": "Noah Green",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-11-17"),
"Amount": "$218.91"
},
{
"OrderID": "ORD1131",
"CustomerName": "Alice Johnson",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-10-10"),
"Amount": "$84.31"
},
{
"OrderID": "ORD1132",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-30"),
"Amount": "$42.31"
},
{
"OrderID": "ORD1133",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-12-18"),
"Amount": "$241.09"
},
{
"OrderID": "ORD1134",
"CustomerName": "Kelly Gray",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-28"),
"Amount": "$549.12"
},
{
"OrderID": "ORD1135",
"CustomerName": "John Doe",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-01-31"),
"Amount": "$174.26"
},
{
"OrderID": "ORD1136",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-08-13"),
"Amount": "$133.11"
},
{
"OrderID": "ORD1137",
"CustomerName": "Quinn Yellow",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-13"),
"Amount": "$89.64"
},
{
"OrderID": "ORD1138",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-01-14"),
"Amount": "$100.41"
},
{
"OrderID": "ORD1139",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-03-31"),
"Amount": "$475.80"
},
{
"OrderID": "ORD1140",
"CustomerName": "John Doe",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-22"),
"Amount": "$816.10"
},
{
"OrderID": "ORD1141",
"CustomerName": "Paul Orange",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-20"),
"Amount": "$327.85"
},
{
"OrderID": "ORD1142",
"CustomerName": "Alice Johnson",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-22"),
"Amount": "$500.51"
},
{
"OrderID": "ORD1143",
"CustomerName": "Jack Black",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-15"),
"Amount": "$321.37"
},
{
"OrderID": "ORD1144",
"CustomerName": "Grace Lee",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-12-03"),
"Amount": "$870.67"
},
{
"OrderID": "ORD1145",
"CustomerName": "Olivia Purple",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-09-23"),
"Amount": "$368.16"
},
{
"OrderID": "ORD1146",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-05-17"),
"Amount": "$553.73"
},
{
"OrderID": "ORD1147",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-01-15"),
"Amount": "$973.42"
},
{
"OrderID": "ORD1148",
"CustomerName": "Alice Johnson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-10-10"),
"Amount": "$413.91"
},
{
"OrderID": "ORD1149",
"CustomerName": "Grace Lee",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-11-28"),
"Amount": "$833.82"
},
{
"OrderID": "ORD1150",
"CustomerName": "Bob Wilson",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-08-01"),
"Amount": "$836.38"
},
{
"OrderID": "ORD1151",
"CustomerName": "David Brown",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-16"),
"Amount": "$198.70"
},
{
"OrderID": "ORD1152",
"CustomerName": "Frank Miller",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-08-01"),
"Amount": "$346.48"
},
{
"OrderID": "ORD1153",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-06-02"),
"Amount": "$839.10"
},
{
"OrderID": "ORD1154",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-26"),
"Amount": "$339.12"
},
{
"OrderID": "ORD1155",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-04-07"),
"Amount": "$980.97"
},
{
"OrderID": "ORD1156",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-07-30"),
"Amount": "$53.21"
},
{
"OrderID": "ORD1157",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-11"),
"Amount": "$965.18"
},
{
"OrderID": "ORD1158",
"CustomerName": "Ivy White",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-02-21"),
"Amount": "$875.45"
},
{
"OrderID": "ORD1159",
"CustomerName": "Grace Lee",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-08"),
"Amount": "$725.22"
},
{
"OrderID": "ORD1160",
"CustomerName": "Frank Miller",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-16"),
"Amount": "$345.18"
},
{
"OrderID": "ORD1161",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-12"),
"Amount": "$630.53"
},
{
"OrderID": "ORD1162",
"CustomerName": "Jack Black",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-05-01"),
"Amount": "$634.85"
},
{
"OrderID": "ORD1163",
"CustomerName": "David Brown",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-20"),
"Amount": "$762.77"
},
{
"OrderID": "ORD1164",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-01-15"),
"Amount": "$55.53"
},
{
"OrderID": "ORD1165",
"CustomerName": "Bob Wilson",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-08-09"),
"Amount": "$154.11"
},
{
"OrderID": "ORD1166",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-03-29"),
"Amount": "$183.32"
},
{
"OrderID": "ORD1167",
"CustomerName": "Noah Green",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-26"),
"Amount": "$151.69"
},
{
"OrderID": "ORD1168",
"CustomerName": "John Doe",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-12-08"),
"Amount": "$19.30"
},
{
"OrderID": "ORD1169",
"CustomerName": "Bob Wilson",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-02-07"),
"Amount": "$447.31"
},
{
"OrderID": "ORD1170",
"CustomerName": "Kelly Gray",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-20"),
"Amount": "$257.60"
},
{
"OrderID": "ORD1171",
"CustomerName": "Carol Davis",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-24"),
"Amount": "$244.83"
},
{
"OrderID": "ORD1172",
"CustomerName": "Kelly Gray",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-01-12"),
"Amount": "$978.17"
},
{
"OrderID": "ORD1173",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-11-07"),
"Amount": "$747.72"
},
{
"OrderID": "ORD1174",
"CustomerName": "David Brown",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-04-23"),
"Amount": "$640.25"
},
{
"OrderID": "ORD1175",
"CustomerName": "Frank Miller",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-06-08"),
"Amount": "$790.72"
},
{
"OrderID": "ORD1176",
"CustomerName": "Kelly Gray",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-02-16"),
"Amount": "$910.53"
},
{
"OrderID": "ORD1177",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-03-09"),
"Amount": "$788.65"
},
{
"OrderID": "ORD1178",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-26"),
"Amount": "$264.40"
},
{
"OrderID": "ORD1179",
"CustomerName": "Bob Wilson",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-08-28"),
"Amount": "$963.26"
},
{
"OrderID": "ORD1180",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-16"),
"Amount": "$792.78"
},
{
"OrderID": "ORD1181",
"CustomerName": "John Doe",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-08-21"),
"Amount": "$374.90"
},
{
"OrderID": "ORD1182",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-25"),
"Amount": "$678.09"
},
{
"OrderID": "ORD1183",
"CustomerName": "Eve Green",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-11-09"),
"Amount": "$229.15"
},
{
"OrderID": "ORD1184",
"CustomerName": "Leo Red",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-01"),
"Amount": "$148.38"
},
{
"OrderID": "ORD1185",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-02-19"),
"Amount": "$242.45"
},
{
"OrderID": "ORD1186",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-08-01"),
"Amount": "$658.37"
},
{
"OrderID": "ORD1187",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-01-17"),
"Amount": "$693.38"
},
{
"OrderID": "ORD1188",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-05"),
"Amount": "$108.36"
},
{
"OrderID": "ORD1189",
"CustomerName": "Jack Black",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-07-23"),
"Amount": "$283.12"
},
{
"OrderID": "ORD1190",
"CustomerName": "Leo Red",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-11-25"),
"Amount": "$643.10"
},
{
"OrderID": "ORD1191",
"CustomerName": "Jane Smith",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-03-06"),
"Amount": "$789.11"
},
{
"OrderID": "ORD1192",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-10-28"),
"Amount": "$223.79"
},
{
"OrderID": "ORD1193",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-05-22"),
"Amount": "$859.82"
},
{
"OrderID": "ORD1194",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-31"),
"Amount": "$118.83"
},
{
"OrderID": "ORD1195",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-05-02"),
"Amount": "$592.96"
},
{
"OrderID": "ORD1196",
"CustomerName": "Alice Johnson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-03-06"),
"Amount": "$744.30"
},
{
"OrderID": "ORD1197",
"CustomerName": "Grace Lee",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-18"),
"Amount": "$780.24"
},
{
"OrderID": "ORD1198",
"CustomerName": "Kelly Gray",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-15"),
"Amount": "$229.33"
},
{
"OrderID": "ORD1199",
"CustomerName": "Ivy White",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-26"),
"Amount": "$964.39"
},
{
"OrderID": "ORD1200",
"CustomerName": "Paul Orange",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-18"),
"Amount": "$116.88"
},
{
"OrderID": "ORD1201",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-11-08"),
"Amount": "$156.85"
},
{
"OrderID": "ORD1202",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-07-15"),
"Amount": "$994.68"
},
{
"OrderID": "ORD1203",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-20"),
"Amount": "$795.17"
},
{
"OrderID": "ORD1204",
"CustomerName": "Jack Black",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-20"),
"Amount": "$889.21"
},
{
"OrderID": "ORD1205",
"CustomerName": "Mia Blue",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-01"),
"Amount": "$732.32"
},
{
"OrderID": "ORD1206",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-07-11"),
"Amount": "$954.06"
},
{
"OrderID": "ORD1207",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-02-17"),
"Amount": "$437.56"
},
{
"OrderID": "ORD1208",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-10-28"),
"Amount": "$957.06"
},
{
"OrderID": "ORD1209",
"CustomerName": "Grace Lee",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-12-07"),
"Amount": "$941.72"
},
{
"OrderID": "ORD1210",
"CustomerName": "Jane Smith",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-06-30"),
"Amount": "$112.56"
},
{
"OrderID": "ORD1211",
"CustomerName": "Carol Davis",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-25"),
"Amount": "$848.80"
},
{
"OrderID": "ORD1212",
"CustomerName": "Jack Black",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-05-23"),
"Amount": "$578.36"
},
{
"OrderID": "ORD1213",
"CustomerName": "Jack Black",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-11-08"),
"Amount": "$929.79"
},
{
"OrderID": "ORD1214",
"CustomerName": "Eve Green",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-12-26"),
"Amount": "$764.79"
},
{
"OrderID": "ORD1215",
"CustomerName": "Rose Pink",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-03-15"),
"Amount": "$570.66"
},
{
"OrderID": "ORD1216",
"CustomerName": "Henry Taylor",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-02-16"),
"Amount": "$748.65"
},
{
"OrderID": "ORD1217",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-24"),
"Amount": "$165.84"
},
{
"OrderID": "ORD1218",
"CustomerName": "Mia Blue",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-01-27"),
"Amount": "$164.02"
},
{
"OrderID": "ORD1219",
"CustomerName": "Henry Taylor",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-05"),
"Amount": "$429.77"
},
{
"OrderID": "ORD1220",
"CustomerName": "Olivia Purple",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-09-20"),
"Amount": "$122.68"
},
{
"OrderID": "ORD1221",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-27"),
"Amount": "$670.46"
},
{
"OrderID": "ORD1222",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-01-04"),
"Amount": "$212.38"
},
{
"OrderID": "ORD1223",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-06-17"),
"Amount": "$128.78"
},
{
"OrderID": "ORD1224",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-07-14"),
"Amount": "$537.26"
},
{
"OrderID": "ORD1225",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-02-06"),
"Amount": "$403.10"
},
{
"OrderID": "ORD1226",
"CustomerName": "Olivia Purple",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-09"),
"Amount": "$863.49"
},
{
"OrderID": "ORD1227",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-29"),
"Amount": "$124.02"
},
{
"OrderID": "ORD1228",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-20"),
"Amount": "$920.57"
},
{
"OrderID": "ORD1229",
"CustomerName": "Olivia Purple",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-08-12"),
"Amount": "$592.98"
},
{
"OrderID": "ORD1230",
"CustomerName": "Henry Taylor",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-06-23"),
"Amount": "$229.36"
},
{
"OrderID": "ORD1231",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-09-29"),
"Amount": "$514.85"
},
{
"OrderID": "ORD1232",
"CustomerName": "Rose Pink",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-02-22"),
"Amount": "$154.98"
},
{
"OrderID": "ORD1233",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-12-02"),
"Amount": "$84.60"
},
{
"OrderID": "ORD1234",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-15"),
"Amount": "$924.91"
},
{
"OrderID": "ORD1235",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-04"),
"Amount": "$474.23"
},
{
"OrderID": "ORD1236",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-06-30"),
"Amount": "$512.26"
},
{
"OrderID": "ORD1237",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-01-30"),
"Amount": "$375.05"
},
{
"OrderID": "ORD1238",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-25"),
"Amount": "$584.53"
},
{
"OrderID": "ORD1239",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-06-14"),
"Amount": "$608.96"
},
{
"OrderID": "ORD1240",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-22"),
"Amount": "$812.86"
},
{
"OrderID": "ORD1241",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-01-21"),
"Amount": "$255.27"
},
{
"OrderID": "ORD1242",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-07-06"),
"Amount": "$379.12"
},
{
"OrderID": "ORD1243",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-12-14"),
"Amount": "$601.91"
},
{
"OrderID": "ORD1244",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-13"),
"Amount": "$681.60"
},
{
"OrderID": "ORD1245",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-06-20"),
"Amount": "$90.69"
},
{
"OrderID": "ORD1246",
"CustomerName": "Rose Pink",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-08"),
"Amount": "$599.09"
},
{
"OrderID": "ORD1247",
"CustomerName": "Bob Wilson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-26"),
"Amount": "$793.75"
},
{
"OrderID": "ORD1248",
"CustomerName": "Ivy White",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-18"),
"Amount": "$368.21"
},
{
"OrderID": "ORD1249",
"CustomerName": "Bob Wilson",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-06-24"),
"Amount": "$948.19"
},
{
"OrderID": "ORD1250",
"CustomerName": "Carol Davis",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-03-21"),
"Amount": "$86.39"
},
{
"OrderID": "ORD1251",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-12-05"),
"Amount": "$343.40"
},
{
"OrderID": "ORD1252",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-03-25"),
"Amount": "$189.04"
},
{
"OrderID": "ORD1253",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-06"),
"Amount": "$679.60"
},
{
"OrderID": "ORD1254",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-08-18"),
"Amount": "$241.66"
},
{
"OrderID": "ORD1255",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-08"),
"Amount": "$681.52"
},
{
"OrderID": "ORD1256",
"CustomerName": "Leo Red",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-15"),
"Amount": "$532.19"
},
{
"OrderID": "ORD1257",
"CustomerName": "Carol Davis",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-05-09"),
"Amount": "$61.66"
},
{
"OrderID": "ORD1258",
"CustomerName": "Rose Pink",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-12-31"),
"Amount": "$847.43"
},
{
"OrderID": "ORD1259",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-05-20"),
"Amount": "$454.83"
},
{
"OrderID": "ORD1260",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-04-24"),
"Amount": "$818.54"
},
{
"OrderID": "ORD1261",
"CustomerName": "Eve Green",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-07-22"),
"Amount": "$506.99"
},
{
"OrderID": "ORD1262",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-04-25"),
"Amount": "$37.91"
},
{
"OrderID": "ORD1263",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-01-20"),
"Amount": "$294.01"
},
{
"OrderID": "ORD1264",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-12"),
"Amount": "$15.20"
},
{
"OrderID": "ORD1265",
"CustomerName": "Eve Green",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-03-18"),
"Amount": "$553.32"
},
{
"OrderID": "ORD1266",
"CustomerName": "Olivia Purple",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-05-02"),
"Amount": "$308.14"
},
{
"OrderID": "ORD1267",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-02"),
"Amount": "$119.75"
},
{
"OrderID": "ORD1268",
"CustomerName": "Noah Green",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-11-20"),
"Amount": "$520.22"
},
{
"OrderID": "ORD1269",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-01"),
"Amount": "$618.66"
},
{
"OrderID": "ORD1270",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-12-07"),
"Amount": "$671.53"
},
{
"OrderID": "ORD1271",
"CustomerName": "Rose Pink",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-07-19"),
"Amount": "$874.60"
},
{
"OrderID": "ORD1272",
"CustomerName": "Quinn Yellow",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-01-09"),
"Amount": "$363.52"
},
{
"OrderID": "ORD1273",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-10-25"),
"Amount": "$737.84"
},
{
"OrderID": "ORD1274",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-10-07"),
"Amount": "$345.16"
},
{
"OrderID": "ORD1275",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-03-11"),
"Amount": "$72.47"
},
{
"OrderID": "ORD1276",
"CustomerName": "Jane Smith",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-01-23"),
"Amount": "$793.20"
},
{
"OrderID": "ORD1277",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-06"),
"Amount": "$478.67"
},
{
"OrderID": "ORD1278",
"CustomerName": "Carol Davis",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-01-25"),
"Amount": "$867.14"
},
{
"OrderID": "ORD1279",
"CustomerName": "John Doe",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-08-12"),
"Amount": "$890.59"
},
{
"OrderID": "ORD1280",
"CustomerName": "Quinn Yellow",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-09-12"),
"Amount": "$695.15"
},
{
"OrderID": "ORD1281",
"CustomerName": "Ivy White",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-08-06"),
"Amount": "$88.14"
},
{
"OrderID": "ORD1282",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-02-22"),
"Amount": "$89.27"
},
{
"OrderID": "ORD1283",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-27"),
"Amount": "$692.87"
},
{
"OrderID": "ORD1284",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-11-11"),
"Amount": "$998.17"
},
{
"OrderID": "ORD1285",
"CustomerName": "Jane Smith",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-06"),
"Amount": "$517.96"
},
{
"OrderID": "ORD1286",
"CustomerName": "Eve Green",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-18"),
"Amount": "$134.97"
},
{
"OrderID": "ORD1287",
"CustomerName": "Rose Pink",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-18"),
"Amount": "$42.06"
},
{
"OrderID": "ORD1288",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-08-16"),
"Amount": "$765.45"
},
{
"OrderID": "ORD1289",
"CustomerName": "Ivy White",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-10"),
"Amount": "$653.07"
},
{
"OrderID": "ORD1290",
"CustomerName": "Grace Lee",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-09-13"),
"Amount": "$522.57"
},
{
"OrderID": "ORD1291",
"CustomerName": "John Doe",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-20"),
"Amount": "$996.40"
},
{
"OrderID": "ORD1292",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-03-11"),
"Amount": "$854.30"
},
{
"OrderID": "ORD1293",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-12-16"),
"Amount": "$967.89"
},
{
"OrderID": "ORD1294",
"CustomerName": "Rose Pink",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-06-03"),
"Amount": "$852.85"
},
{
"OrderID": "ORD1295",
"CustomerName": "Rose Pink",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-03-04"),
"Amount": "$985.28"
},
{
"OrderID": "ORD1296",
"CustomerName": "David Brown",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-07-04"),
"Amount": "$558.48"
},
{
"OrderID": "ORD1297",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-11-10"),
"Amount": "$885.40"
},
{
"OrderID": "ORD1298",
"CustomerName": "Bob Wilson",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-27"),
"Amount": "$416.69"
},
{
"OrderID": "ORD1299",
"CustomerName": "Kelly Gray",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-06-12"),
"Amount": "$645.92"
},
{
"OrderID": "ORD1300",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-07"),
"Amount": "$879.18"
},
{
"OrderID": "ORD1301",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-03-05"),
"Amount": "$522.92"
},
{
"OrderID": "ORD1302",
"CustomerName": "Alice Johnson",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-12-30"),
"Amount": "$233.22"
},
{
"OrderID": "ORD1303",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-04-11"),
"Amount": "$638.71"
},
{
"OrderID": "ORD1304",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-09-15"),
"Amount": "$644.58"
},
{
"OrderID": "ORD1305",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-10-16"),
"Amount": "$50.78"
},
{
"OrderID": "ORD1306",
"CustomerName": "Henry Taylor",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-11-30"),
"Amount": "$218.70"
},
{
"OrderID": "ORD1307",
"CustomerName": "Noah Green",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-18"),
"Amount": "$550.12"
},
{
"OrderID": "ORD1308",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-02"),
"Amount": "$459.01"
},
{
"OrderID": "ORD1309",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-05"),
"Amount": "$469.80"
},
{
"OrderID": "ORD1310",
"CustomerName": "Noah Green",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-06-13"),
"Amount": "$736.86"
},
{
"OrderID": "ORD1311",
"CustomerName": "Quinn Yellow",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-09-21"),
"Amount": "$566.03"
},
{
"OrderID": "ORD1312",
"CustomerName": "David Brown",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-05-17"),
"Amount": "$455.10"
},
{
"OrderID": "ORD1313",
"CustomerName": "Grace Lee",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-07-16"),
"Amount": "$865.52"
},
{
"OrderID": "ORD1314",
"CustomerName": "David Brown",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-10-23"),
"Amount": "$723.92"
},
{
"OrderID": "ORD1315",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-13"),
"Amount": "$880.28"
},
{
"OrderID": "ORD1316",
"CustomerName": "Eve Green",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-16"),
"Amount": "$462.66"
},
{
"OrderID": "ORD1317",
"CustomerName": "Carol Davis",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-01-25"),
"Amount": "$60.04"
},
{
"OrderID": "ORD1318",
"CustomerName": "Noah Green",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-10-02"),
"Amount": "$18.10"
},
{
"OrderID": "ORD1319",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-07-07"),
"Amount": "$766.22"
},
{
"OrderID": "ORD1320",
"CustomerName": "Jane Smith",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-10-19"),
"Amount": "$566.20"
},
{
"OrderID": "ORD1321",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-07-17"),
"Amount": "$509.21"
},
{
"OrderID": "ORD1322",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-03-07"),
"Amount": "$975.33"
},
{
"OrderID": "ORD1323",
"CustomerName": "Rose Pink",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-03-15"),
"Amount": "$207.07"
},
{
"OrderID": "ORD1324",
"CustomerName": "Quinn Yellow",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-01-24"),
"Amount": "$48.52"
},
{
"OrderID": "ORD1325",
"CustomerName": "Paul Orange",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-18"),
"Amount": "$610.20"
},
{
"OrderID": "ORD1326",
"CustomerName": "Frank Miller",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-03-25"),
"Amount": "$399.03"
},
{
"OrderID": "ORD1327",
"CustomerName": "Kelly Gray",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-29"),
"Amount": "$567.30"
},
{
"OrderID": "ORD1328",
"CustomerName": "Eve Green",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-12-11"),
"Amount": "$118.51"
},
{
"OrderID": "ORD1329",
"CustomerName": "Kelly Gray",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-11-02"),
"Amount": "$479.84"
},
{
"OrderID": "ORD1330",
"CustomerName": "Jane Smith",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-29"),
"Amount": "$528.99"
},
{
"OrderID": "ORD1331",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-10-21"),
"Amount": "$948.72"
},
{
"OrderID": "ORD1332",
"CustomerName": "Carol Davis",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-10"),
"Amount": "$424.59"
},
{
"OrderID": "ORD1333",
"CustomerName": "Carol Davis",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-01"),
"Amount": "$708.72"
},
{
"OrderID": "ORD1334",
"CustomerName": "Carol Davis",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-12-06"),
"Amount": "$483.59"
},
{
"OrderID": "ORD1335",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-30"),
"Amount": "$348.90"
},
{
"OrderID": "ORD1336",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-09"),
"Amount": "$957.76"
},
{
"OrderID": "ORD1337",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-06-02"),
"Amount": "$773.46"
},
{
"OrderID": "ORD1338",
"CustomerName": "Paul Orange",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-28"),
"Amount": "$564.88"
},
{
"OrderID": "ORD1339",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-22"),
"Amount": "$820.19"
},
{
"OrderID": "ORD1340",
"CustomerName": "Bob Wilson",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-02-10"),
"Amount": "$352.90"
},
{
"OrderID": "ORD1341",
"CustomerName": "John Doe",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-04-14"),
"Amount": "$829.67"
},
{
"OrderID": "ORD1342",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-02-25"),
"Amount": "$619.52"
},
{
"OrderID": "ORD1343",
"CustomerName": "David Brown",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-11-23"),
"Amount": "$240.51"
},
{
"OrderID": "ORD1344",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-21"),
"Amount": "$684.38"
},
{
"OrderID": "ORD1345",
"CustomerName": "Eve Green",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-07-28"),
"Amount": "$656.36"
},
{
"OrderID": "ORD1346",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-06-14"),
"Amount": "$292.56"
},
{
"OrderID": "ORD1347",
"CustomerName": "Henry Taylor",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-10-01"),
"Amount": "$741.30"
},
{
"OrderID": "ORD1348",
"CustomerName": "Alice Johnson",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-01-19"),
"Amount": "$997.20"
},
{
"OrderID": "ORD1349",
"CustomerName": "Paul Orange",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-01-20"),
"Amount": "$19.17"
},
{
"OrderID": "ORD1350",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-25"),
"Amount": "$547.87"
},
{
"OrderID": "ORD1351",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-20"),
"Amount": "$200.88"
},
{
"OrderID": "ORD1352",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-28"),
"Amount": "$264.69"
},
{
"OrderID": "ORD1353",
"CustomerName": "Eve Green",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-10-18"),
"Amount": "$677.66"
},
{
"OrderID": "ORD1354",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-07"),
"Amount": "$520.13"
},
{
"OrderID": "ORD1355",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-03-13"),
"Amount": "$482.68"
},
{
"OrderID": "ORD1356",
"CustomerName": "Eve Green",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-01"),
"Amount": "$452.27"
},
{
"OrderID": "ORD1357",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-05-14"),
"Amount": "$657.15"
},
{
"OrderID": "ORD1358",
"CustomerName": "Jane Smith",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-07"),
"Amount": "$168.12"
},
{
"OrderID": "ORD1359",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-07-08"),
"Amount": "$618.48"
},
{
"OrderID": "ORD1360",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-08-21"),
"Amount": "$750.26"
},
{
"OrderID": "ORD1361",
"CustomerName": "Olivia Purple",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-03"),
"Amount": "$803.98"
},
{
"OrderID": "ORD1362",
"CustomerName": "David Brown",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-09-27"),
"Amount": "$452.28"
},
{
"OrderID": "ORD1363",
"CustomerName": "Henry Taylor",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-02-01"),
"Amount": "$830.49"
},
{
"OrderID": "ORD1364",
"CustomerName": "Carol Davis",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-03-26"),
"Amount": "$334.84"
},
{
"OrderID": "ORD1365",
"CustomerName": "Leo Red",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-10-26"),
"Amount": "$493.94"
},
{
"OrderID": "ORD1366",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-09"),
"Amount": "$518.12"
},
{
"OrderID": "ORD1367",
"CustomerName": "Kelly Gray",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-11"),
"Amount": "$808.85"
},
{
"OrderID": "ORD1368",
"CustomerName": "Quinn Yellow",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-04-22"),
"Amount": "$582.53"
},
{
"OrderID": "ORD1369",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-05"),
"Amount": "$994.18"
},
{
"OrderID": "ORD1370",
"CustomerName": "Paul Orange",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-07-29"),
"Amount": "$188.18"
},
{
"OrderID": "ORD1371",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-18"),
"Amount": "$870.92"
},
{
"OrderID": "ORD1372",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-12-01"),
"Amount": "$861.68"
},
{
"OrderID": "ORD1373",
"CustomerName": "Alice Johnson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-28"),
"Amount": "$136.07"
},
{
"OrderID": "ORD1374",
"CustomerName": "Eve Green",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-08-26"),
"Amount": "$676.76"
},
{
"OrderID": "ORD1375",
"CustomerName": "Olivia Purple",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-28"),
"Amount": "$255.04"
},
{
"OrderID": "ORD1376",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-02-27"),
"Amount": "$41.90"
},
{
"OrderID": "ORD1377",
"CustomerName": "Noah Green",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-04-16"),
"Amount": "$76.62"
},
{
"OrderID": "ORD1378",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-05-06"),
"Amount": "$743.14"
},
{
"OrderID": "ORD1379",
"CustomerName": "Leo Red",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-01-29"),
"Amount": "$148.73"
},
{
"OrderID": "ORD1380",
"CustomerName": "David Brown",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-10-23"),
"Amount": "$601.94"
},
{
"OrderID": "ORD1381",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-12-05"),
"Amount": "$526.04"
},
{
"OrderID": "ORD1382",
"CustomerName": "Bob Wilson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-10-13"),
"Amount": "$949.04"
},
{
"OrderID": "ORD1383",
"CustomerName": "Olivia Purple",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-25"),
"Amount": "$972.57"
},
{
"OrderID": "ORD1384",
"CustomerName": "Ivy White",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-29"),
"Amount": "$157.73"
},
{
"OrderID": "ORD1385",
"CustomerName": "Alice Johnson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-04"),
"Amount": "$850.85"
},
{
"OrderID": "ORD1386",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-10-15"),
"Amount": "$418.55"
},
{
"OrderID": "ORD1387",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-07-18"),
"Amount": "$250.43"
},
{
"OrderID": "ORD1388",
"CustomerName": "Mia Blue",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-09"),
"Amount": "$101.54"
},
{
"OrderID": "ORD1389",
"CustomerName": "Jane Smith",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-11"),
"Amount": "$608.92"
},
{
"OrderID": "ORD1390",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-09-03"),
"Amount": "$216.80"
},
{
"OrderID": "ORD1391",
"CustomerName": "Bob Wilson",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-04-08"),
"Amount": "$962.46"
},
{
"OrderID": "ORD1392",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-07-23"),
"Amount": "$915.98"
},
{
"OrderID": "ORD1393",
"CustomerName": "Bob Wilson",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-01"),
"Amount": "$652.23"
},
{
"OrderID": "ORD1394",
"CustomerName": "John Doe",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-27"),
"Amount": "$107.62"
},
{
"OrderID": "ORD1395",
"CustomerName": "Mia Blue",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-06-10"),
"Amount": "$419.79"
},
{
"OrderID": "ORD1396",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-10-11"),
"Amount": "$935.41"
},
{
"OrderID": "ORD1397",
"CustomerName": "Bob Wilson",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-06-18"),
"Amount": "$237.72"
},
{
"OrderID": "ORD1398",
"CustomerName": "Paul Orange",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-05-12"),
"Amount": "$765.73"
},
{
"OrderID": "ORD1399",
"CustomerName": "Paul Orange",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-06-30"),
"Amount": "$177.57"
},
{
"OrderID": "ORD1400",
"CustomerName": "Paul Orange",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-09-26"),
"Amount": "$43.49"
},
{
"OrderID": "ORD1401",
"CustomerName": "Jane Smith",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-12"),
"Amount": "$844.12"
},
{
"OrderID": "ORD1402",
"CustomerName": "Henry Taylor",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-04-22"),
"Amount": "$510.68"
},
{
"OrderID": "ORD1403",
"CustomerName": "Jane Smith",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-04"),
"Amount": "$492.98"
},
{
"OrderID": "ORD1404",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-07"),
"Amount": "$26.56"
},
{
"OrderID": "ORD1405",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-09-15"),
"Amount": "$815.03"
},
{
"OrderID": "ORD1406",
"CustomerName": "Alice Johnson",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-09-26"),
"Amount": "$157.41"
},
{
"OrderID": "ORD1407",
"CustomerName": "Noah Green",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-07-01"),
"Amount": "$274.65"
},
{
"OrderID": "ORD1408",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-24"),
"Amount": "$569.35"
},
{
"OrderID": "ORD1409",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-02-17"),
"Amount": "$411.23"
},
{
"OrderID": "ORD1410",
"CustomerName": "Jack Black",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-11-23"),
"Amount": "$19.36"
},
{
"OrderID": "ORD1411",
"CustomerName": "Henry Taylor",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-27"),
"Amount": "$786.53"
},
{
"OrderID": "ORD1412",
"CustomerName": "Ivy White",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-04-19"),
"Amount": "$902.26"
},
{
"OrderID": "ORD1413",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-12-17"),
"Amount": "$926.33"
},
{
"OrderID": "ORD1414",
"CustomerName": "Kelly Gray",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-06-11"),
"Amount": "$25.50"
},
{
"OrderID": "ORD1415",
"CustomerName": "Kelly Gray",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-09"),
"Amount": "$306.28"
},
{
"OrderID": "ORD1416",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-07-16"),
"Amount": "$758.05"
},
{
"OrderID": "ORD1417",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-01-28"),
"Amount": "$106.71"
},
{
"OrderID": "ORD1418",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-17"),
"Amount": "$39.33"
},
{
"OrderID": "ORD1419",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-02"),
"Amount": "$557.51"
},
{
"OrderID": "ORD1420",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-13"),
"Amount": "$774.45"
},
{
"OrderID": "ORD1421",
"CustomerName": "David Brown",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-05-18"),
"Amount": "$162.68"
},
{
"OrderID": "ORD1422",
"CustomerName": "Quinn Yellow",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-02-24"),
"Amount": "$100.61"
},
{
"OrderID": "ORD1423",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-02-22"),
"Amount": "$141.18"
},
{
"OrderID": "ORD1424",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-22"),
"Amount": "$36.00"
},
{
"OrderID": "ORD1425",
"CustomerName": "Jack Black",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-07-17"),
"Amount": "$22.22"
},
{
"OrderID": "ORD1426",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-10-20"),
"Amount": "$525.89"
},
{
"OrderID": "ORD1427",
"CustomerName": "Alice Johnson",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-06-04"),
"Amount": "$275.72"
},
{
"OrderID": "ORD1428",
"CustomerName": "Henry Taylor",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-22"),
"Amount": "$426.89"
},
{
"OrderID": "ORD1429",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-05-07"),
"Amount": "$723.69"
},
{
"OrderID": "ORD1430",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-08-23"),
"Amount": "$115.90"
},
{
"OrderID": "ORD1431",
"CustomerName": "Eve Green",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-11-14"),
"Amount": "$386.09"
},
{
"OrderID": "ORD1432",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-30"),
"Amount": "$974.48"
},
{
"OrderID": "ORD1433",
"CustomerName": "Bob Wilson",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-09-03"),
"Amount": "$321.04"
},
{
"OrderID": "ORD1434",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-22"),
"Amount": "$784.15"
},
{
"OrderID": "ORD1435",
"CustomerName": "Quinn Yellow",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-06"),
"Amount": "$122.75"
},
{
"OrderID": "ORD1436",
"CustomerName": "Kelly Gray",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-12-16"),
"Amount": "$769.94"
},
{
"OrderID": "ORD1437",
"CustomerName": "Leo Red",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-30"),
"Amount": "$832.97"
},
{
"OrderID": "ORD1438",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-11-21"),
"Amount": "$309.80"
},
{
"OrderID": "ORD1439",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-07"),
"Amount": "$454.58"
},
{
"OrderID": "ORD1440",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-06"),
"Amount": "$46.40"
},
{
"OrderID": "ORD1441",
"CustomerName": "Jack Black",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-02-25"),
"Amount": "$771.26"
},
{
"OrderID": "ORD1442",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-10-16"),
"Amount": "$983.77"
},
{
"OrderID": "ORD1443",
"CustomerName": "Mia Blue",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-01-06"),
"Amount": "$107.62"
},
{
"OrderID": "ORD1444",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-08-17"),
"Amount": "$380.38"
},
{
"OrderID": "ORD1445",
"CustomerName": "Kelly Gray",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-06-26"),
"Amount": "$997.73"
},
{
"OrderID": "ORD1446",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-13"),
"Amount": "$124.91"
},
{
"OrderID": "ORD1447",
"CustomerName": "Rose Pink",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-08-22"),
"Amount": "$786.43"
},
{
"OrderID": "ORD1448",
"CustomerName": "Paul Orange",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-19"),
"Amount": "$443.78"
},
{
"OrderID": "ORD1449",
"CustomerName": "Mia Blue",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-01-23"),
"Amount": "$812.08"
},
{
"OrderID": "ORD1450",
"CustomerName": "Eve Green",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-12-13"),
"Amount": "$802.05"
},
{
"OrderID": "ORD1451",
"CustomerName": "Ivy White",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-06-19"),
"Amount": "$564.25"
},
{
"OrderID": "ORD1452",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-04-06"),
"Amount": "$644.07"
},
{
"OrderID": "ORD1453",
"CustomerName": "Quinn Yellow",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-08-19"),
"Amount": "$596.28"
},
{
"OrderID": "ORD1454",
"CustomerName": "Eve Green",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-05-23"),
"Amount": "$754.80"
},
{
"OrderID": "ORD1455",
"CustomerName": "Kelly Gray",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-07-07"),
"Amount": "$332.73"
},
{
"OrderID": "ORD1456",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-28"),
"Amount": "$966.26"
},
{
"OrderID": "ORD1457",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-28"),
"Amount": "$123.09"
},
{
"OrderID": "ORD1458",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-12-11"),
"Amount": "$708.93"
},
{
"OrderID": "ORD1459",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-12-11"),
"Amount": "$142.61"
},
{
"OrderID": "ORD1460",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-04-04"),
"Amount": "$379.57"
},
{
"OrderID": "ORD1461",
"CustomerName": "Ivy White",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-02"),
"Amount": "$146.49"
},
{
"OrderID": "ORD1462",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-22"),
"Amount": "$542.01"
},
{
"OrderID": "ORD1463",
"CustomerName": "Jack Black",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-28"),
"Amount": "$148.89"
},
{
"OrderID": "ORD1464",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-07-03"),
"Amount": "$952.32"
},
{
"OrderID": "ORD1465",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-15"),
"Amount": "$510.38"
},
{
"OrderID": "ORD1466",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-30"),
"Amount": "$841.49"
},
{
"OrderID": "ORD1467",
"CustomerName": "Alice Johnson",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-04-23"),
"Amount": "$299.17"
},
{
"OrderID": "ORD1468",
"CustomerName": "David Brown",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-28"),
"Amount": "$782.93"
},
{
"OrderID": "ORD1469",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-10-21"),
"Amount": "$123.06"
},
{
"OrderID": "ORD1470",
"CustomerName": "Rose Pink",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-08-14"),
"Amount": "$550.89"
},
{
"OrderID": "ORD1471",
"CustomerName": "Grace Lee",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-01-17"),
"Amount": "$455.24"
},
{
"OrderID": "ORD1472",
"CustomerName": "Henry Taylor",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-05-02"),
"Amount": "$217.78"
},
{
"OrderID": "ORD1473",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-11-12"),
"Amount": "$147.84"
},
{
"OrderID": "ORD1474",
"CustomerName": "Carol Davis",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-09-30"),
"Amount": "$288.27"
},
{
"OrderID": "ORD1475",
"CustomerName": "Alice Johnson",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-05-29"),
"Amount": "$577.01"
},
{
"OrderID": "ORD1476",
"CustomerName": "Grace Lee",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-31"),
"Amount": "$992.56"
},
{
"OrderID": "ORD1477",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-12-31"),
"Amount": "$328.88"
},
{
"OrderID": "ORD1478",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-10-23"),
"Amount": "$636.08"
},
{
"OrderID": "ORD1479",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-11-21"),
"Amount": "$796.65"
},
{
"OrderID": "ORD1480",
"CustomerName": "Quinn Yellow",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-12-22"),
"Amount": "$936.97"
},
{
"OrderID": "ORD1481",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-10-25"),
"Amount": "$12.45"
},
{
"OrderID": "ORD1482",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-01"),
"Amount": "$403.74"
},
{
"OrderID": "ORD1483",
"CustomerName": "Carol Davis",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-06-15"),
"Amount": "$830.06"
},
{
"OrderID": "ORD1484",
"CustomerName": "Jack Black",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-10-17"),
"Amount": "$853.90"
},
{
"OrderID": "ORD1485",
"CustomerName": "Jane Smith",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-11-17"),
"Amount": "$786.05"
},
{
"OrderID": "ORD1486",
"CustomerName": "Eve Green",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-08-14"),
"Amount": "$461.95"
},
{
"OrderID": "ORD1487",
"CustomerName": "Carol Davis",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-03-23"),
"Amount": "$875.68"
},
{
"OrderID": "ORD1488",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-02-12"),
"Amount": "$378.13"
},
{
"OrderID": "ORD1489",
"CustomerName": "Jane Smith",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-12-25"),
"Amount": "$757.68"
},
{
"OrderID": "ORD1490",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-04-20"),
"Amount": "$482.04"
},
{
"OrderID": "ORD1491",
"CustomerName": "Kelly Gray",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-05"),
"Amount": "$17.98"
},
{
"OrderID": "ORD1492",
"CustomerName": "Grace Lee",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-02"),
"Amount": "$80.12"
},
{
"OrderID": "ORD1493",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-06-10"),
"Amount": "$373.89"
},
{
"OrderID": "ORD1494",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-11-25"),
"Amount": "$993.01"
},
{
"OrderID": "ORD1495",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-11-09"),
"Amount": "$653.52"
},
{
"OrderID": "ORD1496",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-07-30"),
"Amount": "$619.92"
},
{
"OrderID": "ORD1497",
"CustomerName": "Carol Davis",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-03-13"),
"Amount": "$754.92"
},
{
"OrderID": "ORD1498",
"CustomerName": "Rose Pink",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-03-13"),
"Amount": "$255.31"
},
{
"OrderID": "ORD1499",
"CustomerName": "David Brown",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-12-20"),
"Amount": "$36.56"
}
]export interface OrderTrackModel {
OrderID: string;
CustomerName: string;
Product: string;
Status: string;
OrderDate: Date;
Amount: string;
}
export let ordersTrackData: Object[] = [
{
"OrderID": "ORD1001",
"CustomerName": "Eve Green",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-04-25"),
"Amount": "$148.14"
},
{
"OrderID": "ORD1002",
"CustomerName": "Jack Black",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-17"),
"Amount": "$39.50"
},
{
"OrderID": "ORD1003",
"CustomerName": "David Brown",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-10-15"),
"Amount": "$206.85"
},
{
"OrderID": "ORD1004",
"CustomerName": "Olivia Purple",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-29"),
"Amount": "$285.41"
},
{
"OrderID": "ORD1005",
"CustomerName": "Alice Johnson",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-05-23"),
"Amount": "$163.92"
},
{
"OrderID": "ORD1006",
"CustomerName": "Grace Lee",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-19"),
"Amount": "$365.39"
},
{
"OrderID": "ORD1007",
"CustomerName": "Noah Green",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-08-24"),
"Amount": "$540.87"
},
{
"OrderID": "ORD1008",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-11-18"),
"Amount": "$622.33"
},
{
"OrderID": "ORD1009",
"CustomerName": "Kelly Gray",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-01-24"),
"Amount": "$664.65"
},
{
"OrderID": "ORD1010",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-07-14"),
"Amount": "$285.19"
},
{
"OrderID": "ORD1011",
"CustomerName": "Alice Johnson",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-04-18"),
"Amount": "$673.47"
},
{
"OrderID": "ORD1012",
"CustomerName": "Noah Green",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-03-25"),
"Amount": "$467.64"
},
{
"OrderID": "ORD1013",
"CustomerName": "Jack Black",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-01-29"),
"Amount": "$236.76"
},
{
"OrderID": "ORD1014",
"CustomerName": "Mia Blue",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-03"),
"Amount": "$218.87"
},
{
"OrderID": "ORD1015",
"CustomerName": "Carol Davis",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-26"),
"Amount": "$464.26"
},
{
"OrderID": "ORD1016",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-10-27"),
"Amount": "$434.15"
},
{
"OrderID": "ORD1017",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-09-18"),
"Amount": "$498.58"
},
{
"OrderID": "ORD1018",
"CustomerName": "Grace Lee",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-12-15"),
"Amount": "$427.94"
},
{
"OrderID": "ORD1019",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-28"),
"Amount": "$258.90"
},
{
"OrderID": "ORD1020",
"CustomerName": "Grace Lee",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-11-25"),
"Amount": "$346.77"
},
{
"OrderID": "ORD1021",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-02"),
"Amount": "$954.28"
},
{
"OrderID": "ORD1022",
"CustomerName": "Ivy White",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-11-17"),
"Amount": "$305.46"
},
{
"OrderID": "ORD1023",
"CustomerName": "Noah Green",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-07-11"),
"Amount": "$764.89"
},
{
"OrderID": "ORD1024",
"CustomerName": "Ivy White",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-09-08"),
"Amount": "$29.28"
},
{
"OrderID": "ORD1025",
"CustomerName": "Bob Wilson",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-05-04"),
"Amount": "$879.23"
},
{
"OrderID": "ORD1026",
"CustomerName": "Henry Taylor",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-09-30"),
"Amount": "$768.18"
},
{
"OrderID": "ORD1027",
"CustomerName": "Paul Orange",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-05-16"),
"Amount": "$532.40"
},
{
"OrderID": "ORD1028",
"CustomerName": "Carol Davis",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-06-09"),
"Amount": "$405.00"
},
{
"OrderID": "ORD1029",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-03"),
"Amount": "$255.43"
},
{
"OrderID": "ORD1030",
"CustomerName": "Mia Blue",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-10-29"),
"Amount": "$228.02"
},
{
"OrderID": "ORD1031",
"CustomerName": "Jane Smith",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-01-17"),
"Amount": "$861.04"
},
{
"OrderID": "ORD1032",
"CustomerName": "Ivy White",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-12-09"),
"Amount": "$490.56"
},
{
"OrderID": "ORD1033",
"CustomerName": "Frank Miller",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-05"),
"Amount": "$786.77"
},
{
"OrderID": "ORD1034",
"CustomerName": "Carol Davis",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-12-04"),
"Amount": "$436.74"
},
{
"OrderID": "ORD1035",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-12-11"),
"Amount": "$656.92"
},
{
"OrderID": "ORD1036",
"CustomerName": "Jane Smith",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-25"),
"Amount": "$256.17"
},
{
"OrderID": "ORD1037",
"CustomerName": "Jack Black",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-08-05"),
"Amount": "$191.65"
},
{
"OrderID": "ORD1038",
"CustomerName": "David Brown",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-09"),
"Amount": "$106.93"
},
{
"OrderID": "ORD1039",
"CustomerName": "Eve Green",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-03-27"),
"Amount": "$412.35"
},
{
"OrderID": "ORD1040",
"CustomerName": "Carol Davis",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-03-26"),
"Amount": "$385.18"
},
{
"OrderID": "ORD1041",
"CustomerName": "John Doe",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-08-05"),
"Amount": "$699.63"
},
{
"OrderID": "ORD1042",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-04-22"),
"Amount": "$969.02"
},
{
"OrderID": "ORD1043",
"CustomerName": "Jane Smith",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-01-26"),
"Amount": "$588.34"
},
{
"OrderID": "ORD1044",
"CustomerName": "Ivy White",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-09-18"),
"Amount": "$89.31"
},
{
"OrderID": "ORD1045",
"CustomerName": "Henry Taylor",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-12-12"),
"Amount": "$863.20"
},
{
"OrderID": "ORD1046",
"CustomerName": "Grace Lee",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-10-24"),
"Amount": "$598.57"
},
{
"OrderID": "ORD1047",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-05-14"),
"Amount": "$212.22"
},
{
"OrderID": "ORD1048",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-09"),
"Amount": "$674.97"
},
{
"OrderID": "ORD1049",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-01-05"),
"Amount": "$463.70"
},
{
"OrderID": "ORD1050",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-09-17"),
"Amount": "$272.55"
},
{
"OrderID": "ORD1051",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-05-26"),
"Amount": "$166.17"
},
{
"OrderID": "ORD1052",
"CustomerName": "Bob Wilson",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-12-08"),
"Amount": "$818.93"
},
{
"OrderID": "ORD1053",
"CustomerName": "Grace Lee",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-03-01"),
"Amount": "$890.82"
},
{
"OrderID": "ORD1054",
"CustomerName": "John Doe",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-06-25"),
"Amount": "$211.56"
},
{
"OrderID": "ORD1055",
"CustomerName": "Ivy White",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-01-27"),
"Amount": "$101.38"
},
{
"OrderID": "ORD1056",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-06-20"),
"Amount": "$773.41"
},
{
"OrderID": "ORD1057",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-15"),
"Amount": "$19.57"
},
{
"OrderID": "ORD1058",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-07-09"),
"Amount": "$586.68"
},
{
"OrderID": "ORD1059",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-06-07"),
"Amount": "$371.01"
},
{
"OrderID": "ORD1060",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-12-08"),
"Amount": "$111.77"
},
{
"OrderID": "ORD1061",
"CustomerName": "Noah Green",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-03-25"),
"Amount": "$976.44"
},
{
"OrderID": "ORD1062",
"CustomerName": "Olivia Purple",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-06-20"),
"Amount": "$784.56"
},
{
"OrderID": "ORD1063",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-12-26"),
"Amount": "$117.01"
},
{
"OrderID": "ORD1064",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-08-24"),
"Amount": "$356.16"
},
{
"OrderID": "ORD1065",
"CustomerName": "David Brown",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-07-24"),
"Amount": "$334.98"
},
{
"OrderID": "ORD1066",
"CustomerName": "John Doe",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-14"),
"Amount": "$981.34"
},
{
"OrderID": "ORD1067",
"CustomerName": "Mia Blue",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-05-14"),
"Amount": "$186.78"
},
{
"OrderID": "ORD1068",
"CustomerName": "Jane Smith",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-26"),
"Amount": "$731.26"
},
{
"OrderID": "ORD1069",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-07-17"),
"Amount": "$900.51"
},
{
"OrderID": "ORD1070",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-01"),
"Amount": "$524.72"
},
{
"OrderID": "ORD1071",
"CustomerName": "Carol Davis",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-05"),
"Amount": "$949.39"
},
{
"OrderID": "ORD1072",
"CustomerName": "Noah Green",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-06-03"),
"Amount": "$512.05"
},
{
"OrderID": "ORD1073",
"CustomerName": "Mia Blue",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-10-11"),
"Amount": "$136.01"
},
{
"OrderID": "ORD1074",
"CustomerName": "Quinn Yellow",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-07-27"),
"Amount": "$552.46"
},
{
"OrderID": "ORD1075",
"CustomerName": "Bob Wilson",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-08-09"),
"Amount": "$787.90"
},
{
"OrderID": "ORD1076",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-12"),
"Amount": "$221.56"
},
{
"OrderID": "ORD1077",
"CustomerName": "Alice Johnson",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-09-21"),
"Amount": "$667.22"
},
{
"OrderID": "ORD1078",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-04-26"),
"Amount": "$808.50"
},
{
"OrderID": "ORD1079",
"CustomerName": "Eve Green",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-09-01"),
"Amount": "$615.16"
},
{
"OrderID": "ORD1080",
"CustomerName": "Leo Red",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-12-23"),
"Amount": "$390.14"
},
{
"OrderID": "ORD1081",
"CustomerName": "David Brown",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-02-24"),
"Amount": "$780.64"
},
{
"OrderID": "ORD1082",
"CustomerName": "Alice Johnson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-26"),
"Amount": "$561.83"
},
{
"OrderID": "ORD1083",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-08"),
"Amount": "$535.82"
},
{
"OrderID": "ORD1084",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-08"),
"Amount": "$451.45"
},
{
"OrderID": "ORD1085",
"CustomerName": "Paul Orange",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-05-07"),
"Amount": "$841.46"
},
{
"OrderID": "ORD1086",
"CustomerName": "Ivy White",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-05-21"),
"Amount": "$445.47"
},
{
"OrderID": "ORD1087",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-06-13"),
"Amount": "$894.10"
},
{
"OrderID": "ORD1088",
"CustomerName": "Frank Miller",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-07-16"),
"Amount": "$697.01"
},
{
"OrderID": "ORD1089",
"CustomerName": "Henry Taylor",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-19"),
"Amount": "$547.19"
},
{
"OrderID": "ORD1090",
"CustomerName": "Jane Smith",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-19"),
"Amount": "$905.79"
},
{
"OrderID": "ORD1091",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-04"),
"Amount": "$943.31"
},
{
"OrderID": "ORD1092",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-07"),
"Amount": "$227.23"
},
{
"OrderID": "ORD1093",
"CustomerName": "Paul Orange",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-22"),
"Amount": "$672.18"
},
{
"OrderID": "ORD1094",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-11-15"),
"Amount": "$538.78"
},
{
"OrderID": "ORD1095",
"CustomerName": "Kelly Gray",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-02-12"),
"Amount": "$646.32"
},
{
"OrderID": "ORD1096",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-05-14"),
"Amount": "$385.31"
},
{
"OrderID": "ORD1097",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-07-14"),
"Amount": "$285.47"
},
{
"OrderID": "ORD1098",
"CustomerName": "John Doe",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-10"),
"Amount": "$751.53"
},
{
"OrderID": "ORD1099",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-11-30"),
"Amount": "$49.86"
},
{
"OrderID": "ORD1100",
"CustomerName": "David Brown",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-11-15"),
"Amount": "$160.86"
},
{
"OrderID": "ORD1101",
"CustomerName": "Paul Orange",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-08-27"),
"Amount": "$702.47"
},
{
"OrderID": "ORD1102",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-03-25"),
"Amount": "$965.07"
},
{
"OrderID": "ORD1103",
"CustomerName": "Kelly Gray",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-10-22"),
"Amount": "$680.57"
},
{
"OrderID": "ORD1104",
"CustomerName": "Quinn Yellow",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-10-31"),
"Amount": "$693.71"
},
{
"OrderID": "ORD1105",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-10-17"),
"Amount": "$784.81"
},
{
"OrderID": "ORD1106",
"CustomerName": "Jack Black",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-05"),
"Amount": "$510.90"
},
{
"OrderID": "ORD1107",
"CustomerName": "Eve Green",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-24"),
"Amount": "$439.19"
},
{
"OrderID": "ORD1108",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-01"),
"Amount": "$736.46"
},
{
"OrderID": "ORD1109",
"CustomerName": "Noah Green",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-27"),
"Amount": "$441.22"
},
{
"OrderID": "ORD1110",
"CustomerName": "Mia Blue",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-05-23"),
"Amount": "$882.81"
},
{
"OrderID": "ORD1111",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-22"),
"Amount": "$38.41"
},
{
"OrderID": "ORD1112",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-01"),
"Amount": "$799.85"
},
{
"OrderID": "ORD1113",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-10-12"),
"Amount": "$20.05"
},
{
"OrderID": "ORD1114",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-08"),
"Amount": "$559.62"
},
{
"OrderID": "ORD1115",
"CustomerName": "Paul Orange",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-09"),
"Amount": "$102.12"
},
{
"OrderID": "ORD1116",
"CustomerName": "Quinn Yellow",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-12-06"),
"Amount": "$585.74"
},
{
"OrderID": "ORD1117",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-08-06"),
"Amount": "$996.67"
},
{
"OrderID": "ORD1118",
"CustomerName": "Rose Pink",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-06-06"),
"Amount": "$258.89"
},
{
"OrderID": "ORD1119",
"CustomerName": "Carol Davis",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-02"),
"Amount": "$951.37"
},
{
"OrderID": "ORD1120",
"CustomerName": "Carol Davis",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-22"),
"Amount": "$727.34"
},
{
"OrderID": "ORD1121",
"CustomerName": "Noah Green",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-04-10"),
"Amount": "$303.28"
},
{
"OrderID": "ORD1122",
"CustomerName": "Alice Johnson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-12-29"),
"Amount": "$538.79"
},
{
"OrderID": "ORD1123",
"CustomerName": "Jane Smith",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-12-24"),
"Amount": "$944.65"
},
{
"OrderID": "ORD1124",
"CustomerName": "Grace Lee",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-08-29"),
"Amount": "$483.93"
},
{
"OrderID": "ORD1125",
"CustomerName": "Alice Johnson",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-09-02"),
"Amount": "$122.95"
},
{
"OrderID": "ORD1126",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-10-23"),
"Amount": "$633.15"
},
{
"OrderID": "ORD1127",
"CustomerName": "Frank Miller",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-02-13"),
"Amount": "$993.98"
},
{
"OrderID": "ORD1128",
"CustomerName": "Jack Black",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-25"),
"Amount": "$386.57"
},
{
"OrderID": "ORD1129",
"CustomerName": "Bob Wilson",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-06"),
"Amount": "$572.94"
},
{
"OrderID": "ORD1130",
"CustomerName": "Noah Green",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-11-17"),
"Amount": "$218.91"
},
{
"OrderID": "ORD1131",
"CustomerName": "Alice Johnson",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-10-10"),
"Amount": "$84.31"
},
{
"OrderID": "ORD1132",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-30"),
"Amount": "$42.31"
},
{
"OrderID": "ORD1133",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-12-18"),
"Amount": "$241.09"
},
{
"OrderID": "ORD1134",
"CustomerName": "Kelly Gray",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-28"),
"Amount": "$549.12"
},
{
"OrderID": "ORD1135",
"CustomerName": "John Doe",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-01-31"),
"Amount": "$174.26"
},
{
"OrderID": "ORD1136",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-08-13"),
"Amount": "$133.11"
},
{
"OrderID": "ORD1137",
"CustomerName": "Quinn Yellow",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-13"),
"Amount": "$89.64"
},
{
"OrderID": "ORD1138",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-01-14"),
"Amount": "$100.41"
},
{
"OrderID": "ORD1139",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-03-31"),
"Amount": "$475.80"
},
{
"OrderID": "ORD1140",
"CustomerName": "John Doe",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-22"),
"Amount": "$816.10"
},
{
"OrderID": "ORD1141",
"CustomerName": "Paul Orange",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-20"),
"Amount": "$327.85"
},
{
"OrderID": "ORD1142",
"CustomerName": "Alice Johnson",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-22"),
"Amount": "$500.51"
},
{
"OrderID": "ORD1143",
"CustomerName": "Jack Black",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-15"),
"Amount": "$321.37"
},
{
"OrderID": "ORD1144",
"CustomerName": "Grace Lee",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-12-03"),
"Amount": "$870.67"
},
{
"OrderID": "ORD1145",
"CustomerName": "Olivia Purple",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-09-23"),
"Amount": "$368.16"
},
{
"OrderID": "ORD1146",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-05-17"),
"Amount": "$553.73"
},
{
"OrderID": "ORD1147",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-01-15"),
"Amount": "$973.42"
},
{
"OrderID": "ORD1148",
"CustomerName": "Alice Johnson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-10-10"),
"Amount": "$413.91"
},
{
"OrderID": "ORD1149",
"CustomerName": "Grace Lee",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-11-28"),
"Amount": "$833.82"
},
{
"OrderID": "ORD1150",
"CustomerName": "Bob Wilson",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-08-01"),
"Amount": "$836.38"
},
{
"OrderID": "ORD1151",
"CustomerName": "David Brown",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-16"),
"Amount": "$198.70"
},
{
"OrderID": "ORD1152",
"CustomerName": "Frank Miller",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-08-01"),
"Amount": "$346.48"
},
{
"OrderID": "ORD1153",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-06-02"),
"Amount": "$839.10"
},
{
"OrderID": "ORD1154",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-26"),
"Amount": "$339.12"
},
{
"OrderID": "ORD1155",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-04-07"),
"Amount": "$980.97"
},
{
"OrderID": "ORD1156",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-07-30"),
"Amount": "$53.21"
},
{
"OrderID": "ORD1157",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-11"),
"Amount": "$965.18"
},
{
"OrderID": "ORD1158",
"CustomerName": "Ivy White",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-02-21"),
"Amount": "$875.45"
},
{
"OrderID": "ORD1159",
"CustomerName": "Grace Lee",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-08"),
"Amount": "$725.22"
},
{
"OrderID": "ORD1160",
"CustomerName": "Frank Miller",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-16"),
"Amount": "$345.18"
},
{
"OrderID": "ORD1161",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-12"),
"Amount": "$630.53"
},
{
"OrderID": "ORD1162",
"CustomerName": "Jack Black",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-05-01"),
"Amount": "$634.85"
},
{
"OrderID": "ORD1163",
"CustomerName": "David Brown",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-20"),
"Amount": "$762.77"
},
{
"OrderID": "ORD1164",
"CustomerName": "Leo Red",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-01-15"),
"Amount": "$55.53"
},
{
"OrderID": "ORD1165",
"CustomerName": "Bob Wilson",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-08-09"),
"Amount": "$154.11"
},
{
"OrderID": "ORD1166",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-03-29"),
"Amount": "$183.32"
},
{
"OrderID": "ORD1167",
"CustomerName": "Noah Green",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-26"),
"Amount": "$151.69"
},
{
"OrderID": "ORD1168",
"CustomerName": "John Doe",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-12-08"),
"Amount": "$19.30"
},
{
"OrderID": "ORD1169",
"CustomerName": "Bob Wilson",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-02-07"),
"Amount": "$447.31"
},
{
"OrderID": "ORD1170",
"CustomerName": "Kelly Gray",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-20"),
"Amount": "$257.60"
},
{
"OrderID": "ORD1171",
"CustomerName": "Carol Davis",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-24"),
"Amount": "$244.83"
},
{
"OrderID": "ORD1172",
"CustomerName": "Kelly Gray",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-01-12"),
"Amount": "$978.17"
},
{
"OrderID": "ORD1173",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-11-07"),
"Amount": "$747.72"
},
{
"OrderID": "ORD1174",
"CustomerName": "David Brown",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-04-23"),
"Amount": "$640.25"
},
{
"OrderID": "ORD1175",
"CustomerName": "Frank Miller",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-06-08"),
"Amount": "$790.72"
},
{
"OrderID": "ORD1176",
"CustomerName": "Kelly Gray",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-02-16"),
"Amount": "$910.53"
},
{
"OrderID": "ORD1177",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-03-09"),
"Amount": "$788.65"
},
{
"OrderID": "ORD1178",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-26"),
"Amount": "$264.40"
},
{
"OrderID": "ORD1179",
"CustomerName": "Bob Wilson",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-08-28"),
"Amount": "$963.26"
},
{
"OrderID": "ORD1180",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-16"),
"Amount": "$792.78"
},
{
"OrderID": "ORD1181",
"CustomerName": "John Doe",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-08-21"),
"Amount": "$374.90"
},
{
"OrderID": "ORD1182",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-02-25"),
"Amount": "$678.09"
},
{
"OrderID": "ORD1183",
"CustomerName": "Eve Green",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-11-09"),
"Amount": "$229.15"
},
{
"OrderID": "ORD1184",
"CustomerName": "Leo Red",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-01"),
"Amount": "$148.38"
},
{
"OrderID": "ORD1185",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-02-19"),
"Amount": "$242.45"
},
{
"OrderID": "ORD1186",
"CustomerName": "Olivia Purple",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-08-01"),
"Amount": "$658.37"
},
{
"OrderID": "ORD1187",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-01-17"),
"Amount": "$693.38"
},
{
"OrderID": "ORD1188",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-05"),
"Amount": "$108.36"
},
{
"OrderID": "ORD1189",
"CustomerName": "Jack Black",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-07-23"),
"Amount": "$283.12"
},
{
"OrderID": "ORD1190",
"CustomerName": "Leo Red",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-11-25"),
"Amount": "$643.10"
},
{
"OrderID": "ORD1191",
"CustomerName": "Jane Smith",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-03-06"),
"Amount": "$789.11"
},
{
"OrderID": "ORD1192",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-10-28"),
"Amount": "$223.79"
},
{
"OrderID": "ORD1193",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-05-22"),
"Amount": "$859.82"
},
{
"OrderID": "ORD1194",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-31"),
"Amount": "$118.83"
},
{
"OrderID": "ORD1195",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-05-02"),
"Amount": "$592.96"
},
{
"OrderID": "ORD1196",
"CustomerName": "Alice Johnson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-03-06"),
"Amount": "$744.30"
},
{
"OrderID": "ORD1197",
"CustomerName": "Grace Lee",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-18"),
"Amount": "$780.24"
},
{
"OrderID": "ORD1198",
"CustomerName": "Kelly Gray",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-15"),
"Amount": "$229.33"
},
{
"OrderID": "ORD1199",
"CustomerName": "Ivy White",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-26"),
"Amount": "$964.39"
},
{
"OrderID": "ORD1200",
"CustomerName": "Paul Orange",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-18"),
"Amount": "$116.88"
},
{
"OrderID": "ORD1201",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-11-08"),
"Amount": "$156.85"
},
{
"OrderID": "ORD1202",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-07-15"),
"Amount": "$994.68"
},
{
"OrderID": "ORD1203",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-20"),
"Amount": "$795.17"
},
{
"OrderID": "ORD1204",
"CustomerName": "Jack Black",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-20"),
"Amount": "$889.21"
},
{
"OrderID": "ORD1205",
"CustomerName": "Mia Blue",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-01"),
"Amount": "$732.32"
},
{
"OrderID": "ORD1206",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-07-11"),
"Amount": "$954.06"
},
{
"OrderID": "ORD1207",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-02-17"),
"Amount": "$437.56"
},
{
"OrderID": "ORD1208",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-10-28"),
"Amount": "$957.06"
},
{
"OrderID": "ORD1209",
"CustomerName": "Grace Lee",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-12-07"),
"Amount": "$941.72"
},
{
"OrderID": "ORD1210",
"CustomerName": "Jane Smith",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-06-30"),
"Amount": "$112.56"
},
{
"OrderID": "ORD1211",
"CustomerName": "Carol Davis",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-25"),
"Amount": "$848.80"
},
{
"OrderID": "ORD1212",
"CustomerName": "Jack Black",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-05-23"),
"Amount": "$578.36"
},
{
"OrderID": "ORD1213",
"CustomerName": "Jack Black",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-11-08"),
"Amount": "$929.79"
},
{
"OrderID": "ORD1214",
"CustomerName": "Eve Green",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-12-26"),
"Amount": "$764.79"
},
{
"OrderID": "ORD1215",
"CustomerName": "Rose Pink",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-03-15"),
"Amount": "$570.66"
},
{
"OrderID": "ORD1216",
"CustomerName": "Henry Taylor",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-02-16"),
"Amount": "$748.65"
},
{
"OrderID": "ORD1217",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-24"),
"Amount": "$165.84"
},
{
"OrderID": "ORD1218",
"CustomerName": "Mia Blue",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-01-27"),
"Amount": "$164.02"
},
{
"OrderID": "ORD1219",
"CustomerName": "Henry Taylor",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-05"),
"Amount": "$429.77"
},
{
"OrderID": "ORD1220",
"CustomerName": "Olivia Purple",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-09-20"),
"Amount": "$122.68"
},
{
"OrderID": "ORD1221",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-27"),
"Amount": "$670.46"
},
{
"OrderID": "ORD1222",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-01-04"),
"Amount": "$212.38"
},
{
"OrderID": "ORD1223",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-06-17"),
"Amount": "$128.78"
},
{
"OrderID": "ORD1224",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-07-14"),
"Amount": "$537.26"
},
{
"OrderID": "ORD1225",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-02-06"),
"Amount": "$403.10"
},
{
"OrderID": "ORD1226",
"CustomerName": "Olivia Purple",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-09"),
"Amount": "$863.49"
},
{
"OrderID": "ORD1227",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-29"),
"Amount": "$124.02"
},
{
"OrderID": "ORD1228",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-20"),
"Amount": "$920.57"
},
{
"OrderID": "ORD1229",
"CustomerName": "Olivia Purple",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-08-12"),
"Amount": "$592.98"
},
{
"OrderID": "ORD1230",
"CustomerName": "Henry Taylor",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-06-23"),
"Amount": "$229.36"
},
{
"OrderID": "ORD1231",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-09-29"),
"Amount": "$514.85"
},
{
"OrderID": "ORD1232",
"CustomerName": "Rose Pink",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-02-22"),
"Amount": "$154.98"
},
{
"OrderID": "ORD1233",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-12-02"),
"Amount": "$84.60"
},
{
"OrderID": "ORD1234",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-15"),
"Amount": "$924.91"
},
{
"OrderID": "ORD1235",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-04"),
"Amount": "$474.23"
},
{
"OrderID": "ORD1236",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-06-30"),
"Amount": "$512.26"
},
{
"OrderID": "ORD1237",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-01-30"),
"Amount": "$375.05"
},
{
"OrderID": "ORD1238",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-25"),
"Amount": "$584.53"
},
{
"OrderID": "ORD1239",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-06-14"),
"Amount": "$608.96"
},
{
"OrderID": "ORD1240",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-22"),
"Amount": "$812.86"
},
{
"OrderID": "ORD1241",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-01-21"),
"Amount": "$255.27"
},
{
"OrderID": "ORD1242",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-07-06"),
"Amount": "$379.12"
},
{
"OrderID": "ORD1243",
"CustomerName": "Quinn Yellow",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-12-14"),
"Amount": "$601.91"
},
{
"OrderID": "ORD1244",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-13"),
"Amount": "$681.60"
},
{
"OrderID": "ORD1245",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-06-20"),
"Amount": "$90.69"
},
{
"OrderID": "ORD1246",
"CustomerName": "Rose Pink",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-08"),
"Amount": "$599.09"
},
{
"OrderID": "ORD1247",
"CustomerName": "Bob Wilson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-26"),
"Amount": "$793.75"
},
{
"OrderID": "ORD1248",
"CustomerName": "Ivy White",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-18"),
"Amount": "$368.21"
},
{
"OrderID": "ORD1249",
"CustomerName": "Bob Wilson",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-06-24"),
"Amount": "$948.19"
},
{
"OrderID": "ORD1250",
"CustomerName": "Carol Davis",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-03-21"),
"Amount": "$86.39"
},
{
"OrderID": "ORD1251",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-12-05"),
"Amount": "$343.40"
},
{
"OrderID": "ORD1252",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-03-25"),
"Amount": "$189.04"
},
{
"OrderID": "ORD1253",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-06"),
"Amount": "$679.60"
},
{
"OrderID": "ORD1254",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-08-18"),
"Amount": "$241.66"
},
{
"OrderID": "ORD1255",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-08"),
"Amount": "$681.52"
},
{
"OrderID": "ORD1256",
"CustomerName": "Leo Red",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-15"),
"Amount": "$532.19"
},
{
"OrderID": "ORD1257",
"CustomerName": "Carol Davis",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-05-09"),
"Amount": "$61.66"
},
{
"OrderID": "ORD1258",
"CustomerName": "Rose Pink",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-12-31"),
"Amount": "$847.43"
},
{
"OrderID": "ORD1259",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-05-20"),
"Amount": "$454.83"
},
{
"OrderID": "ORD1260",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-04-24"),
"Amount": "$818.54"
},
{
"OrderID": "ORD1261",
"CustomerName": "Eve Green",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-07-22"),
"Amount": "$506.99"
},
{
"OrderID": "ORD1262",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-04-25"),
"Amount": "$37.91"
},
{
"OrderID": "ORD1263",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-01-20"),
"Amount": "$294.01"
},
{
"OrderID": "ORD1264",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-12"),
"Amount": "$15.20"
},
{
"OrderID": "ORD1265",
"CustomerName": "Eve Green",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-03-18"),
"Amount": "$553.32"
},
{
"OrderID": "ORD1266",
"CustomerName": "Olivia Purple",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-05-02"),
"Amount": "$308.14"
},
{
"OrderID": "ORD1267",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-02"),
"Amount": "$119.75"
},
{
"OrderID": "ORD1268",
"CustomerName": "Noah Green",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-11-20"),
"Amount": "$520.22"
},
{
"OrderID": "ORD1269",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-01"),
"Amount": "$618.66"
},
{
"OrderID": "ORD1270",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-12-07"),
"Amount": "$671.53"
},
{
"OrderID": "ORD1271",
"CustomerName": "Rose Pink",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-07-19"),
"Amount": "$874.60"
},
{
"OrderID": "ORD1272",
"CustomerName": "Quinn Yellow",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-01-09"),
"Amount": "$363.52"
},
{
"OrderID": "ORD1273",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-10-25"),
"Amount": "$737.84"
},
{
"OrderID": "ORD1274",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-10-07"),
"Amount": "$345.16"
},
{
"OrderID": "ORD1275",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-03-11"),
"Amount": "$72.47"
},
{
"OrderID": "ORD1276",
"CustomerName": "Jane Smith",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-01-23"),
"Amount": "$793.20"
},
{
"OrderID": "ORD1277",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-06"),
"Amount": "$478.67"
},
{
"OrderID": "ORD1278",
"CustomerName": "Carol Davis",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-01-25"),
"Amount": "$867.14"
},
{
"OrderID": "ORD1279",
"CustomerName": "John Doe",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-08-12"),
"Amount": "$890.59"
},
{
"OrderID": "ORD1280",
"CustomerName": "Quinn Yellow",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-09-12"),
"Amount": "$695.15"
},
{
"OrderID": "ORD1281",
"CustomerName": "Ivy White",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-08-06"),
"Amount": "$88.14"
},
{
"OrderID": "ORD1282",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-02-22"),
"Amount": "$89.27"
},
{
"OrderID": "ORD1283",
"CustomerName": "Bob Wilson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-27"),
"Amount": "$692.87"
},
{
"OrderID": "ORD1284",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-11-11"),
"Amount": "$998.17"
},
{
"OrderID": "ORD1285",
"CustomerName": "Jane Smith",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-06"),
"Amount": "$517.96"
},
{
"OrderID": "ORD1286",
"CustomerName": "Eve Green",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-18"),
"Amount": "$134.97"
},
{
"OrderID": "ORD1287",
"CustomerName": "Rose Pink",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-18"),
"Amount": "$42.06"
},
{
"OrderID": "ORD1288",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-08-16"),
"Amount": "$765.45"
},
{
"OrderID": "ORD1289",
"CustomerName": "Ivy White",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-10"),
"Amount": "$653.07"
},
{
"OrderID": "ORD1290",
"CustomerName": "Grace Lee",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-09-13"),
"Amount": "$522.57"
},
{
"OrderID": "ORD1291",
"CustomerName": "John Doe",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-20"),
"Amount": "$996.40"
},
{
"OrderID": "ORD1292",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-03-11"),
"Amount": "$854.30"
},
{
"OrderID": "ORD1293",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-12-16"),
"Amount": "$967.89"
},
{
"OrderID": "ORD1294",
"CustomerName": "Rose Pink",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-06-03"),
"Amount": "$852.85"
},
{
"OrderID": "ORD1295",
"CustomerName": "Rose Pink",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-03-04"),
"Amount": "$985.28"
},
{
"OrderID": "ORD1296",
"CustomerName": "David Brown",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-07-04"),
"Amount": "$558.48"
},
{
"OrderID": "ORD1297",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-11-10"),
"Amount": "$885.40"
},
{
"OrderID": "ORD1298",
"CustomerName": "Bob Wilson",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-27"),
"Amount": "$416.69"
},
{
"OrderID": "ORD1299",
"CustomerName": "Kelly Gray",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-06-12"),
"Amount": "$645.92"
},
{
"OrderID": "ORD1300",
"CustomerName": "Leo Red",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-07"),
"Amount": "$879.18"
},
{
"OrderID": "ORD1301",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-03-05"),
"Amount": "$522.92"
},
{
"OrderID": "ORD1302",
"CustomerName": "Alice Johnson",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-12-30"),
"Amount": "$233.22"
},
{
"OrderID": "ORD1303",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-04-11"),
"Amount": "$638.71"
},
{
"OrderID": "ORD1304",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-09-15"),
"Amount": "$644.58"
},
{
"OrderID": "ORD1305",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-10-16"),
"Amount": "$50.78"
},
{
"OrderID": "ORD1306",
"CustomerName": "Henry Taylor",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-11-30"),
"Amount": "$218.70"
},
{
"OrderID": "ORD1307",
"CustomerName": "Noah Green",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-18"),
"Amount": "$550.12"
},
{
"OrderID": "ORD1308",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-02"),
"Amount": "$459.01"
},
{
"OrderID": "ORD1309",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-05"),
"Amount": "$469.80"
},
{
"OrderID": "ORD1310",
"CustomerName": "Noah Green",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-06-13"),
"Amount": "$736.86"
},
{
"OrderID": "ORD1311",
"CustomerName": "Quinn Yellow",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-09-21"),
"Amount": "$566.03"
},
{
"OrderID": "ORD1312",
"CustomerName": "David Brown",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-05-17"),
"Amount": "$455.10"
},
{
"OrderID": "ORD1313",
"CustomerName": "Grace Lee",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-07-16"),
"Amount": "$865.52"
},
{
"OrderID": "ORD1314",
"CustomerName": "David Brown",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-10-23"),
"Amount": "$723.92"
},
{
"OrderID": "ORD1315",
"CustomerName": "Alice Johnson",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-13"),
"Amount": "$880.28"
},
{
"OrderID": "ORD1316",
"CustomerName": "Eve Green",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-16"),
"Amount": "$462.66"
},
{
"OrderID": "ORD1317",
"CustomerName": "Carol Davis",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-01-25"),
"Amount": "$60.04"
},
{
"OrderID": "ORD1318",
"CustomerName": "Noah Green",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-10-02"),
"Amount": "$18.10"
},
{
"OrderID": "ORD1319",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-07-07"),
"Amount": "$766.22"
},
{
"OrderID": "ORD1320",
"CustomerName": "Jane Smith",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-10-19"),
"Amount": "$566.20"
},
{
"OrderID": "ORD1321",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-07-17"),
"Amount": "$509.21"
},
{
"OrderID": "ORD1322",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-03-07"),
"Amount": "$975.33"
},
{
"OrderID": "ORD1323",
"CustomerName": "Rose Pink",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-03-15"),
"Amount": "$207.07"
},
{
"OrderID": "ORD1324",
"CustomerName": "Quinn Yellow",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-01-24"),
"Amount": "$48.52"
},
{
"OrderID": "ORD1325",
"CustomerName": "Paul Orange",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-18"),
"Amount": "$610.20"
},
{
"OrderID": "ORD1326",
"CustomerName": "Frank Miller",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-03-25"),
"Amount": "$399.03"
},
{
"OrderID": "ORD1327",
"CustomerName": "Kelly Gray",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-29"),
"Amount": "$567.30"
},
{
"OrderID": "ORD1328",
"CustomerName": "Eve Green",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-12-11"),
"Amount": "$118.51"
},
{
"OrderID": "ORD1329",
"CustomerName": "Kelly Gray",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-11-02"),
"Amount": "$479.84"
},
{
"OrderID": "ORD1330",
"CustomerName": "Jane Smith",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-29"),
"Amount": "$528.99"
},
{
"OrderID": "ORD1331",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Pending",
"OrderDate": new Date("2025-10-21"),
"Amount": "$948.72"
},
{
"OrderID": "ORD1332",
"CustomerName": "Carol Davis",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-10"),
"Amount": "$424.59"
},
{
"OrderID": "ORD1333",
"CustomerName": "Carol Davis",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-01"),
"Amount": "$708.72"
},
{
"OrderID": "ORD1334",
"CustomerName": "Carol Davis",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-12-06"),
"Amount": "$483.59"
},
{
"OrderID": "ORD1335",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-30"),
"Amount": "$348.90"
},
{
"OrderID": "ORD1336",
"CustomerName": "John Doe",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-09"),
"Amount": "$957.76"
},
{
"OrderID": "ORD1337",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-06-02"),
"Amount": "$773.46"
},
{
"OrderID": "ORD1338",
"CustomerName": "Paul Orange",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-28"),
"Amount": "$564.88"
},
{
"OrderID": "ORD1339",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-22"),
"Amount": "$820.19"
},
{
"OrderID": "ORD1340",
"CustomerName": "Bob Wilson",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-02-10"),
"Amount": "$352.90"
},
{
"OrderID": "ORD1341",
"CustomerName": "John Doe",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-04-14"),
"Amount": "$829.67"
},
{
"OrderID": "ORD1342",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-02-25"),
"Amount": "$619.52"
},
{
"OrderID": "ORD1343",
"CustomerName": "David Brown",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-11-23"),
"Amount": "$240.51"
},
{
"OrderID": "ORD1344",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-21"),
"Amount": "$684.38"
},
{
"OrderID": "ORD1345",
"CustomerName": "Eve Green",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-07-28"),
"Amount": "$656.36"
},
{
"OrderID": "ORD1346",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-06-14"),
"Amount": "$292.56"
},
{
"OrderID": "ORD1347",
"CustomerName": "Henry Taylor",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-10-01"),
"Amount": "$741.30"
},
{
"OrderID": "ORD1348",
"CustomerName": "Alice Johnson",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-01-19"),
"Amount": "$997.20"
},
{
"OrderID": "ORD1349",
"CustomerName": "Paul Orange",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-01-20"),
"Amount": "$19.17"
},
{
"OrderID": "ORD1350",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-25"),
"Amount": "$547.87"
},
{
"OrderID": "ORD1351",
"CustomerName": "Frank Miller",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-20"),
"Amount": "$200.88"
},
{
"OrderID": "ORD1352",
"CustomerName": "Mia Blue",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-28"),
"Amount": "$264.69"
},
{
"OrderID": "ORD1353",
"CustomerName": "Eve Green",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-10-18"),
"Amount": "$677.66"
},
{
"OrderID": "ORD1354",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-07"),
"Amount": "$520.13"
},
{
"OrderID": "ORD1355",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-03-13"),
"Amount": "$482.68"
},
{
"OrderID": "ORD1356",
"CustomerName": "Eve Green",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-01"),
"Amount": "$452.27"
},
{
"OrderID": "ORD1357",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-05-14"),
"Amount": "$657.15"
},
{
"OrderID": "ORD1358",
"CustomerName": "Jane Smith",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-07"),
"Amount": "$168.12"
},
{
"OrderID": "ORD1359",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-07-08"),
"Amount": "$618.48"
},
{
"OrderID": "ORD1360",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-08-21"),
"Amount": "$750.26"
},
{
"OrderID": "ORD1361",
"CustomerName": "Olivia Purple",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-03"),
"Amount": "$803.98"
},
{
"OrderID": "ORD1362",
"CustomerName": "David Brown",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-09-27"),
"Amount": "$452.28"
},
{
"OrderID": "ORD1363",
"CustomerName": "Henry Taylor",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-02-01"),
"Amount": "$830.49"
},
{
"OrderID": "ORD1364",
"CustomerName": "Carol Davis",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-03-26"),
"Amount": "$334.84"
},
{
"OrderID": "ORD1365",
"CustomerName": "Leo Red",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-10-26"),
"Amount": "$493.94"
},
{
"OrderID": "ORD1366",
"CustomerName": "Leo Red",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-09"),
"Amount": "$518.12"
},
{
"OrderID": "ORD1367",
"CustomerName": "Kelly Gray",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-11"),
"Amount": "$808.85"
},
{
"OrderID": "ORD1368",
"CustomerName": "Quinn Yellow",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-04-22"),
"Amount": "$582.53"
},
{
"OrderID": "ORD1369",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-05"),
"Amount": "$994.18"
},
{
"OrderID": "ORD1370",
"CustomerName": "Paul Orange",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-07-29"),
"Amount": "$188.18"
},
{
"OrderID": "ORD1371",
"CustomerName": "Olivia Purple",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-18"),
"Amount": "$870.92"
},
{
"OrderID": "ORD1372",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-12-01"),
"Amount": "$861.68"
},
{
"OrderID": "ORD1373",
"CustomerName": "Alice Johnson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-28"),
"Amount": "$136.07"
},
{
"OrderID": "ORD1374",
"CustomerName": "Eve Green",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-08-26"),
"Amount": "$676.76"
},
{
"OrderID": "ORD1375",
"CustomerName": "Olivia Purple",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-04-28"),
"Amount": "$255.04"
},
{
"OrderID": "ORD1376",
"CustomerName": "Frank Miller",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-02-27"),
"Amount": "$41.90"
},
{
"OrderID": "ORD1377",
"CustomerName": "Noah Green",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-04-16"),
"Amount": "$76.62"
},
{
"OrderID": "ORD1378",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-05-06"),
"Amount": "$743.14"
},
{
"OrderID": "ORD1379",
"CustomerName": "Leo Red",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-01-29"),
"Amount": "$148.73"
},
{
"OrderID": "ORD1380",
"CustomerName": "David Brown",
"Product": "Book",
"Status": "Delivered",
"OrderDate": new Date("2025-10-23"),
"Amount": "$601.94"
},
{
"OrderID": "ORD1381",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Shipped",
"OrderDate": new Date("2025-12-05"),
"Amount": "$526.04"
},
{
"OrderID": "ORD1382",
"CustomerName": "Bob Wilson",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-10-13"),
"Amount": "$949.04"
},
{
"OrderID": "ORD1383",
"CustomerName": "Olivia Purple",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-25"),
"Amount": "$972.57"
},
{
"OrderID": "ORD1384",
"CustomerName": "Ivy White",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-29"),
"Amount": "$157.73"
},
{
"OrderID": "ORD1385",
"CustomerName": "Alice Johnson",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-04"),
"Amount": "$850.85"
},
{
"OrderID": "ORD1386",
"CustomerName": "Frank Miller",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-10-15"),
"Amount": "$418.55"
},
{
"OrderID": "ORD1387",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-07-18"),
"Amount": "$250.43"
},
{
"OrderID": "ORD1388",
"CustomerName": "Mia Blue",
"Product": "Bag",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-09"),
"Amount": "$101.54"
},
{
"OrderID": "ORD1389",
"CustomerName": "Jane Smith",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-11"),
"Amount": "$608.92"
},
{
"OrderID": "ORD1390",
"CustomerName": "Henry Taylor",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-09-03"),
"Amount": "$216.80"
},
{
"OrderID": "ORD1391",
"CustomerName": "Bob Wilson",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-04-08"),
"Amount": "$962.46"
},
{
"OrderID": "ORD1392",
"CustomerName": "Paul Orange",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-07-23"),
"Amount": "$915.98"
},
{
"OrderID": "ORD1393",
"CustomerName": "Bob Wilson",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-01"),
"Amount": "$652.23"
},
{
"OrderID": "ORD1394",
"CustomerName": "John Doe",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-27"),
"Amount": "$107.62"
},
{
"OrderID": "ORD1395",
"CustomerName": "Mia Blue",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-06-10"),
"Amount": "$419.79"
},
{
"OrderID": "ORD1396",
"CustomerName": "Frank Miller",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-10-11"),
"Amount": "$935.41"
},
{
"OrderID": "ORD1397",
"CustomerName": "Bob Wilson",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-06-18"),
"Amount": "$237.72"
},
{
"OrderID": "ORD1398",
"CustomerName": "Paul Orange",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-05-12"),
"Amount": "$765.73"
},
{
"OrderID": "ORD1399",
"CustomerName": "Paul Orange",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-06-30"),
"Amount": "$177.57"
},
{
"OrderID": "ORD1400",
"CustomerName": "Paul Orange",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-09-26"),
"Amount": "$43.49"
},
{
"OrderID": "ORD1401",
"CustomerName": "Jane Smith",
"Product": "Shirt",
"Status": "Cancelled",
"OrderDate": new Date("2025-03-12"),
"Amount": "$844.12"
},
{
"OrderID": "ORD1402",
"CustomerName": "Henry Taylor",
"Product": "Watch",
"Status": "Pending",
"OrderDate": new Date("2025-04-22"),
"Amount": "$510.68"
},
{
"OrderID": "ORD1403",
"CustomerName": "Jane Smith",
"Product": "Book",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-04"),
"Amount": "$492.98"
},
{
"OrderID": "ORD1404",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-07"),
"Amount": "$26.56"
},
{
"OrderID": "ORD1405",
"CustomerName": "Jack Black",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-09-15"),
"Amount": "$815.03"
},
{
"OrderID": "ORD1406",
"CustomerName": "Alice Johnson",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-09-26"),
"Amount": "$157.41"
},
{
"OrderID": "ORD1407",
"CustomerName": "Noah Green",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-07-01"),
"Amount": "$274.65"
},
{
"OrderID": "ORD1408",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-08-24"),
"Amount": "$569.35"
},
{
"OrderID": "ORD1409",
"CustomerName": "Bob Wilson",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-02-17"),
"Amount": "$411.23"
},
{
"OrderID": "ORD1410",
"CustomerName": "Jack Black",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-11-23"),
"Amount": "$19.36"
},
{
"OrderID": "ORD1411",
"CustomerName": "Henry Taylor",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-27"),
"Amount": "$786.53"
},
{
"OrderID": "ORD1412",
"CustomerName": "Ivy White",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-04-19"),
"Amount": "$902.26"
},
{
"OrderID": "ORD1413",
"CustomerName": "John Doe",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-12-17"),
"Amount": "$926.33"
},
{
"OrderID": "ORD1414",
"CustomerName": "Kelly Gray",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-06-11"),
"Amount": "$25.50"
},
{
"OrderID": "ORD1415",
"CustomerName": "Kelly Gray",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-09"),
"Amount": "$306.28"
},
{
"OrderID": "ORD1416",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-07-16"),
"Amount": "$758.05"
},
{
"OrderID": "ORD1417",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-01-28"),
"Amount": "$106.71"
},
{
"OrderID": "ORD1418",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-06-17"),
"Amount": "$39.33"
},
{
"OrderID": "ORD1419",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-07-02"),
"Amount": "$557.51"
},
{
"OrderID": "ORD1420",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-13"),
"Amount": "$774.45"
},
{
"OrderID": "ORD1421",
"CustomerName": "David Brown",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-05-18"),
"Amount": "$162.68"
},
{
"OrderID": "ORD1422",
"CustomerName": "Quinn Yellow",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-02-24"),
"Amount": "$100.61"
},
{
"OrderID": "ORD1423",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-02-22"),
"Amount": "$141.18"
},
{
"OrderID": "ORD1424",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-22"),
"Amount": "$36.00"
},
{
"OrderID": "ORD1425",
"CustomerName": "Jack Black",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-07-17"),
"Amount": "$22.22"
},
{
"OrderID": "ORD1426",
"CustomerName": "Quinn Yellow",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-10-20"),
"Amount": "$525.89"
},
{
"OrderID": "ORD1427",
"CustomerName": "Alice Johnson",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-06-04"),
"Amount": "$275.72"
},
{
"OrderID": "ORD1428",
"CustomerName": "Henry Taylor",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-22"),
"Amount": "$426.89"
},
{
"OrderID": "ORD1429",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-05-07"),
"Amount": "$723.69"
},
{
"OrderID": "ORD1430",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-08-23"),
"Amount": "$115.90"
},
{
"OrderID": "ORD1431",
"CustomerName": "Eve Green",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-11-14"),
"Amount": "$386.09"
},
{
"OrderID": "ORD1432",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-30"),
"Amount": "$974.48"
},
{
"OrderID": "ORD1433",
"CustomerName": "Bob Wilson",
"Product": "Phone",
"Status": "Shipped",
"OrderDate": new Date("2025-09-03"),
"Amount": "$321.04"
},
{
"OrderID": "ORD1434",
"CustomerName": "Mia Blue",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-22"),
"Amount": "$784.15"
},
{
"OrderID": "ORD1435",
"CustomerName": "Quinn Yellow",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-07-06"),
"Amount": "$122.75"
},
{
"OrderID": "ORD1436",
"CustomerName": "Kelly Gray",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-12-16"),
"Amount": "$769.94"
},
{
"OrderID": "ORD1437",
"CustomerName": "Leo Red",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-30"),
"Amount": "$832.97"
},
{
"OrderID": "ORD1438",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-11-21"),
"Amount": "$309.80"
},
{
"OrderID": "ORD1439",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-07"),
"Amount": "$454.58"
},
{
"OrderID": "ORD1440",
"CustomerName": "Kelly Gray",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-06"),
"Amount": "$46.40"
},
{
"OrderID": "ORD1441",
"CustomerName": "Jack Black",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-02-25"),
"Amount": "$771.26"
},
{
"OrderID": "ORD1442",
"CustomerName": "Alice Johnson",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-10-16"),
"Amount": "$983.77"
},
{
"OrderID": "ORD1443",
"CustomerName": "Mia Blue",
"Product": "Tablet",
"Status": "Pending",
"OrderDate": new Date("2025-01-06"),
"Amount": "$107.62"
},
{
"OrderID": "ORD1444",
"CustomerName": "Ivy White",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-08-17"),
"Amount": "$380.38"
},
{
"OrderID": "ORD1445",
"CustomerName": "Kelly Gray",
"Product": "Shoes",
"Status": "Shipped",
"OrderDate": new Date("2025-06-26"),
"Amount": "$997.73"
},
{
"OrderID": "ORD1446",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-13"),
"Amount": "$124.91"
},
{
"OrderID": "ORD1447",
"CustomerName": "Rose Pink",
"Product": "Laptop",
"Status": "Delivered",
"OrderDate": new Date("2025-08-22"),
"Amount": "$786.43"
},
{
"OrderID": "ORD1448",
"CustomerName": "Paul Orange",
"Product": "Phone",
"Status": "Cancelled",
"OrderDate": new Date("2025-02-19"),
"Amount": "$443.78"
},
{
"OrderID": "ORD1449",
"CustomerName": "Mia Blue",
"Product": "Bag",
"Status": "Delivered",
"OrderDate": new Date("2025-01-23"),
"Amount": "$812.08"
},
{
"OrderID": "ORD1450",
"CustomerName": "Eve Green",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-12-13"),
"Amount": "$802.05"
},
{
"OrderID": "ORD1451",
"CustomerName": "Ivy White",
"Product": "Watch",
"Status": "Shipped",
"OrderDate": new Date("2025-06-19"),
"Amount": "$564.25"
},
{
"OrderID": "ORD1452",
"CustomerName": "David Brown",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-04-06"),
"Amount": "$644.07"
},
{
"OrderID": "ORD1453",
"CustomerName": "Quinn Yellow",
"Product": "Shirt",
"Status": "Shipped",
"OrderDate": new Date("2025-08-19"),
"Amount": "$596.28"
},
{
"OrderID": "ORD1454",
"CustomerName": "Eve Green",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-05-23"),
"Amount": "$754.80"
},
{
"OrderID": "ORD1455",
"CustomerName": "Kelly Gray",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-07-07"),
"Amount": "$332.73"
},
{
"OrderID": "ORD1456",
"CustomerName": "Grace Lee",
"Product": "Laptop",
"Status": "Cancelled",
"OrderDate": new Date("2025-09-28"),
"Amount": "$966.26"
},
{
"OrderID": "ORD1457",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-28"),
"Amount": "$123.09"
},
{
"OrderID": "ORD1458",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-12-11"),
"Amount": "$708.93"
},
{
"OrderID": "ORD1459",
"CustomerName": "Noah Green",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-12-11"),
"Amount": "$142.61"
},
{
"OrderID": "ORD1460",
"CustomerName": "David Brown",
"Product": "Laptop",
"Status": "Pending",
"OrderDate": new Date("2025-04-04"),
"Amount": "$379.57"
},
{
"OrderID": "ORD1461",
"CustomerName": "Ivy White",
"Product": "Tablet",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-02"),
"Amount": "$146.49"
},
{
"OrderID": "ORD1462",
"CustomerName": "Olivia Purple",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-11-22"),
"Amount": "$542.01"
},
{
"OrderID": "ORD1463",
"CustomerName": "Jack Black",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-05-28"),
"Amount": "$148.89"
},
{
"OrderID": "ORD1464",
"CustomerName": "Leo Red",
"Product": "Book",
"Status": "Pending",
"OrderDate": new Date("2025-07-03"),
"Amount": "$952.32"
},
{
"OrderID": "ORD1465",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-10-15"),
"Amount": "$510.38"
},
{
"OrderID": "ORD1466",
"CustomerName": "Olivia Purple",
"Product": "Camera",
"Status": "Cancelled",
"OrderDate": new Date("2025-12-30"),
"Amount": "$841.49"
},
{
"OrderID": "ORD1467",
"CustomerName": "Alice Johnson",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-04-23"),
"Amount": "$299.17"
},
{
"OrderID": "ORD1468",
"CustomerName": "David Brown",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-03-28"),
"Amount": "$782.93"
},
{
"OrderID": "ORD1469",
"CustomerName": "Jack Black",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-10-21"),
"Amount": "$123.06"
},
{
"OrderID": "ORD1470",
"CustomerName": "Rose Pink",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-08-14"),
"Amount": "$550.89"
},
{
"OrderID": "ORD1471",
"CustomerName": "Grace Lee",
"Product": "Headphones",
"Status": "Delivered",
"OrderDate": new Date("2025-01-17"),
"Amount": "$455.24"
},
{
"OrderID": "ORD1472",
"CustomerName": "Henry Taylor",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-05-02"),
"Amount": "$217.78"
},
{
"OrderID": "ORD1473",
"CustomerName": "Noah Green",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-11-12"),
"Amount": "$147.84"
},
{
"OrderID": "ORD1474",
"CustomerName": "Carol Davis",
"Product": "Shirt",
"Status": "Delivered",
"OrderDate": new Date("2025-09-30"),
"Amount": "$288.27"
},
{
"OrderID": "ORD1475",
"CustomerName": "Alice Johnson",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-05-29"),
"Amount": "$577.01"
},
{
"OrderID": "ORD1476",
"CustomerName": "Grace Lee",
"Product": "Watch",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-31"),
"Amount": "$992.56"
},
{
"OrderID": "ORD1477",
"CustomerName": "Frank Miller",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-12-31"),
"Amount": "$328.88"
},
{
"OrderID": "ORD1478",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Shipped",
"OrderDate": new Date("2025-10-23"),
"Amount": "$636.08"
},
{
"OrderID": "ORD1479",
"CustomerName": "Quinn Yellow",
"Product": "Camera",
"Status": "Pending",
"OrderDate": new Date("2025-11-21"),
"Amount": "$796.65"
},
{
"OrderID": "ORD1480",
"CustomerName": "Quinn Yellow",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-12-22"),
"Amount": "$936.97"
},
{
"OrderID": "ORD1481",
"CustomerName": "Leo Red",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-10-25"),
"Amount": "$12.45"
},
{
"OrderID": "ORD1482",
"CustomerName": "Leo Red",
"Product": "Phone",
"Status": "Pending",
"OrderDate": new Date("2025-10-01"),
"Amount": "$403.74"
},
{
"OrderID": "ORD1483",
"CustomerName": "Carol Davis",
"Product": "Camera",
"Status": "Delivered",
"OrderDate": new Date("2025-06-15"),
"Amount": "$830.06"
},
{
"OrderID": "ORD1484",
"CustomerName": "Jack Black",
"Product": "Book",
"Status": "Shipped",
"OrderDate": new Date("2025-10-17"),
"Amount": "$853.90"
},
{
"OrderID": "ORD1485",
"CustomerName": "Jane Smith",
"Product": "Shirt",
"Status": "Pending",
"OrderDate": new Date("2025-11-17"),
"Amount": "$786.05"
},
{
"OrderID": "ORD1486",
"CustomerName": "Eve Green",
"Product": "Bag",
"Status": "Shipped",
"OrderDate": new Date("2025-08-14"),
"Amount": "$461.95"
},
{
"OrderID": "ORD1487",
"CustomerName": "Carol Davis",
"Product": "Watch",
"Status": "Delivered",
"OrderDate": new Date("2025-03-23"),
"Amount": "$875.68"
},
{
"OrderID": "ORD1488",
"CustomerName": "Henry Taylor",
"Product": "Phone",
"Status": "Delivered",
"OrderDate": new Date("2025-02-12"),
"Amount": "$378.13"
},
{
"OrderID": "ORD1489",
"CustomerName": "Jane Smith",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-12-25"),
"Amount": "$757.68"
},
{
"OrderID": "ORD1490",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-04-20"),
"Amount": "$482.04"
},
{
"OrderID": "ORD1491",
"CustomerName": "Kelly Gray",
"Product": "Headphones",
"Status": "Cancelled",
"OrderDate": new Date("2025-01-05"),
"Amount": "$17.98"
},
{
"OrderID": "ORD1492",
"CustomerName": "Grace Lee",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-09-02"),
"Amount": "$80.12"
},
{
"OrderID": "ORD1493",
"CustomerName": "Henry Taylor",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-06-10"),
"Amount": "$373.89"
},
{
"OrderID": "ORD1494",
"CustomerName": "Frank Miller",
"Product": "Tablet",
"Status": "Shipped",
"OrderDate": new Date("2025-11-25"),
"Amount": "$993.01"
},
{
"OrderID": "ORD1495",
"CustomerName": "Henry Taylor",
"Product": "Shoes",
"Status": "Pending",
"OrderDate": new Date("2025-11-09"),
"Amount": "$653.52"
},
{
"OrderID": "ORD1496",
"CustomerName": "Rose Pink",
"Product": "Headphones",
"Status": "Shipped",
"OrderDate": new Date("2025-07-30"),
"Amount": "$619.92"
},
{
"OrderID": "ORD1497",
"CustomerName": "Carol Davis",
"Product": "Bag",
"Status": "Pending",
"OrderDate": new Date("2025-03-13"),
"Amount": "$754.92"
},
{
"OrderID": "ORD1498",
"CustomerName": "Rose Pink",
"Product": "Tablet",
"Status": "Delivered",
"OrderDate": new Date("2025-03-13"),
"Amount": "$255.31"
},
{
"OrderID": "ORD1499",
"CustomerName": "David Brown",
"Product": "Shoes",
"Status": "Delivered",
"OrderDate": new Date("2025-12-20"),
"Amount": "$36.56"
}
]How to select single row in checkbox selection mode
The React Grid allows you to select only one row at a time within the Grid. This feature is particularly useful when you want to ensure that only a single row is selected, and any previous selections are cleared when a new row is selected.
To achieve single-row selection in checkbox selection mode within the Grid, you can handle the rowSelecting event and use the clearSelection method to clear any previous selections before selecting a new row. This ensures that only one row is selected at a time, and any prior selections are deselected when a new row is chosen.
When you set the checkboxMode property to ResetOnRowClick, it will reset the previously selected row when you click on a new row. Please note that this behavior applies to rows and not checkboxes, and it is the default behavior of the grid.
Here’s an example of how to select a single row in checkbox selection mode using the clearSelection method along with the rowSelecting event:
import { ColumnDirective, ColumnsDirective, GridComponent, Inject, SelectionSettingsModel, Page, RowSelectingEventArgs } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
let grid
const selectionSettings = { type: 'Single', checkboxMode: 'ResetOnRowClick' };
const rowSelecting = (args) => {
if (args.target && args.target.classList.contains('e-icons')) {
grid.clearSelection();
}
}
return (<div>
<GridComponent ref={g => grid = g} dataSource={data} height={315} selectionSettings={selectionSettings} allowPaging={true} rowSelecting={rowSelecting}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='OrderDate' headerText='Order Date' width='100' format='yMd' />
<ColumnDirective field='Freight' headerText='Freight' width='150' />
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='100' format='yMd' />
<ColumnDirective field='ShipCountry' headerText='ShipCountry' width='150' />
</ColumnsDirective>
<Inject services={[Page]} />
</GridComponent></div>)
};
export default App;import { ColumnDirective, ColumnsDirective, GridComponent, Inject, SelectionSettingsModel, Page, RowSelectingEventArgs } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
let grid: GridComponent | null;
const selectionSettings: SelectionSettingsModel = { type: 'Single', checkboxMode: 'ResetOnRowClick' };
const rowSelecting = (args: RowSelectingEventArgs) => {
if (args.target && args.target.classList.contains('e-icons')) {
(grid as GridComponent).clearSelection();
}
}
return (<div>
<GridComponent ref={g => grid = g} dataSource={data} height={315} selectionSettings={selectionSettings} allowPaging={true} rowSelecting={rowSelecting}>
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='OrderDate' headerText='Order Date' width='100' format='yMd' />
<ColumnDirective field='Freight' headerText='Freight' width='150' />
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='100' format='yMd' />
<ColumnDirective field='ShipCountry' headerText='ShipCountry' width='150' />
</ColumnsDirective>
<Inject services={[Page]} />
</GridComponent></div>)
};
export default App;export let data = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),ShippedDate: new Date(8367642e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),ShippedDate: new Date(8367642e5),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VINET', EmployeeID: 3, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),ShippedDate: new Date(8367642e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),ShippedDate: new Date(8367642e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'VINET', EmployeeID: 9, OrderDate: new Date(8371098e5),ShippedDate: new Date(8367642e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(837369e6),ShippedDate: new Date(8367642e5),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'VINET', EmployeeID: 4, OrderDate: new Date(8374554e5),ShippedDate: new Date(8367642e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'VINET', EmployeeID: 1, OrderDate: new Date(8375418e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),ShippedDate: new Date(8367642e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'VINET', EmployeeID: 8, OrderDate: new Date(8379738e5),ShippedDate: new Date(8367642e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];export let data: Object[] = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),ShippedDate: new Date(8367642e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),ShippedDate: new Date(8367642e5),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VINET', EmployeeID: 3, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),ShippedDate: new Date(8367642e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),ShippedDate: new Date(8367642e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'VINET', EmployeeID: 9, OrderDate: new Date(8371098e5),ShippedDate: new Date(8367642e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(837369e6),ShippedDate: new Date(8367642e5),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'VINET', EmployeeID: 4, OrderDate: new Date(8374554e5),ShippedDate: new Date(8367642e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'VINET', EmployeeID: 1, OrderDate: new Date(8375418e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),ShippedDate: new Date(8367642e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'VINET', EmployeeID: 8, OrderDate: new Date(8379738e5),ShippedDate: new Date(8367642e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];Allow selection only through checkbox click
By default, the Grid component allows selection by clicking either a grid row or the checkbox within that row. If you want to restrict selection so that it can only be done by clicking the checkboxes, you can set the selectionSettings.checkboxOnly property to true.
Here’s an example of how to enable selection only through checkbox click using checkboxOnly property:
import { ColumnDirective, ColumnsDirective, GridComponent, Inject, SelectionSettingsModel, Page } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
const selectionSettings = { checkboxOnly: true };
return (<div>
<GridComponent dataSource={data} height={315} selectionSettings={selectionSettings} allowPaging={true} >
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='OrderDate' headerText='Order Date' width='100' format='yMd' />
<ColumnDirective field='Freight' headerText='Freight' width='150' />
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='100' format='yMd' />
<ColumnDirective field='ShipCountry' headerText='ShipCountry' width='150' />
</ColumnsDirective>
<Inject services={[Page]} />
</GridComponent></div>)
};
export default App;import { ColumnDirective, ColumnsDirective, GridComponent, Inject, SelectionSettingsModel, Page } from '@syncfusion/ej2-react-grids';
import * as React from 'react';
import { data } from './datasource';
function App() {
const selectionSettings: SelectionSettingsModel = { checkboxOnly: true };
return (<div>
<GridComponent dataSource={data} height={315} selectionSettings={selectionSettings} allowPaging={true} >
<ColumnsDirective>
<ColumnDirective type='checkbox' width='50' />
<ColumnDirective field='OrderID' headerText='Order ID' width='120' textAlign="Right" />
<ColumnDirective field='CustomerID' headerText='Customer ID' width='150' />
<ColumnDirective field='OrderDate' headerText='Order Date' width='100' format='yMd' />
<ColumnDirective field='Freight' headerText='Freight' width='150' />
<ColumnDirective field='ShippedDate' headerText='Shipped Date' width='100' format='yMd' />
<ColumnDirective field='ShipCountry' headerText='ShipCountry' width='150' />
</ColumnsDirective>
<Inject services={[Page]} />
</GridComponent></div>)
};
export default App;export let data = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),ShippedDate: new Date(8367642e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),ShippedDate: new Date(8367642e5),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VINET', EmployeeID: 3, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),ShippedDate: new Date(8367642e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),ShippedDate: new Date(8367642e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'VINET', EmployeeID: 9, OrderDate: new Date(8371098e5),ShippedDate: new Date(8367642e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(837369e6),ShippedDate: new Date(8367642e5),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'VINET', EmployeeID: 4, OrderDate: new Date(8374554e5),ShippedDate: new Date(8367642e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'VINET', EmployeeID: 1, OrderDate: new Date(8375418e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),ShippedDate: new Date(8367642e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'VINET', EmployeeID: 8, OrderDate: new Date(8379738e5),ShippedDate: new Date(8367642e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];export let data: Object[] = [
{
OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),ShippedDate: new Date(8367642e5),
ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
},
{
OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),ShippedDate: new Date(8367642e5),
ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
},
{
OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
},
{
OrderID: 10251, CustomerID: 'VINET', EmployeeID: 3, OrderDate: new Date(8367642e5),ShippedDate: new Date(8367642e5),
ShipName: 'Victuailles en stock', ShipCity: 'Lyon', ShipAddress: '2, rue du Commerce',
ShipRegion: 'CJ', ShipPostalCode: '69004', ShipCountry: 'France', Freight: 41.34, Verified: !0
},
{
OrderID: 10252, CustomerID: 'SUPRD', EmployeeID: 4, OrderDate: new Date(8368506e5),ShippedDate: new Date(8367642e5),
ShipName: 'Suprêmes délices', ShipCity: 'Charleroi', ShipAddress: 'Boulevard Tirou, 255',
ShipRegion: 'CJ', ShipPostalCode: 'B-6000', ShipCountry: 'Belgium', Freight: 51.3, Verified: !0
},
{
OrderID: 10253, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(836937e6),ShippedDate: new Date(8367642e5),
ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 58.17, Verified: !0
},
{
OrderID: 10254, CustomerID: 'CHOPS', EmployeeID: 5, OrderDate: new Date(8370234e5),ShippedDate: new Date(8367642e5),
ShipName: 'Chop-suey Chinese', ShipCity: 'Bern', ShipAddress: 'Hauptstr. 31',
ShipRegion: 'CJ', ShipPostalCode: '3012', ShipCountry: 'Switzerland', Freight: 22.98, Verified: !1
},
{
OrderID: 10255, CustomerID: 'VINET', EmployeeID: 9, OrderDate: new Date(8371098e5),ShippedDate: new Date(8367642e5),
ShipName: 'Richter Supermarkt', ShipCity: 'Genève', ShipAddress: 'Starenweg 5',
ShipRegion: 'CJ', ShipPostalCode: '1204', ShipCountry: 'Switzerland', Freight: 148.33, Verified: !0
},
{
OrderID: 10256, CustomerID: 'HANAR', EmployeeID: 3, OrderDate: new Date(837369e6),ShippedDate: new Date(8367642e5),
ShipName: 'Wellington Importadora', ShipCity: 'Resende', ShipAddress: 'Rua do Mercado, 12',
ShipRegion: 'SP', ShipPostalCode: '08737-363', ShipCountry: 'Brazil', Freight: 13.97, Verified: !1
},
{
OrderID: 10257, CustomerID: 'VINET', EmployeeID: 4, OrderDate: new Date(8374554e5),ShippedDate: new Date(8367642e5),
ShipName: 'HILARION-Abastos', ShipCity: 'San Cristóbal', ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35',
ShipRegion: 'Táchira', ShipPostalCode: '5022', ShipCountry: 'Venezuela', Freight: 81.91, Verified: !0
},
{
OrderID: 10258, CustomerID: 'VINET', EmployeeID: 1, OrderDate: new Date(8375418e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ernst Handel', ShipCity: 'Graz', ShipAddress: 'Kirchgasse 6',
ShipRegion: 'CJ', ShipPostalCode: '8010', ShipCountry: 'Austria', Freight: 140.51, Verified: !0
},
{
OrderID: 10259, CustomerID: 'CENTC', EmployeeID: 4, OrderDate: new Date(8376282e5),ShippedDate: new Date(8367642e5),
ShipName: 'Centro comercial Moctezuma', ShipCity: 'México D.F.', ShipAddress: 'Sierras de Granada 9993',
ShipRegion: 'CJ', ShipPostalCode: '05022', ShipCountry: 'Mexico', Freight: 3.25, Verified: !1
},
{
OrderID: 10260, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Ottilies Käseladen', ShipCity: 'Köln', ShipAddress: 'Mehrheimerstr. 369',
ShipRegion: 'CJ', ShipPostalCode: '50739', ShipCountry: 'Germany', Freight: 55.09, Verified: !0
},
{
OrderID: 10261, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8377146e5),ShippedDate: new Date(8367642e5),
ShipName: 'Que Delícia', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua da Panificadora, 12',
ShipRegion: 'RJ', ShipPostalCode: '02389-673', ShipCountry: 'Brazil', Freight: 3.05, Verified: !1
},
{
OrderID: 10262, CustomerID: 'VINET', EmployeeID: 8, OrderDate: new Date(8379738e5),ShippedDate: new Date(8367642e5),
ShipName: 'Rattlesnake Canyon Grocery', ShipCity: 'Albuquerque', ShipAddress: '2817 Milton Dr.',
ShipRegion: 'NM', ShipPostalCode: '87110', ShipCountry: 'USA', Freight: 48.29, Verified: !0
}];