Skip to content

Instantly share code, notes, and snippets.

@shaharke
Last active October 13, 2019 17:11
Show Gist options
  • Save shaharke/8610f0d7e9c9df9ef40d6a8ac6085190 to your computer and use it in GitHub Desktop.
Save shaharke/8610f0d7e9c9df9ef40d6a8ac6085190 to your computer and use it in GitHub Desktop.
roughViz Pie Demo
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://unpkg.com/rough-viz@1.0.4"></script>
<style>
.wrapper {
display: flex;
flex: wrap;
order: row;
}
</style>
</head>
<body>
<br><br>
<div class="wrapper">
<div id="vis1"></div>
</div>
<script>
new roughViz.Donut(
{
element: '#vis1',
data: {
labels: ['אדום', 'צהוב', 'ירוק', 'לבן'],
values: [1, 1, 8, 1]
},
title: "צבעים שתום אכל",
width: window.innerWidth / 2,
roughness: 1,
colors: ['red', 'yellow', 'green', '#d5dbe3'],
stroke: 'black',
strokeWidth: 8,
fillStyle: 'cross-hatch',
fillWeight: 3.5,
}
);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment