Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 20, 2019 07:17 pm PDT

A free/open tool for making XKCD-style "hand-drawn" charts

Tim Qian, a "full stack developer and open source activist," has published chart.xkcd, a free/open tool that lets you create interactive, "hand-drawn" charts in the style of XKCD comics. It's pretty fabulous! (via Four Short Links)

const svg = document.querySelector('.line-chart') new chartXkcd.Line(svg, { title: 'Monthly income of an indie developer', xLabel: 'Month', yLabel: '$ Dollors', data: { labels:['1', '2', '3', '4', '5', '6','7', '8', '9', '10'], datasets: [{ label: 'Plan', data: [30, 70, 200, 300, 500 ,800, 1500, 2900, 5000, 8000], }, { label: 'Reality', data: [0, 1, 30, 70, 80, 100, 50, 80, 40, 150], }] }, }); Read the rest


Original Link: http://feeds.boingboing.net/~r/boingboing/iBag/~3/YXSYjgiAr_Y/orthographic-unorthodoxy.html

Share this article:    Share on Facebook
View Full Article