Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Chart: add vertical line on every monday

I need to add one vertical line on google chart marking monday. as shown in picture. enter image description here

all of other things has been done.. but couldn't figure out how to put vertical line marking every monday. I found this

hAxis: {
            ticks: ""
        },

functionality in google chart use i can make user of.. but couldn't figure out how do i use it for every monday....

like image 278
user98239820 Avatar asked Dec 12 '25 01:12

user98239820


1 Answers

Use This in data:

 data.addColumn({type: 'string', role: 'annotation'});

And this in options:

annotations: {
        style: 'line'
    }

See: http://jsfiddle.net/NC37X/

like image 66
Marcio Dias Avatar answered Dec 14 '25 01:12

Marcio Dias