我需要相當於chls屬性才能使用JavaScript API繪製虛線折線圖,如chls
參數在常規Google圖表API中所做的操作。我試過given tricks here,但它對我不起作用。谷歌圖表JS API中虛線的chls屬性的等效值是什麼?
這是我的實際代碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://www.google.com/jsapi"></script>
<script>
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', "Nombre d'exécution du programme");
data.addColumn('number', 'Création du graphe pour 10 exécutions');
data.addColumn('number', 'Resolution de Dijkstra pour 10 exécutions');
data.addColumn('number', 'Création du graphe pour 100 exécutions');
data.addColumn('number', 'Resolution de Dijkstra pour 100 exécutions');
data.addColumn('number', 'Création du graphe pour 1000 exécutions');
data.addColumn('number', 'Resolution de Dijkstra pour 1000 exécutions');
data.addColumn('number', 'Création du graphe pour 10000 exécutions');
data.addColumn('number', 'Resolution de Dijkstra pour 10000 exécutions');
data.addColumn('number', 'Création du graphe pour 100000 exécutions');
data.addColumn('number', 'Resolution de Dijkstra pour 100000 exécutions');
data.addRows([
['1', // Nombre de tests
911.111111111111, 981.507773124157, // 10 exécutions
5916.34265646557, 8652.74074074074, // 100
15873.293352048, 38374.6331504402, // 1000
20583.9468919734, 54833.2671045558, // 10000
21731.123388582, 62344.9206884914, // 100000
],
['10',
660.045054269916, 873.872505846266, // 10
1479.11974962178, 3809.3591031963, // 100
2365.02966174325, 5291.4404255426, // 1000
2489.9768981046, 6026.41413062173, // 10000
74966.0679996439, 6855.2716011857, // 100000
],
['100',
257.002598902686, 449.898770994325, // 10
1117.85291997813, 664.696852512432, // 100
411.255444801189, 706.801182419083, // 1000
502.157411124161, 4589.16141015407, // 10000
8347.894845246, 5269.57442418582, // 100000
],
['1000',
147.489910803794, 154.020514119286, // 10
146.285394503668, 165.264695318371, // 100
178.955165911359, 534.771450920607, //1000
895.70893745921, 690.426997324878, // 10000
1436.27709770908, 1631.77983702272, // 100000
],
['10000',
104.714581363082, 106.393139452612, // 10
112.895078296546, 109.63484225748, // 100
233.803672029444, 246.491106857861, //1000
506.280370709875, 232.445295937225, // 10000
570.571422701139, 412.694573393414, // 100000
]
]);
var options = {
width: "100%", height: "1000",
title: 'C# - TEMPS MAXIMUM',
colors: [
'#2A00FF', '#2A00FF',
'#2BFF00', '#2BFF00',
'#FFEA00', '#FFEA00',
'#FF8C1A', '#FF8C1A',
'#FF0000', '#FF0000',
'#B30000', '#B30000'
],
vAxis: {
title: '% par rapport à la moyenne',
viewWindowMode: 'explicit',
viewWindow: {
//max: 8000,
min: 100,
},
gridlines: {
count: 18,
}
},
hAxis: {
title: "Nombre de résolution d'algorithme Dijkstra (avec création du graphe)",
},
series: {0:{lineWidth: '1'}, 1:{lineWidth: '2'},
2:{lineWidth: '1'}, 3:{lineWidth: '2'},
4:{lineWidth: '1'}, 5:{lineWidth: '2'},
6:{lineWidth: '1'}, 7:{lineWidth: '2'},
8:{lineWidth: '1'}, 9:{lineWidth: '2'},
10:{lineWidth: '1'}, 11:{lineWidth: '2'}
}
};
var chart = new google.visualization.LineChart(document.getElementById('average'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="average"></div>
</body>
</html>
您的代碼提供了以下錯誤(見http://jsfiddle.net/ZZ25U/):未捕獲的錯誤:「格式+連接,默認情況下,corechart.I.js: 54Uncaught錯誤:給出的行大小不等於10(表中的列數)。「 – graphicdivine 2012-02-19 17:01:57
對不起,我刪除了一行...請參閱編輯,謝謝。新增了'data.addColumn('string',「Nombre d'exécutiondu program」);'第一。 – 2012-02-19 17:11:10