Hi Team,
I have column chart like below. how do i show the name dynamically from chart object
[dataSource]="chart.values"
xName="geofence"
yName="count"
[name]="type"
>
public chartData1 = [
{
values: [
{
geofence: 'Region2',
type: 'Wifi',
count: 6,
},
{ geofence: 'Region1', type: 'Network', count: 6 },
],
},
{
values: [
{
geofence: 'Region2',
type: 'Wifi',
count: 60,
},
{ geofence: 'Region1', type: 'Network', count: 45 },
],
},
];