GridChart
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
import React from 'react'
import { Viz } from 'a10-gui-dgp-viz'
const { GridChart } = Viz
export const MyDashboard = () => {
return (
<GridChart
name="MY Grid"
numOfColumns={3}
unit="%"
range={[60, 80]}
data={[
{
name: 'load-balancer-1',
value: 46,
},
]}
/>
)
}
TBDconst data = [
{
name: 'load-balancer-1',
value: 46,
},{
name: 'load-balancer-2',
value: 87,
},
{
name: 'load-balancer-3',
value: 88,
},
// ...
]