質問編集履歴
2
文章を修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
-
棒グラフを0からカウントアップさせるのですが、そこに表示される数字の単位は%となっており、ここに、グラフに変数を与え、数字と共に表示させたいと思い、
|
7
|
+
棒グラフを0からカウントアップさせるのですが、そこに表示される数字の単位は%となっており、ここに、グラフに毎に変数を与え、数字と共に表示させたいと思っています。以下の様に、単位(tani)という変数を与え、%を変数に置き換え、グラフ単体では問題なく表示されました。
|
8
8
|
|
9
9
|
```Javascript
|
10
10
|
|
@@ -44,11 +44,11 @@
|
|
44
44
|
|
45
45
|
```
|
46
46
|
|
47
|
-
|
47
|
+
|
48
|
-
|
48
|
+
|
49
|
-
これをLOOPで複数作成すると、単位(tani)がすべてのグラフで、一番最後に与えらえた
|
49
|
+
しかし、これをLOOPでグラフを複数作成しようとすると、単位(tani)がすべてのグラフで、一番最後に与えらえた値になってしまいます。
|
50
|
-
|
50
|
+
|
51
|
-
|
51
|
+
この、単位(tani)以外の変数は、それぞれのグラフに与えた値で処理されています。
|
52
52
|
|
53
53
|
|
54
54
|
|
1
コードの間違いを修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -130,7 +130,7 @@
|
|
130
130
|
|
131
131
|
bgColor = options.bgColor;
|
132
132
|
|
133
|
-
tani = options.tani;
|
133
|
+
tani = options.tani;//これを追加
|
134
134
|
|
135
135
|
meterOrientation = options.meterOrientation;
|
136
136
|
|
@@ -180,8 +180,6 @@
|
|
180
180
|
|
181
181
|
} else {
|
182
182
|
|
183
|
-
Z
|
184
|
-
|
185
183
|
$(elem).html('<div class="therm outer-therm"><div class="therm inner-therm"><span style="display:none;">' + total + '</span></div></div>');
|
186
184
|
|
187
185
|
$(elem).children('.outer-therm').attr('style','width:' + width + ';height:' + height + ';background-color:' + bgColor);
|
@@ -234,7 +232,7 @@
|
|
234
232
|
|
235
233
|
step : function() {
|
236
234
|
|
237
|
-
$(elem).children('.outer-therm').children('.inner-therm').children().text(Math.ceil(this.Counter) + tani);
|
235
|
+
$(elem).children('.outer-therm').children('.inner-therm').children().text(Math.ceil(this.Counter) + tani);//ここを変更
|
238
236
|
|
239
237
|
}
|
240
238
|
|