こういうアウトプットがしたかった
var s1 = [['Sony',7],['Samsung',5],['LG',8]];
それを使用してグラフを変数として渡すことができるように
私のajaxの結果から
success: function(data){
//code to extract the data value here
var s1= need to create the data here
$.jqplot('chart',[s1],{ blah blah blah
}
成功関数の「データ」は、このテーブル レイアウトを返します
<table id="tblResult">
<tr class="tblRows">
<td class="clsPhone">Sony</td><td class="clsRating">7</td>
</tr>
<tr class="tblRows">
<td class="clsPhone">Samsung</td><td class="clsRating">5</td>
</tr>
<tr class="tblRows">
<td class="clsPhone">LG</td><td class="clsRating">8</td>
</tr>
</table>
これのロジックを作成するのを手伝ってもらえますか?
前もって感謝します
編集: 次のような解決策を探しています:
var s1;
$(".tblRows").each(function(){
// here I don't know exactly on what to do
//s1.push($(".clsPhone").text(),$(".clsRating").text()));
});
// all I wanted is to make the resul s1=[['Sony',7],['Samsung',5],['LG',8]];
jqplot はこの種のパラメーターを必要とするため
s1=[['Sony',7],['Samsung',5],['LG',8]];
$.jqplot('chart',[s1],{
renderer:$.jqplot.PieRenderer,
rendererOptions:{
showDataLabels:true,
dataLabelThreshold:1
}
}
});
データから変数 s1 の値を作成する方法を探していますが、これは可能でしょうか?