My example:
Two series A and B can be pictured by a stacked bar chart, but the total level varies over time and do not sum up to 100% (to 1). In a multiple step procedure I got the favoured results but I guess that there is a simple command.
Do you have suggestions?
The pedestrian version as follows:
Code: Select all
genr total=a+b
genr s_a=a/total
genr s_b=b/total
graph weight.bar(s) s_a s_b
[quote]