timqian commited on
Commit
de22a9c
1 Parent(s): d2c6d20

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +25 -19
index.html CHANGED
@@ -1,19 +1,25 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
1
+ <svg class="line-chart"></svg>
2
+ <script src="https://cdn.jsdelivr.net/npm/chart.xkcd@1.1/dist/chart.xkcd.min.js"></script>
3
+ <script>
4
+ const svg = document.querySelector('.line-chart')
5
+
6
+ const lineChart = new chartXkcd.Line(svg, {
7
+ title: 'Monthly income of an indie developer', // optional
8
+ xLabel: 'Month', // optional
9
+ yLabel: '$ Dollors', // optional
10
+ data: {
11
+ labels: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'],
12
+ datasets: [{
13
+ label: 'Plan',
14
+ data: [30, 70, 200, 300, 500, 800, 1500, 2900, 5000, 8000],
15
+ }, {
16
+ label: 'Reality',
17
+ data: [0, 1, 30, 70, 80, 100, 50, 80, 40, 150],
18
+ }],
19
+ },
20
+ options: { // optional
21
+ yTickCount: 3,
22
+ legendPosition: chartXkcd.config.positionType.upLeft
23
+ }
24
+ });
25
+ </script>