The "series" option takes an object with properties that are the indicies 
of the data series (these are the series indicies, not the indicies in the 
DataTable, which is a common mistake to make).  If your first data series 
is the bars and the second is the line, then the series option would look 
like this:

series: {
    0: {
         // first series
         seriesType: 'bars'
    },
    1: {
         // second series
         seriesType: 'line'
    }
}

On Monday, January 6, 2014 4:36:14 PM UTC-5, Jolene Oropilla wrote:
>
> asgallant,
>
> Thanks, that helped immensely. I decided to follow your latter example 
> (combining the queries and using the view parameter). I've changed the 
> barchart to a combochart with columns.
>
> Follow-up question:
>
>    1. In the combochart, I'd like to display the "Total %..." data as a 
>    line. I've edited the code as I understand it, but the data still appears 
>    as a column. Can you explain to me how to create "series" with my data? I 
>    feel like that's my issue-I'm indicating the incorrect series to change as 
>    a line chart.
>
> Again, thanks for the help. The community is slowly but surely helping me 
> understand the code composition of the Google Visualization API.
>

-- 
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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to