回答編集履歴

2

調整

2018/11/05 02:36

投稿

yambejp
yambejp

スコア114839

test CHANGED
@@ -50,13 +50,13 @@
50
50
 
51
51
  200 30" stroke="black" fill="none"/>
52
52
 
53
- <text x=5 y=15>0</text>
53
+ <text x= "5" y="15">0</text>
54
54
 
55
- <text x=55 y=15>5</text>
55
+ <text x= "55" y="15">5</text>
56
56
 
57
- <text x=100 y=15>10</text>
57
+ <text x="100" y="15">10</text>
58
58
 
59
- <text x=150 y=15>15</text>
59
+ <text x="150" y="15">15</text>
60
60
 
61
61
  </svg>
62
62
 

1

sample

2018/11/05 02:36

投稿

yambejp
yambejp

スコア114839

test CHANGED
@@ -1 +1,63 @@
1
1
  グラフィカルな処理が必要ならSVGかcanvasを利用すると良いでしょう
2
+
3
+
4
+
5
+ # sample
6
+
7
+ ```HTML
8
+
9
+ <svg width="210" height="30">
10
+
11
+ <polyline points="
12
+
13
+ 10 30 10 20 10 30
14
+
15
+ 20 30 20 25 20 30
16
+
17
+ 30 30 30 25 30 30
18
+
19
+ 40 30 40 25 40 30
20
+
21
+ 50 30 50 25 50 30
22
+
23
+ 60 30 60 20 60 30
24
+
25
+ 70 30 70 25 70 30
26
+
27
+ 80 30 80 25 80 30
28
+
29
+ 90 30 90 25 90 30
30
+
31
+ 100 30 100 25 100 30
32
+
33
+ 110 30 110 20 110 30
34
+
35
+ 120 30 120 25 120 30
36
+
37
+ 130 30 130 25 130 30
38
+
39
+ 140 30 140 25 140 30
40
+
41
+ 150 30 150 25 150 30
42
+
43
+ 160 30 160 20 160 30
44
+
45
+ 170 30 170 25 170 30
46
+
47
+ 180 30 180 25 180 30
48
+
49
+ 190 30 190 25 190 30
50
+
51
+ 200 30" stroke="black" fill="none"/>
52
+
53
+ <text x=5 y=15>0</text>
54
+
55
+ <text x=55 y=15>5</text>
56
+
57
+ <text x=100 y=15>10</text>
58
+
59
+ <text x=150 y=15>15</text>
60
+
61
+ </svg>
62
+
63
+ ```