I want to make a link to this iframe {' '} embedded in the donut chart when clicking for example in 'Task En cours' the iframe appear this is the code which I used for build the donut chart it work normaly but the problem I can't insert the iframe code inside it. If anyone knows how can I do it, please tell me how.
<PieChart
:src="$sources.AsaStatut"
:options="{
title: {
$text: function(dataset) {
return dataset.sumBy('asaNombre').value() + '\n{sub|Total}'
},
x: 'center',
y: 'center',
textStyle: {
fontSize: 32,
color: '#444',
fontFamily: 'SourceSansProRegular, roboto, sans-serif',
lineHeight: 24,
rich: {
sub: {
color: '#D5D6D8',
fontSize: 16
}
}
},
itemStyle: {
}
},
legend: {
data: [
'ASA En cours',
'ASA Validé'
],
bottom: 0,
selected: {
'Key not in scope': false
}
},
series: [
{
$data: { value: 'asaNombre', name: 'Statut' },
radius: ['55%', '70%'],
color: [ '#DA353B','#19B772'],
label: {
normal: {
show: false
}
}
}
]
}"
/>
Thanks.
Juan Pablo Isaza