Skip to content

Instantly share code, notes, and snippets.

@typpo
Created July 4, 2019 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save typpo/79bf3e82d81f886d01f14c872b755057 to your computer and use it in GitHub Desktop.
Save typpo/79bf3e82d81f886d01f14c872b755057 to your computer and use it in GitHub Desktop.
QuickChart/Chart.js transparent radar chart
{
type: 'radar',
data: {
labels: ['Jan', 'Feb', 'March', 'April', 'May'],
datasets: [{
data: [ 50, 60, 70, 80, 90 ],
backgroundColor: 'transparent',
borderColor: 'red',
}]
},
options: {
legend: {display: false}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment