This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var linesVisualization; | |
function drawVisualization() { | |
// Create and populate the data table. | |
var data = google.visualization.arrayToDataTable([ | |
['x', 'Cats', 'Blanket 1', 'Blanket 2'], | |
['A', 1, 1, 0.5], | |
['B', 2, 0.5, 1], | |
['C', 4, 1, 0.5], | |
['D', 8, 0.5, 1], |
NewerOlder