I have a problem which I believe is similar to another recent post.
I am using the stackedcolumn type. I want to define a green, yellow, and red set of areas and then plot a line on top of it.
Here’s a sample of the green, yellow, and red stackedcolumn data…
var sampleData = [
{ FiscalWeek: ‘W1550’, Green: 80, Yellow: 10, Red: 10, Goal: 86 }
];
I only want to see 50-100, so I set these min/max values..
minValue: 50,
maxValue: 100,
The problem is, it won’t display the Yellow, or Red, since it isn’t “above 50”.
How can I get it to display a stacked chart, with ranges of 50-100, and have all three colors appear?
Thanks,
Roy