Я использую Google Geochart для построения графика карты, сначала мне нужно построить карту мира и выделить страны, а затем при выборе страны я должен построить карту страны, указав c карту. regionClick и выберите события для того же, но не могут получить название страны.
html
<div class="col-auto mt-2">
<raw-chart *ngIf="!isLoading && !isError" [chartData]="chartData" class="w-100" (select)="itemSelected($event)" (regionClick)="itemSelected($event)"></raw-chart>
<div class="mt-3" *ngIf="!isLoading && !isError">
<small class="note">Location Performance - based on geography</small>
</div>
</div>
angular:
chartData: any = {
chartType: 'GeoChart',
dataTable: [],
options: {
colorAxis: {
colors: [ '#00a1e0' ]
},
width: 640,
height: 480
},
chartArea: {
left:0,
top:0,
bottom:0,
height:"100%"
}
options = {
colorAxis: {
colors: [ '#00a1e0' ]
},
width: 640,
height: 480,
region: 'IN',
displayMode: 'regions',
resolution: 'provinces',
}
};
itemSelected(evt) {
if (evt) {
}
}
При нажатии в указанной c стране необходимо получить код страны, поэтому я заполняю карту страны. и построить график?