What technologies to use to create a graph like that?

Title ^
6 Replies
rezabet
rezabet•2y ago
Using a pure solution* (Not 3rd party libraries) Do we use canvas or WebGL or something like that?
Unknown User
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
MarkBoots
MarkBoots•2y ago
pure solution? that is a big ask. There is a reason why these kind of libraries exist. A lot of calculations going on (including trigonometry)
13eck
13eck•2y ago
"Pure" solution? The canvas element. No need for WebGL for a one-dimensional line. Then you'd use the context drawing methods to actually draw the line. But like Mark said, 3rd party libs exist to abstract away the minutia of drawing the lines and making the curves look good.
MarkBoots
MarkBoots•2y ago
coding train does a lot of data visualization on canvas. If you are really interested, you should check out his youtube
rezabet
rezabet•2y ago
Thanks guys! 🙂