OK, thanks for the direction this far.
I have code to generate the two files attached. Now I'd like the table to
appear below the chart in the same page. Obviously, I can take the code to
generate the chart then append the code to generate the table, but I'm
guessing I need to include something to specify the division.
I can work out all of the formatting, but would appreciate just this little
bit more direction. What tags do I need between the chart and the table?
On Tuesday, August 21, 2018 at 10:42:19 PM UTC-4, Ray Thomas wrote:
> A table in Google Charts is drawn in the same way as a graph and can use
> the same data.
>
> Create divs to hold the graph and the table then simply draw them both in
> nearly the same way.
>
> two divs - chart_div and table_div
> 1 data table - data
>
> Draw the chart and table:
>
> var chart = new
> google.visualization.LineChart(document.getElementById("chart_div"));
> chart.draw(data);
> var table = new
> google.visualization.Table(document.getElementById("table_div"));
> table.draw(data);
>
>
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-visualization-api/7e127f0f-03a7-44d9-af29-7a758651154d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.