I m working on this AreaChart. But how come I can set area fills through CSS but not area strokes and alpha? That makes no sense!
<fx:Style>
@namespace mx "library://ns.adobe.com/flex/mx";
mx|AreaChart { chartSeriesStyles: Series1, Series2; }
.Series1 { areaFill: #999999; areaStroke: #666666; alpha: 0.8; }
.Series2 { areaFill: #cccccc; areaStroke: #999999; alpha: 0.8; }
</fx:Style>
只有在我去除地区kes和甲状腺时,才会奏效。
我看着那些从事以下工作的人:
<mx:AreaSeries ... alpha="0.8" />
但是,这并不适用于区域调查:
<mx:AreaSeries ... areaStrokes="#999999" />
我应该做些什么?
材料