feat(curriculum): add scatterplot graph project to data visualization module (#64093)

Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
This commit is contained in:
majestic-owl448
2026-03-02 09:38:18 +01:00
committed by GitHub
parent e07295fff2
commit 42beead4f7
4 changed files with 1287 additions and 1 deletions

View File

@@ -3725,6 +3725,12 @@
"In these lessons, you will learn about basic data visualization concepts."
]
},
"lab-scatterplot-graph": {
"title": "Build a Scatterplot Graph",
"intro": [
"In this lab you will create a d3 scatterplot graph using a provided dataset."
]
},
"lecture-introduction-to-typescript": {
"title": "Introduction to TypeScript",
"intro": [

View File

@@ -0,0 +1,12 @@
{
"name": "Build a Scatterplot Graph",
"isUpcomingChange": true,
"dashedName": "lab-scatterplot-graph",
"helpCategory": "JavaScript",
"blockLayout": "link",
"challengeOrder": [
{ "id": "bd7178d8c242eddfaeb5bd13", "title": "Build a Scatterplot Graph" }
],
"blockLabel": "lab",
"usesMultifileEditor": true
}

View File

@@ -80,7 +80,10 @@
{
"dashedName": "data-visualization",
"comingSoon": true,
"blocks": ["lecture-introduction-to-data-visualization"]
"blocks": [
"lecture-introduction-to-data-visualization",
"lab-scatterplot-graph"
]
},
{
"dashedName": "typescript-fundamentals",