Financial Literacy Program

Session

Financial Literacy Session for Physiotherapy Students

Session

Financial Literacy Session for Interns

Session

Financial Literacy Session for Fintech Company

Session

Financial Literacy Session for Society

Session

Financial Literacy Session for College Students

Session

Financial Literacy Session for High School Teachers

Session

Financial Literacy Session for Primary School Teachers

Session

Session for High School Teachers

function drawSipDonut() { var invested = getNumber("fieldname5"); // Invested Amount var future = getNumber("fieldname6"); // Future Value var growth = future - invested; if (invested <= 0 || growth <= 0) return; var canvas = document.getElementById("sipDonutChart"); if (!canvas) return; if (window.sipChart) window.sipChart.destroy(); window.sipChart = new Chart(canvas, { type: "doughnut", data: { labels: ["Invested Amount", "Growth"], datasets: [{ data: [invested, growth], backgroundColor: ["#2563eb", "#16a34a"], borderWidth: 0 }] }, options: { cutout: "65%", responsive: true, plugins: { legend: { position: "bottom" } } } }); } setTimeout(drawSipDonut, 1200); document.addEventListener("input", function () { setTimeout(drawSipDonut, 400); }); });
under maintenance