Hi Teng,

If I understand correctly, you just want to turn off the entire green area,
and effectively just have the green line? If that's correct, you can just
set the areaOpacity option of your series to be 0. So if the green series
is the first series in your chart, your options might look like this:
var options = {
  // some stuff might go here
  series: {
    0: { areaOpacity: 0 }
  }
  // some other stuff might go here
}

On Thu Dec 11 2014 at 11:28:04 AM Teng Choon <[email protected]> wrote:

> Hey guys,
>
> Was wondering if there is a way to turn of certain part of highlighted
> region such as the green area below the graph
>
> I use:
>
> chart = new
> google.visualization.AreaChart(document.getElementById('chart_div'));
>
>
> It magically highlights everything, now I need a magic code to stop some
> of its magic.
>
>
>
> <https://lh6.googleusercontent.com/-VxkXF-EJp00/VInB0YFbsxI/AAAAAAAAAr8/zC08cI28PZ0/s1600/End%2Bresult.png>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Chart 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-chart-api.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart 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-chart-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to