[visualization-api] Re: GeoCharts at US County Level

2018-04-12 Thread Heywood Buzzfuddle
99 percent of the posts here are never answered. Useless place. On Wednesday, March 28, 2018 at 12:49:28 PM UTC-5, Heywood Buzzfuddle wrote: > > I have looked through here and searched the Web, but most everything I see > is old. > > What I want to do is make a GeoChart at t

[visualization-api] GeoCharts at US County Level

2018-03-28 Thread Heywood Buzzfuddle
I have looked through here and searched the Web, but most everything I see is old. What I want to do is make a GeoChart at the county level. I can make US charts just fine function drawRegionsMap() { etc var options = { region: 'US', resolution: 'provinces'}; Is there a way to do

[visualization-api] Cannot make a percent stacked bar chart

2019-03-13 Thread Heywood Buzzfuddle
I want to make a percent stacked bar chart. isStacked: true, will stack the bars for sure but isStacked: 'percent', does nothing. The vAxis and legend options appear to do nothing as well. Am I mixing material and classic? Am I doing something wrong? Is this a

Re: [visualization-api] Cannot make a percent stacked bar chart

2019-03-13 Thread Heywood Buzzfuddle
If I do chart.draw(data, google.charts.BarChart.convertOptions(options)); or chart.draw(data, google.charts.ColumnChart.convertOptions(options)); it doesn't render. The only place i see google.visualization in my code anywhere is google.visualization.arrayToDataTable Am I supposed to somehow

Re: [visualization-api] Cannot make a percent stacked bar chart

2019-03-13 Thread Heywood Buzzfuddle
your google.load() call to load the 'corechart' > package, and then google.visualization.ColumnChart will be defined. See > documentation here: > https://developers.google.com/chart/interactive/docs/gallery/columnchart#stacked-column-charts > > On Wed, Mar 13, 2019 at 1:22 PM Hey

Re: [visualization-api] Cannot make a percent stacked bar chart

2019-03-13 Thread Heywood Buzzfuddle
On Wednesday, March 13, 2019 at 2:06:21 PM UTC-5, Daniel LaLiberte wrote: > > > You need to replace > > var chart = new google.charts.ColumnChart(document.getElementById(' > columnchart_material')); > > with > > var chart = new google.visualization.ColumnChart( >

[visualization-api] Re: Clickable pie chart

2019-03-13 Thread Heywood Buzzfuddle
I would guess that deep in the Java Script there is something that a tool tip attaches to which represents a slice of a par or a segment of a bar or whatever. It is probably possible to write a script that would load a div on mouseover of that item if you knew what it was called in the DOM.

[visualization-api] Re: Populating Data Using Server-Side Code : missing MySQL example

2019-03-13 Thread Heywood Buzzfuddle
On Saturday, February 9, 2019 at 1:01:49 PM UTC-6, Proraso wrote: > > I'm trying to create a *Google Line Chart* with *data from MySQL* and > found this documentation: > "Populating Data Using Server-Side Code" ( > https://developers.google.com/chart/interactive/docs/php_example) > > The