Displaying 1 result from an estimated 1 matches for "00fe00".
Did you mean:
0c0fe00
2007 Aug 25
3
fill circles
...and the colors too.
I did it manually using a script like that:
color[(x>=0.001)&(x<0.002)]<-"#41FF41"
color[(x>=0.002)&(x<0.003)]<-"#2BFF2B"
color[(x>=0.003)&(x<0.004)]<-"#09FF09"
color[(x>=0.004)&(x<0.005)]<-"#00FE00"
color[(x>=0.005)&(x<0.006)]<-"#00F700"
color[(x>=0.006)&(x<0.007)]<-"#00E400"
color[(x>=0.007)&(x<0.008)]<-"#00D600"
color[(x>=0.008)&(x<0.009)]<-"#00C300" and so on but I don't like to do it
manua...