Table
Table
Use dashboard config to load the Table
RoamIn Table
<Table name="RoamIn" data={dataMap['RPT.GTP.ROAM.IN']()} />
RoamIn Data Format
{
total: 123,
dataSource: [
{
country: 'South Korea',
address: '34.5.2.2',
mcc: '211',
mnc: '001, 002',
logs: 123,
}
]
}
RoamOut Table
<Table name="RoamOut" data={dataMap['RPT.GTP.ROAM.IN']()} />
RoamOut Data Format
{
total: 123,
dataSource: [
{
country: 'South Korea',
network: '34.5.2.5',
address: '34.5.2.2',
logs: 123,
}
]
}
Name
Type
Default Value
Required
Description
vizName
string
--
Yes
The name of the visualization
type
string
--
Yes
What type table need display
data
IObject
--
Yes
What data need display
Data Format
type
Current support type RoamIn
and RoamOut
.
Actions
VIZ.TABLE.LOAD
Name
Type
Description
type
string
The action type
tableType
string
The table type
options
string
The type of table, such as pagination
callback
(data: IObject, totalCount?: number): void
The update the viz with new data
Last updated
Was this helpful?