Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
円グラフに動的な値を含めるにはどうすればよいですか?
つまり、「重工業」12 などを動的に設定したいと考えています。
あなたの質問を正しく理解できていません。ただし、データ配列を動的に作成する必要があるだけです。
var data= new Array(); for(var elem in tab) data.push([elem.key,elem.value]); //assuming tab is an array filled with object with attributes key and value
その後
jQuery.jqplot("chartname",[data]....