Código Javascript:
Ver original
function drawVisualization() { // Create a data table with nodes. nodesTable = new google.visualization.DataTable(); nodesTable.addColumn('number', 'id'); nodesTable.addColumn('string', 'text'); // optional nodesTable.addColumn('string', 'image'); // optional nodesTable.addColumn('string', 'style'); // optional // Create a data table with links. linksTable = new google.visualization.DataTable(); linksTable.addColumn('number', 'from'); linksTable.addColumn('number', 'to'); linksTable.addColumn('string', 'style'); linksTable.addColumn('string', 'color'); linksTable.addColumn('number', 'width'); nodesTable.addRow([1, '1', DIR + 'Network-Pipe-icon.png', 'image']); nodesTable.addRow([2, '2', DIR + 'Network-Pipe-icon.png', 'image']); nodesTable.addRow([9, 'Manizales-44', DIR + 'Hardware-My-Computer-3-icon.png', 'image']); nodesTable.addRow([10, 'Manizales-45', DIR + 'Hardware-My-Computer-3-icon.png', 'image']); linksTable.addRow([1, 2, '', undefined, 2]); linksTable.addRow([2, 3, '', undefined, 2]);
es posible realizar el grafico dinamicante osea realizando una consulta a una base de datos y despues pasarlo a javascript ?