ページの先頭にGoogleチャートを追加しました。これにより、チャートの画像が返されます。
同じページに2つ目のグラフを追加するだけです。
2番目のグラフのコードは無視されます。これは、各チャートのコードを誤って結合したことが原因であると主に考えています。
最初のチャート(線):
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Month');
data.addColumn('number', 'Apples');
data.addColumn('number', 'Oranges');
data.addRows([
['Oct 11', 20, 0],
['Nov 11', 0, 0],
['Dec 12', 0, 20],
['Jan 12', 0, 10],
['Feb 12', 0, 10],
['March 12', 10, 10]
]);
// Set chart options
var options = {'width':960,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.LineChart(document.getElementById('line_chart'));
chart.draw(data, options);
}
</script>
2番目のグラフ(円):
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
各チャートは、一意のIDを持つコンテナdivを使用して本文で呼び出されます。
<div id="chart_div"></div>
これら2つのコードブロックをつなぎ合わせるにはどうすればよいですか? drawChart()をコピーして、一意の関数名と変数を指定しようとしましたが、役に立ちませんでした。
これで実用的なソリューションが得られました。サンプルコードのどの部分を複製するのか、何を複製しないのかを識別する必要がありました(Oofpezの提案どおり)。各チャートのデータ、オプション、およびチャート変数は、1つのdrawChart()関数内で定義されます。
これが実際の例です(HTMLドキュメントにコピーして貼り付けるだけです):
...この例は、さまざまな種類のチャートを組み合わせる方法を示しています。例:円グラフと折れ線グラフ...
<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);
// Create the data table.
var data2 = new google.visualization.DataTable();
data2.addColumn('string', 'Topping');
data2.addColumn('number', 'Slices');
data2.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 15],
['Zucchini', 1],
['Pepperoni', 2]
]);
var data3 = new google.visualization.DataTable();
data3.addColumn('string', 'Year');
data3.addColumn('number', 'Sales');
data3.addColumn('number', 'Expenses');
data3.addRows([
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 860, 580],
['2007', 1030, 540]
]);
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};
// Set chart options
var options2 = {'title':'How Much Pizza You Ate Last Night',
'width':400,
'height':300};
// Set chart options
var options3 = {'title':'Line chart',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
var chart2 = new google.visualization.PieChart(document.getElementById('chart_div2'));
chart2.draw(data2, options2);
var chart3 = new google.visualization.LineChart(document.getElementById('chart_div3'));
chart3.draw(data3, options3);
}
</script>
</head>
<body>
<!--Divs that will hold the charts-->
<div id="chart_div"></div>
<div id="chart_div2"></div>
<div id="chart_div3"></div>
</body>
</html>
基本的に、パラメータdrawChart
をラップして次のように渡すことができます。
function drawChart(chartType, containerID, dataArray, options)
そして
call google.setOnLoadCallback(function() {
drawChart('barChart', 'div_id_1', test_array, null);
});
グラフを何回もレンダリングしたい:
var test_array = [
['Name', 'Count-A', 'Count-B'],
['Test-A', 4, 3],
['Test-B', 1, 2],
['Test-C', 3, 4],
['Test-D', 2, 0],
['Test-E', 2, 5]
];
google.load("visualization", "1", {packages: ["corechart",'table']});
google.setOnLoadCallback(function() {
drawChart('barChart', 'div_id_1', test_array, null);
});
google.setOnLoadCallback(function() {
drawChart('columnChart', 'div_id_2', test_array, null);
});
function drawChart(chartType, containerID, dataArray, options) {
var data = google.visualization.arrayToDataTable(dataArray);
var containerDiv = document.getElementById(containerID);
var chart = false;
if (chartType.toUpperCase() == 'BARCHART') {
chart = new google.visualization.BarChart(containerDiv);
}
else if (chartType.toUpperCase() == 'COLUMNCHART') {
chart = new google.visualization.ColumnChart(containerDiv);
}
else if (chartType.toUpperCase() == 'PIECHART') {
chart = new google.visualization.PieChart(containerDiv);
}
else if (chartType.toUpperCase() == 'TABLECHART')
{
chart = new google.visualization.Table(containerDiv);
}
if (chart == false) {
return false;
}
chart.draw(data, options);
}
Google Chartの製品版にはタイミングバグがあり、複数のグラフが同じページに読み込まれないようにします。
Googleは、フリーズバージョンローダーで利用できる最近のリリースでこれを修正しました。 https://developers.google.com/chart/interactive/docs/library_loading_enhancements#frozen-versions
@Dominorの答えに基づきますが、任意からチャートを登録する場合は、コールバック関数で次のように実行される関数スタックを作成するだけです。
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
googleChartStack = [];
function drawChart() {
for (var i = googleChartStack.length - 1; i >= 0; i--) {
googleChartStack[i]();
}
}
次に、テンプレートの他の場所で、このスタックにプッシュできます。私の例では、テンプレートスニペットを繰り返していました。
<script>
googleChartStack.Push(function() {
var data = google.visualization.arrayToDataTable([
['A', 'B'],
['A', 1],
['B', 2]
]);
var options = {
title: 'none',
legend: 'none'
};
var chart = new google.visualization.PieChart(document.getElementById("relevant-id"));
chart.draw(data, options);
})
</script>
多分あなたが指定するとき
google.setOnLoadCallback(drawChart);
2回、コールバックイベントを初めて上書きしますか?
ただの推測...
上記の回答パッケージにはパイのみが追加されます。同じページにパイと折れ線グラフを印刷するには、google.load( 'visualization'、 '1.0'、{'packages':['corechart'、 'ライン']});
完全なコード:-
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart','line']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);
// Create the data table.
var data2 = new google.visualization.DataTable();
data2.addColumn('string', 'Topping');
data2.addColumn('number', 'Slices');
data2.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 15],
['Zucchini', 1],
['Pepperoni', 2]
]);
var data3 = new google.visualization.DataTable();
data3.addColumn('string', 'Year');
data3.addColumn('number', 'Sales');
data3.addColumn('number', 'Expenses');
data3.addRows([
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 860, 580],
['2007', 1030, 540]
]);
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};
// Set chart options
var options2 = {'title':'How Much Pizza You Ate Last Night',
'width':400,
'height':300};
// Set chart options
var options3 = {'title':'Line chart',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
var chart2 = new google.visualization.PieChart(document.getElementById('chart_div2'));
chart2.draw(data2, options2);
var chart3 = new google.visualization.LineChart(document.getElementById('chart_div3'));
chart3.draw(data3, options3);
}
</script>
</head>
<body>
<!--Divs that will hold the charts-->
<div id="chart_div"></div>
<div id="chart_div2"></div>
<div id="chart_div3"></div>
</body>
</html>
あなたがしたいことは、各チャートの機能を持っていることです。それから
google.setOnLoadCallback(initialize);
そして、initializeが各関数を呼び出してチャートを作成します。 1つの関数で複数のグラフを描画するよりも、ずっときれいです。また、デバッグにも役立ちます。
step_1。(id curve_chartを別の名前に変更します(例:ajay))
<body>
<div id="ajay" style="width: 900px; height: 500px"></div>
step_2。(このidをスクリプト要素でチャートに割り当てます)。
var chart = new google.visualization.LineChart(document.getElementById('ajay'));
chart.draw(data, options);
}
</script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1.1", {packages:["bar"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Day/Month', 'Sales', 'Goal'],
['Daily', 33549.17,47328.04],
['M-T-D', 96114.18,141984.12]
]);
var data1 = google.visualization.arrayToDataTable([
['Day/Month', 'Bookings', 'Goal'],
['Daily', 37991.21,47659.09],
['M-T-D', 95610.47,142977.27]
]);
var options = {
colors: ['#e0aa0e', '#ecbb6e','green'],
width: 800,
chart: {
title: 'Test Company Sales',
subtitle: 'Sales vs Goal',
}
};
var options1 = {
colors: ['#e0440e', '#ec8f6e','green'],
width: 800,
chart: {
title: 'Test Company Bookings',
subtitle: 'Bookings',
}
};
var chart = new google.charts.Bar(document.getElementById('sales'));
chart.draw(data, options);
var chart2 = new google.charts.Bar(document.getElementById('bookings'));
chart2.draw(data1, options1);
}
</script>
<div style="display: table; width: 100%;">
<div style="display: table-row">
<div id="sales" style="width: 900px; height: 500px; display: table-cell;"></div>
<div id="bookings" style="width: 900px; height: 500px; display: table-cell;"></div>
</div>
</div>