I am trying to create a vertical trend zone (which from what I understand is not an option with a combination graph), by using the canvas gradient function. I am just trying to intersect the graph in the middle and it does not seem to be working correctly if you look at where the background changes colors it does not line up in the middle, or with the line data anchor. What am I doing wrong?
Code:
<chart showValues='0' caption= 'Scenarios' canvasbgratio='0,50,0,50' canvasbgcolor='fffffff,ffffff,000000,000000' canvasbgAngle='0' plotSpacePercent='20' setAdaptiveYMin='1' PYAxisName='Mkt.Value' showlegend='0' SYAxisName='WAL' divLineColor='E5E5E5' numberPrefix='$' showBorder='0' bgcolor="FFFFFF">
<categories>
<category label='-100' />
<category label='Base' />
<category label='+100' />
<category label='+200' />
<category label='+200' />
</categories>
<dataset seriesName='Mkt. Value' color = 'C22D2D'>
<set value='121347586' />
<set value='118457522' />
<set value='112199609' />
<set value='104916190' />
<set value='104916190' />
</dataset>
<dataset seriesName='WAL' color = '000000' parentYAxis='S' lineThickness='2'>
<set value='2.25' />
<set value='2.95' />
<set value='6.12' />
<set value='7.88' />
<set value='7.88' />
</dataset>
</chart>