Skip to content

Instantly share code, notes, and snippets.

View achopijocoder's full-sized avatar

JuanLu achopijocoder

View GitHub Profile
class LineChart {
// LineChart by https://kevinkub.de/
constructor(width, height, values) {
this.ctx = new DrawContext();
this.ctx.size = new Size(width, height);
this.values = values;
}
_calculatePath() {