Yes.  You can use either an 
AreaChart<https://developers.google.com/chart/interactive/docs/gallery/areachart>,
 
and set the areaOpacity of one of the data series to 0 (fully transparent):

series: {
    1: {
        // set the second series' area to be fully transparent
        areaOpacity: 0
    }
}

or you can use a 
ComboChart<https://developers.google.com/chart/interactive/docs/gallery/combochart>,
 
and set one series to type "line" and the other series to type "area":

series: {
    0: {
        // set the first series to be type "area"
        type: 'area'
    },
    1: {
        // set the second series to be type "line"
        type: 'line'
    }
}

On Wednesday, August 14, 2013 3:28:13 PM UTC-4, TheInnovator wrote:
>
> Hello All,
>
> Is it possible to have a chart that is a combination of the line and area 
> chart?
> Thanks!
>
> -Isaac-
>

-- 
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