码迷,mamicode.com
首页 > 其他好文 > 详细

chart.xkcd 可绘制粗略,开通,手绘样式的图表库

时间:2019-08-29 23:35:31      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:资料   monthly   代码   set   图片   inf   github   meta   java   

chart.xkcd 可以用来绘制手绘样式的图表,使用简单,样式也挺好看

简单使用

  • 代码

    index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <svg class="line-chart"></svg>
<script src="https://cdn.jsdelivr.net/npm/chart.xkcd@1/dist/chart.xkcd.min.js"></script>
<script>
  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],
      }]
    },
  });
</script>
</body>
</html>
  • 启动效果

    使用live-server

live-server
 技术图片

 

 

参考资料

https://timqian.com/chart.xkcd/
https://github.com/timqian/chart.xkcd

chart.xkcd 可绘制粗略,开通,手绘样式的图表库

标签:资料   monthly   代码   set   图片   inf   github   meta   java   

原文地址:https://www.cnblogs.com/rongfengliang/p/11432226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!