I have a (sorted) bar graph and would like one of the bars to be of a different colour. After searching and reading, I have the impression that it is not possible. For instance, in the example below, is it possible to have the bar for EU27 in red?
input str4 country rp
"HU" .63
"IE" .73
"EU27" .21 .
"PO" .03
"FI" .18
end
graph bar rp, over(country, sort(1) reverse label(angle(vertical))) blabel(total) ytitle("") bar(1, color(navy))
Eric de Souza
input str4 country rp
"HU" .63
"IE" .73
"EU27" .21 .
"PO" .03
"FI" .18
end
graph bar rp, over(country, sort(1) reverse label(angle(vertical))) blabel(total) ytitle("") bar(1, color(navy))
Eric de Souza
Comment