I'm using Google line chart. I want to change the graph color change by the vAxis tick variation. For example...
case 1 : 0 <= value <= 20 , color : blue(Of course RGB code will input)
case 1 : 20 <= value <= 40 , color : green
case 1 : 40 <= value <= 60 , color : yellow
case 1 : 60 <= value <= 80 , color : orange
case 1 : 80 <= value <= 100 , color : red
I'm using Google line chart. I want to change the graph color change by the vAxis tick variation. For example...
case 1
:0 <= value <= 20
, color : blue(Of course RGB code will input)case 1
:20 <= value <= 40
, color : greencase 1
:40 <= value <= 60
, color : yellowcase 1
:60 <= value <= 80
, color : orangecase 1
:80 <= value <= 100
, color : redI think there will be option about ticks may helpful for me and wrote the code like this, but it doesn't work.
data form is ["timeseries", "value"]. Is there any option can help me? Or, should I use another chart library?