Comment obtenir la ligne vaxis dans le diagramme des colonnes du graphique google api?

J'utilise le tableau des colonnes du paquet corechart dans le tableau google api. Dans ce tableau, j'ai besoin d'une ligne d'axe vertical (ligne yaxis). Comment obtenir une ligne d'axe vertical dans columnchart.

J'ai référé à ce lien pour créer ce graphique

Réel

Entrez la description de l'image ici

Attendu

Entrez la description de l'image ici

Configurez le numéro de l'axe Y non String.

Voici le code: Copiez et collez ceci est Google Code Playground.

function drawVisualization() { // Create and populate the data table. var data = google.visualization.arrayToDataTable([ ['Year', 'Austria', 'Bulgaria' ], [12, 133, 400], [21, 153, 366], [20, 155, 240], [27, 160, 134], [10, 196, 393], [8, 190, 232] ]); // Create and draw the visualization. new google.visualization.ColumnChart(document.getElementById('visualization')). draw(data, {title:"Yearly Coffee Consumption by Country", width:600, height:400, vAxis: {title: "Year",ticks: [{v:100, f:"100$"},{v:150, f:"150$"},{v:200, f:"200$"},{v:300, f:"300$"}]}, hAxis: {title: "Cups",ticks: [{v:4, f:"3-4"},{v:8, f:"5-9"},{v:10, f:"9-13"},{v:14, f:"13-14"},{v:20, f:"15-20"}]} } ); }