How can I change the labels in the legend of a stack bar chart?
why
does not work?
Code:
clear input year industry_a industry_b 2020 120 80 2021 130 90 end graph bar industry_a industry_b, over(year) stack
Code:
legend(label(1 "a" 2 "b"))

Comment