fetch_assoc()) {
$country_labels[] = $row['countryName'];
$country_data[] = $row['customer_count'];
}
renderCustomerCountryDistributionChart($country_labels, $country_data);
?>
fetch_assoc()) {
$region_labels[] = $row['countryName'];
$region_order_counts[] = $row['order_count'];
$region_quantities[] = $row['total_quantity'];
}
renderRegionOrdersChart($region_labels, $region_order_counts, $region_quantities);
?>