Grids
Example of Live Data in ASP.NET Core Data Grid Control
This sample demonstrates how frequently Grid cells are updated in real-time data at a set interval.
Feed Delay(ms):
ID | Ticker | Change % 1D | Net | Technical Rating 1D | Net Income | Sector | Employee Count |
---|---|---|---|---|---|---|---|
1 | KHMAND | 0 | -$190.00 | Neutral | -$34.00 | Mining | 3103K |
2 | KHMAUT | 0 | -$242.00 | Neutral | $149.00 | Media | 5206K |
3 | AZEAUS | 0 | -$114.00 | Neutral | $18.00 | Media | 368K |
4 | CUBAUT | 0 | -$189.00 | Neutral | $83.00 | Retail | 8510K |
5 | CIVBWA | 0 | -$213.00 | Neutral | -$11.00 | Industrial Goods | 4498K |
6 | BHRBHR | 0 | -$247.00 | Neutral | $33.00 | Entertainment | 3038K |
7 | AUTBOL | 0 | -$140.00 | Neutral | $24.00 | Retail | 4343K |
8 | BRBCCK | 0 | -$148.00 | Neutral | $123.00 | Mining | 6925K |
9 | CXRATA | 0 | -$207.00 | Neutral | $12.00 | Technology | 492K |
10 | CUBBHS | 0 | -$110.00 | Neutral | -$3.00 | Technology | 3508K |
11 | BENCUW | 0 | -$68.00 | Neutral | $22.00 | Retail | 7169K |
12 | COGCYP | 0 | -$121.00 | Neutral | $26.00 | Financial | 1142K |
13 | BTNATA | 0 | -$80.00 | Neutral | $70.00 | Financial | 7268K |
14 | ARGBHR | 0 | -$205.00 | Neutral | -$25.00 | Manufacturing | 5433K |
15 | ATGBMU | 0 | -$157.00 | Neutral | $134.00 | Real Estate | 921K |
16 | TCDALB | 0 | -$145.00 | Neutral | -$40.00 | Automotive | 3588K |
17 | BTNABW | 0 | -$264.00 | Neutral | $151.00 | Oil and Gas | 9340K |
18 | CHNBWA | 0 | -$69.00 | Neutral | -$14.00 | Oil and Gas | 4615K |
19 | BENCXR | 0 | -$223.00 | Neutral | $148.00 | Retail | 362K |
20 | CHLCRI | 0 | -$184.00 | Neutral | $9.00 | Manufacturing | 9647K |
21 | BOLBRA | 0 | -$223.00 | Neutral | $75.00 | Transportation | 2470K |
22 | CCKDMA | 0 | -$101.00 | Neutral | $156.00 | Retail | 8685K |
23 | BLZCRI | 0 | -$150.00 | Neutral | $16.00 | Media | 3028K |
24 | BDIBLR | 0 | -$111.00 | Neutral | $136.00 | Transportation | 5406K |
25 | CYPALA | 0 | -$182.00 | Neutral | $57.00 | Automotive | 3477K |
26 | ATAALB | 0 | -$107.00 | Neutral | $100.00 | Industrial Goods | 5208K |
The updating of Grid cells can be done without any performance lagging by using the setCellValue
method.
The style of Grid cells can be customized using the queryCellInfo
event.
In this demo,
- Clicking the start update button triggers automatic updates of Grid cells at the interval set in the feed delay text box which is a milliseconds format.
- Clicking the stop update button will halt the automatic updating of Grid cells.
More information on the queryCellInfo can be found in this documentation section .