私はうまくいく次のものを持っています:
$(document).ready(function() {
get_data_for_chart();
function get_data_for_chart() {
$.ajax({
url: 'get_data.aspx?rand=' + Math.random(),
type: 'GET',
dataType: 'json',
error: function(xhr, status, error) {
console.log(status);
console.log(xhr.responseText);
},
success: function(results) {
var chart1;
chart1 = new Highcharts.Chart( {
chart: {
renderTo: 'portlet_content_18',
defaultSeriesType: 'column'
}
});
}
});
}
});
HTMLが次のようになっている場合:
<div id="portlet_content_18">
portlet
ユーザーは、画面上で必要なものを動的に選択できます。S / Heはportlet
、比較のために、画面に同じものを複数回表示するように選択することもできます。
したがって、HTMLが最終的に次のようになる場合:
<div id="portlet_content_18">
<div id="portlet_content_18">
最初のグラフのみがdiv
グラフに入力され、2番目のグラフは空白のままになります。この問題を回避するにはどうすればよいですか?