Grouped Indicators
data = [
{
"description": "",
"title": "Estado",
"value": "Abierto",
"align": "center",
},
{
"description": "",
"title": "Price ($)",
"value": "455",
"color": "success",
},
{
"description": "this is a description",
"title": "Volumen",
"value": "41153"
},
{
"description": "",
"title": "Cambio €/$",
"value": "1.1946",
},
]
order = s.plt.indicator(data=data, order=0)
s.plt.indicator(data=data+data[2:], order=order)
Last updated
Was this helpful?