-
Notifications
You must be signed in to change notification settings - Fork 0
/
fund1spc.js
806 lines (737 loc) · 25.8 KB
/
fund1spc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
var sharedauthtoken = localStorage.getItem("authData");
// console.log(sharedauthtoken);
if (!sharedauthtoken) {
var Authorization = {
Authorization: "",
};
} else Authorization = JSON.parse(sharedauthtoken);
// console.log(Authorization);
//New Navbar mobile toggle
document.addEventListener("DOMContentLoaded", function() {
const mobileMenuToggle = document.getElementById('mobile-menu-toggle');
const navMenu = document.getElementById('nav-menu');
mobileMenuToggle.addEventListener('click', function() {
navMenu.classList.toggle('active');
});
});
//Code for DYNAMIC nav dropdown, limited Allowed page Access
document.addEventListener("DOMContentLoaded", async function () {
$.ajax({
url: "https://investors-backend.viiventures.co/funds/get-allowed-funds-users",
method: "GET",
headers: {
Authorization: Authorization.Authorization,
},
success: function (result) {
// console.log(result.body); //working fine
var allowedfunds = result.body.allowed_funds;
var allowedusers = result.body.allowed_users;
allowedfunds.forEach(function (item, index) {
var dropdownoption = document.querySelectorAll(
".fundopt" + `${index + 1}`
);
dropdownoption.forEach(function (addoption) {
addoption.innerHTML = `<a class="dropdown-toggle" style="text-decoration: none; color: #ffffff;" href="#">${item.name}</a>
<ul class="dropdown-menu dropdown-submenu" style="display: none; position: absolute; right: 0;">
<li>
<a style="text-decoration: none; color: #ffffff;"
href="${item.link}#2023">2023</a>
</li>
<li>
<a style="text-decoration: none; color: #ffffff;"
href="${item.link}#2022">2022</a>
</li>
<li>
<a style="text-decoration: none; color: #ffffff;"
href="${item.link}#2021">2021</a>
</li>
</ul>`;
});
});
allowedusers.forEach(function (item, index) {
var dropdownusers = document.querySelectorAll(
".useropt" + `${index + 1}`
);
dropdownusers.forEach(function (adduser) {
adduser.innerHTML = `
<a style="text-decoration: none; color: #ffffff;" href="index2.html?id=${item.user}">${item.username}</a>`;
});
});
// Add hover event listeners to display side dropdowns on hover
var fundDropdowns = document.querySelectorAll('.fundopt1, .fundopt2, .fundopt3');
fundDropdowns.forEach(function (dropdown) {
dropdown.addEventListener('mouseenter', function () {
this.querySelector('.dropdown-menu').style.display = 'block';
});
dropdown.addEventListener('mouseleave', function () {
this.querySelector('.dropdown-menu').style.display = 'none';
});
});
},
});
});
//Code for the body Continued
var responseData;
var dataFromAPI;
// Function to format numbers in American number system
function formatAmericanNumber(number) {
return number.toLocaleString("en-US");
}
// //BARGRAPH START
document.addEventListener("DOMContentLoaded", async function () {
// Fetch Overall Portfolio data from the API (for bar chart, moic chart and for cards as well)
$.ajax({
url: "https://investors-backend.viiventures.co/funds/overall-portfolio?format=json&fundName=VII%20Ventures%20FUND%201%20SP",
type: "GET",
contentType: "application/json",
headers: {
Authorization: Authorization.Authorization,
},
success: function (result) {
// CallBack(result);
// console.log(result);
// responseData = result.json();
// console.log(responseData);
dataFromAPI = result.body.overall_portfolio;
// console.log(result.body.overall_portfolio);
// // Update the Username with the API call
// var storedapiData = localStorage.getItem("sharedapiData");
// // Parse the JSON string back to an object
// var apiData = JSON.parse(storedapiData);
// const usernameelement = document.getElementById("usernamerighttop");
// if (dataFromAPI.body.username)
// usernameelement.textContent = dataFromAPI.body.username;
if (result.status_code == 401)
window.location.href = "auth-normal-sign-in.html";
// Update the Username with the API call
const usernameelement = document.getElementById("usernamerighttop");
usernameelement.textContent = result.body.username;
// Update the total number of investments
const totalnoofinvestments = document.getElementById("totalinvestments");
totalnoofinvestments.textContent = result.body.total_investments;
// Update the CARD value with the 2023: nav_end_of_year
const navValueElement = document.getElementById("navValue");
navValueElement.textContent = `$ ${formatAmericanNumber(
dataFromAPI["2023"].nav_end_of_year
)}`;
// Update the MOIC CARD value with the 2023: MOIC
const moicValueElement = document.getElementById("moicValue");
moicValueElement.textContent = `${formatAmericanNumber(
dataFromAPI["2023"].moic
)}`;
// Extract labels and data from the API response
var ctx = document.getElementById("myBarChart").getContext("2d");
var myChart = new Chart(ctx, {
type: "bar",
data: {
labels: [...Object.keys(dataFromAPI)],
datasets: [
{
label: "Total Capital Invested",
data: [
...Object.values(dataFromAPI).map(
(item) => item.total_capital_invested
),
],
backgroundColor: "#59d79e",
borderRadius: 10,
barPercentage: 0.7,
categoryPercentage: 0.2, // Adjust the spacing between bars
},
{
label: "NAV end of the year",
data: [
...Object.values(dataFromAPI).map(
(item) => item.nav_end_of_year
),
],
backgroundColor: "#ACD6E0",
borderRadius: 10,
barPercentage: 0.7, // Adjust the width of the bars
categoryPercentage: 0.2, // Adjust the spacing between bars
},
],
},
options: {
responsive: true, // Set to false to use fixed size
maintainAspectRatio: false, // Set to false to allow changing the aspect ratio
scales: {
x: {
stacked: false, // Set to false for side-by-side bars
grid: {
// color: "#DFDFDF", // Set the color of the horizontal grid lines
display: false,
// drawBorder: false, // Hide the vertical grid lines
},
ticks: {
// Change x-axis label color
color: "#DFDFDF",
},
},
y: {
stacked: false,
grid: {
color: "#dcdcdc9a",
display: true,
},
ticks: {
// Change x-axis label color
color: "#DFDFDF",
},
},
},
plugins: {
legend: {
labels: {
// Change legend text color
color: "#DFDFDF",
},
},
},
},
});
//BARGRAPH ENDED
//Code for Line Chart - 1 START (MOIC Chart)
// Extracting labels and data from the API response
const labels = ["", ...Object.keys(dataFromAPI), ""];
const data = [
null,
...Object.values(dataFromAPI).map((item) => item.moic),
null,
];
// // Sample data
// var labels = ["", "2021", "2022", "2023", ""];
// var data = [null, 1.47, 1.18, 1.04, null];
// Get the canvas element and create a 2D drawing context
var ctx = document.getElementById("moicchart").getContext("2d");
// Create the chart
var myChart = new Chart(ctx, {
type: "line",
data: {
labels: labels,
datasets: [
{
label: "MOIC",
borderColor: "#59D79E",
backgroundColor: "#59D79E",
data: data,
fill: false,
},
],
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
x: {
type: "category",
labels: labels,
grid: {
// color: "white",
display: false, // hide vertical grid lines
},
ticks: {
// Change x-axis label color
color: "#DFDFDF",
},
},
y: {
beginAtZero: true,
suggestedMin: 0.5,
stepSize: 0.5,
grid: {
color: "#dcdcdc9a",
display: true, // keep horizontal grid lines
},
ticks: {
// Change x-axis label color
color: "#DFDFDF",
},
},
},
plugins: {
legend: {
labels: {
// Change legend text color
color: "#DFDFDF",
},
// fillStyle: "#59D79E",
},
},
},
});
},
// error: function (error) {
// window.location.href = "auth-normal-sign-in.html";
// },
});
});
//Code for Line Chart - 1 ENDED (MOIC Chart)
//Code for 2023, 2022, 2021 Tables START
document.addEventListener("DOMContentLoaded", async function () {
// Fetch investment data from the API
const response = await fetch(
"https://investors-backend.viiventures.co/funds/company-level-portfolio?format=json&fundName=VII%20Ventures%20FUND%201%20SP"
);
const responseData = await response.json();
const investmentData = responseData.body.company_level_portfolio;
// Function to create a table row for the given investment item
function createTableRow(item) {
var row = document.createElement("tr");
var logoCell = document.createElement("td");
var companyCell = document.createElement("td");
var industryCell = document.createElement("td");
var amountCell = document.createElement("td");
var valuationCell = document.createElement("td");
var moicCell = document.createElement("td");
var geoCell = document.createElement("td");
var gaindeccell = document.createElement("td");
// Populate cells with data
logoCell.innerHTML = `<a href = "${item.web_link}"><img src="${item.logo}" style="width: 5em;"></img></a>`;
geoCell.innerHTML = `<img src="${item.geo}" style="width: 4em;"></img>`;
companyCell.textContent = item.name;
industryCell.textContent = item.industry;
amountCell.textContent = formatAmericanNumber(item.investment_cost);
valuationCell.textContent = formatAmericanNumber(item.valuation_31_dec);
moicCell.textContent = item.moic;
gaindeccell.innerHTML = `<img src="${item.trend}" style="width: 4.5em;"></img>`;
// Append cells to the row
row.appendChild(logoCell);
row.appendChild(companyCell);
row.appendChild(industryCell);
row.appendChild(amountCell);
row.appendChild(valuationCell);
row.appendChild(moicCell);
row.appendChild(geoCell);
row.appendChild(gaindeccell);
return row;
}
// Function to format numbers in American number system
function formatAmericanNumber(number) {
return number.toLocaleString("en-US");
}
// Populate tables for 2023, 2022, and 2021
["2023", "2022", "2021"].forEach(function (year) {
// Reference to the table body
var tbody = document.querySelector(`#myTable${year} tbody`);
// Extract data for the specific year
var dataForYear = investmentData[year];
// Populate the table with data for the specific year
dataForYear.forEach(function (item) {
var row = createTableRow(item);
tbody.appendChild(row);
});
});
});
//Code for 2023, 2022, 2021 Tables ENDED
//Code for Pie Charts- ALL COMBINED START
google.charts.load("current", { packages: ["corechart"] });
google.charts.setOnLoadCallback(async function () {
const response = await fetch(
"https://investors-backend.viiventures.co/funds/funds-geographies?format=json&fundName=VII%20Ventures%20FUND%201%20SP"
);
const apiData = await response.json();
function drawPieChart(containerId, year) {
const chartContainer = document.getElementById(containerId);
const data = new google.visualization.DataTable();
data.addColumn("string", "Geography");
data.addColumn("number", "Percent Invested");
const rows = apiData.body.geographies[year] || [];
rows.forEach((row) => {
data.addRow([row.geo, row.percent_invested]);
});
const view = new google.visualization.DataView(data);
view.setColumns([
0,
1,
{
calc: function (dt, row) {
return (
// dt.getValue(row, 0) +
"Percent Invested: " +
dt.getValue(row, 1) +
"%\nTotal Invested: " +
formatAmericanNumber(
apiData.body.geographies[year][row].total_invested
)
);
},
type: "string",
role: "tooltip",
},
]);
const options = {
legend: { position: "top", textStyle: { fontSize: 16 } },
pieSliceText: "percentage",
pieSliceTextStyle: { fontSize: 16, bold: true },
colors: ["#205867", "#ACD6E0", "#59D79E"],
backgroundColor: "#f6f7fb",
tooltip: { isHtml: true },
};
const chart = new google.visualization.PieChart(chartContainer);
chart.draw(view, options);
}
drawPieChart("geopie2023", "2023");
drawPieChart("geopie2022", "2022");
drawPieChart("geopie2021", "2021");
});
//Code for Pie Charts- ALL COMBINED ENDED
// // Code for Industry Pie Chart - 1 START (ALL combined)
// google.charts.load("current", { packages: ["corechart"] });
// google.charts.setOnLoadCallback(async function () {
// const response = await fetch(
// "https://investors-backend.viiventures.co/funds/company-level-portfolio?format=json&fundName=VII%20Ventures%20FUND%201%20SP"
// );
// const apiData = await response.json();
// // Function to draw the pie chart
// function drawPieChart(year, divId) {
// // Extract data for the specific year
// const yearData = apiData.body.company_level_portfolio[year];
// // Prepare data for the chart
// var data = new google.visualization.DataTable();
// data.addColumn("string", "Company");
// data.addColumn("number", "Investment Cost");
// // Populate data array using forEach
// yearData.forEach((item) => {
// // Convert investment_cost to number
// const investmentCost = Number(item.investment_cost);
// // Add row to the DataTable
// data.addRow([item.name, investmentCost]);
// console.log(item.name, investmentCost);
// });
// // Configure options for the chart
// var options = {
// legend: "top",
// pieSliceText: "percentage",
// colors: [
// "#ACD6E0",
// "#205867",
// "#2F455C",
// "#59D79E",
// "#D8D8D8",
// "#FF7F50",
// "#6A5ACD",
// "#FFD700",
// "#32CD32",
// "#8A2BE2",
// "#FF6347",
// "#40E0D0",
// "#FFA07A",
// ],
// backgroundColor: "white",
// pieStartAngle: 100,
// // title: `Investment Distribution for ${year}`,
// };
// // Create and draw the chart
// var chart = new google.visualization.PieChart(
// document.getElementById(divId)
// );
// chart.draw(data, options);
// }
// // Draw pie charts for 2021, 2022, and 2023
// drawPieChart("2023", "industrypie2023");
// drawPieChart("2022", "industrypie2022");
// drawPieChart("2021", "industrypie2021");
// });
//Code for Pie Chart - 1 ENDED (INDUSTRY)
//Optional Component(removed ones and additional ones) FROM HERE
// Code for Pie Chart - 1 START (INDUSTRY)
// var data1 = google.visualization.arrayToDataTable([
// ["Language", "Speakers (in millions)"],
// ["Financial Services", 20],
// ["FinTech", 20],
// ["Social Impact or Nonprofit", 20],
// ["Logistics", 20],
// ["MarTech", 20],
// ]);
// var options1 = {
// legend: "top", // Change "none" to "top", "bottom", "left", "right", or combination
// pieSliceText: "percentage",
// // title: "Investment Geographies for 2022",
// colors: ["#ACD6E0", "#205867", "#2F455C", "#59D79E", "#D8D8D8"],
// backgroundColor: "#f6f7fb",
// pieStartAngle: 100,
// };
// var chart1 = new google.visualization.PieChart(
// document.getElementById("industrypie")
// );
// chart1.draw(data1, options1);
//Code for Pie Chart - 1 ENDED (INDUSTRY)
//Code for Pie Chart - 2 START (GEO)
// var data2 = google.visualization.arrayToDataTable([
// ["Language", "Speakers (in millions)"],
// ["Europe", 4.1],
// ["USA", 95.9],
// ]);
// var options2 = {
// legend: "top", // Change "none" to "top", "bottom", "left", "right", or combination
// pieSliceText: "percentage",
// // title: "Investment Geographies for 2022",
// colors: ["#ACD6E0", "#205867"],
// backgroundColor: "#f6f7fb",
// pieStartAngle: 100,
// };
// var chart2 = new google.visualization.PieChart(
// document.getElementById("geopie")
// );
// chart2.draw(data2, options2);
// //Code for Pie Chart - 2 ENDED (GEO)
//Code for Table - 1 STARTED
// google.charts.load("current", { packages: ["table"] });
// google.charts.setOnLoadCallback(drawTable);
// function drawTable() {
// var data = new google.visualization.DataTable();
// data.addColumn("string", "Date");
// data.addColumn("string", "Company Name");
// data.addColumn("number", "Amount Invested");
// data.addColumn("number", "Cost per share");
// data.addColumn("number", "Entry Valuation as on 31 Dec 22");
// data.addRows([
// [
// "29-Sep-21",
// "Alcazar Alpha Fund I (CEIC Ltd)",
// { v: 1000000, f: " 10,00,000" },
// 0.01,
// { v: 1372250, f: " 13,72,250" },
// ],
// [
// "29-Sep-21",
// "Tribe Capital V, LLC- Series 2-A",
// { v: 714000, f: " 7,14,000" },
// 0.01,
// { v: 1757588, f: "17,57,588" },
// ],
// [
// "13-Dec-21",
// "Summer Pipe LLC",
// { v: 12500, f: "15,00,000" },
// 0.01,
// { v: 1500000, f: " 15,00,000" },
// ],
// [
// "02-Feb-22",
// "HOF Capital Growth Opportunity XXI, LLC",
// { v: 1000000, f: " 10,00,000" },
// 0.01,
// { v: 684877, f: " 6,84,877" },
// ],
// [
// "16-Mar-22",
// "Project SAM Productions LLC- Equity investment (initial purchase USD 250K+ second purchase USD 250k)",
// { v: 500000, f: " 5,00,000" },
// 0.01,
// { v: 500000, f: "5,00,000" },
// ],
// [
// "14-Apr-22",
// "Koinz Holding B.V. - Inv. Cost",
// { v: 250000, f: "2,50,000" },
// 0.01,
// { v: 250000, f: "2,50,000" },
// ],
// ]);
// var table = new google.visualization.Table(
// document.getElementById("table_div")
// );
// table.draw(data, { showRowNumber: true, width: "100%", height: "100%" });
// }
//Code for Table - 1 ENDED
// //Code for Line Chart - 2 START
// document.addEventListener("DOMContentLoaded", function () {
// // Sample data
// var labels = [
// "Zipline",
// "NextRoll",
// "Orbital Insights",
// "Emerald Cloud Lab (ECL)",
// "Kraken",
// "Pipe",
// "Plaid",
// "Project SAM Productions LLC",
// ];
// var data1 = [
// 150015, 150000, 200000, 1000000, 714000, 1500000, 1000000, 500000,
// ];
// var data2 = [
// 142917, 150000, 212884, 1000000, 3477446, 1500000, 684877, 500000,
// ];
// // Get the canvas element and create a 2D drawing context
// var ctx = document.getElementById("linechart1").getContext("2d");
// // Create the chart
// var myChart = new Chart(ctx, {
// type: "line",
// data: {
// labels: labels,
// datasets: [
// {
// label: "Investment Cost",
// borderColor: "#59d79e",
// data: data1,
// fill: false,
// },
// {
// label: "Valuation as of 31 Dec, 2021",
// borderColor: "#2F455C",
// data: data2,
// fill: false,
// },
// ],
// },
// options: {
// responsive: true,
// maintainAspectRatio: false,
// scales: {
// x: {
// type: "category",
// labels: labels,
// grid: { display: false },
// },
// y: {
// beginAtZero: true,
// grid: { display: true },
// },
// },
// },
// });
// });
// //Code for Line Chart - 2 ENDED
// //Code for Line Chart - 3 START
// document.addEventListener("DOMContentLoaded", function () {
// // Sample data
// var labels = [
// "Emerald Cloud Lab (ECL)",
// "Kraken",
// "Pipe",
// "Plaid",
// "Project SAM Productions LLC-Equity Investment (initial purchase USD 250k +second purchase USD 250k",
// "Koinz Holding B.V.-Inv. Cost",
// "Project SAM Productions LLC - Loan in 2021",
// "Project SAM Productions LLC - Loan in Q1,2022",
// "Project SAM Productions LLC - Loan in Q2,2022",
// ];
// var data1 = [
// 1000000, 714000, 1500000, 1000000, 500000, 250000, 350000, 400000, 250000,
// ];
// var data2 = [
// 1372250, 1757588, 1500000, 684877, 500000, 250000, 350000, 400000, 250000,
// ];
// // Get the canvas element and create a 2D drawing context
// var ctx = document.getElementById("linechart2").getContext("2d");
// // Create the chart
// var myChart = new Chart(ctx, {
// type: "line",
// data: {
// labels: labels,
// datasets: [
// {
// label: "Investment Cost",
// borderColor: "#59d79e",
// data: data1,
// fill: false,
// },
// {
// label: "Valuation as of 31 Dec, 2022",
// borderColor: "#2F455C",
// data: data2,
// fill: false,
// },
// ],
// },
// options: {
// responsive: true,
// maintainAspectRatio: false,
// scales: {
// x: {
// type: "category",
// labels: labels,
// grid: {
// display: false, // hide vertical grid lines
// },
// },
// y: {
// beginAtZero: true,
// grid: {
// display: true, // keep horizontal grid lines
// },
// },
// },
// plugins: {
// legend: {
// display: true,
// },
// tooltip: {
// enabled: true,
// },
// },
// layout: {
// padding: {
// left: 10,
// right: 10,
// top: 10,
// bottom: 10,
// },
// },
// plugins: {
// legend: {
// display: true,
// },
// tooltip: {
// enabled: true,
// },
// xaxis: {
// maxTicksLimit: 10, // Adjust the maximum number of ticks on the x-axis
// maxRotation: 45, // Adjust the maximum rotation angle of the x-axis labels
// },
// },
// },
// });
// });
// //Code for Line Chart - 3 ENDED
// // Code for Bar Graph - 1
// (function () {
// google.charts.load("current", { packages: ["corechart", "bar"] });
// google.charts.setOnLoadCallback(drawStuff);
// function drawStuff() {
// var chartDiv = document.getElementById("bargraph");
// var data = google.visualization.arrayToDataTable([
// ["", "Total Capital Invested", "NAV end of the year"],
// ["2021", 5214015, 7668124], // RGB value
// ["2022", 5964000, 7064715], // English color name
// ["2023", 5964000, 6189715],
// ]);
// var materialOptions = {
// width: 900,
// chart: {
// title: "Total Invested Capital vs. NAV end of December for 2021 & 2022",
// // // subtitle:
// // // "VII Ventures Fund SPC [Total Invested Capital vs. NAV end of December for 2021 & 2022]",
// titleTextStyle: {
// color: "#666", // Change the color of the chart title
// },
// },
// colors: ["#2F455C", "#59d79e"],
// bar: { groupWidth: "90%" },
// legend: { position: "top" },
// vAxis: {
// format: "0", // Display axis numbers without abbreviation
// textStyle: { color: "#666" }, // Adjust brightness by changing color
// },
// hAxis: {
// textStyle: { color: "#666" }, // Adjust brightness by changing color
// },
// };
// function drawMaterialChart() {
// var materialChart = new google.charts.Bar(chartDiv);
// materialChart.draw(
// data,
// google.charts.Bar.convertOptions(materialOptions)
// );
// }
// function drawClassicChart() {
// var classicChart = new google.visualization.ColumnChart(chartDiv);
// classicChart.draw(data, classicOptions);
// }
// drawMaterialChart();
// }
// })();
//Code for Bar Chart - 1 ENDED