我在绘制双Y轴面积图时遇到问题。
这里是小提琴
https://jsfiddle.net/nehadhiman6/30bxL2me/2/
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Age', 'Weight','z-score'],
[ 8, 12 , 12],
[ 4, 5.5, 5],
[ 11, 14, 9],
[ 4, 5, 3],
[ 3, 3.5, 8],
[ 6.5, 7, 9]
]);
var options = {
title: 'Age vs. Weight comparison',
hAxis: {title: 'Age', minValue: 0, maxValue: 15},
vAxis: {title: 'Weight', minValue: 0, maxValue: 15},
legend: 'none',
};
我在绘制双Y轴面积图时面临问题。我需要绘制类似于以下内容的图表:这是小提琴https://jsfiddle.net/nehadhiman6/30bxL2me/2/函数drawChart(){var ...