fetch_assoc()) {
$type_labels[] = $row['businessType'];
$type_data[] = $row['customer_count'];
}
renderCustomerTypeChart($type_labels, $type_data);
?>
fetch_assoc()) {
$stage_labels[] = $row['stage_name'];
$stage_data[] = $row['customer_count'];
}
renderDealStageChart($stage_labels, $stage_data);
?>
fetch_assoc()) {
$growth_labels[] = $row['month'];
$growth_data[] = $row['new_customers'];
}
renderCustomerGrowthChart($growth_labels, $growth_data);
?>