<!--columnchart的动态效果样式,还有线条的样式-->
<fx:Declarations>
??<!-- 将非可视元素(例如服务、值对象)放在此处 -->
??<mx:WipeUp id="wipeUp" duration="1000"/>
??<mx:WipeRight id="wipeIn" duration="1000"/>
??<mx:SolidColorStroke id = "s1" color="haloGreen" weight="3" alpha="0.6"/>
<mx:SolidColorStroke id="chartAxisStroke" scaleMode="normal" weight="2" pixelHinting="true" miterLimit="0"?
??????? joints="round" caps="round" color="#000000" alpha="1.0"/>
??<mx:SolidColorStroke id="chartAxisStrokeThick" scaleMode="normal" miterLimit="0" joints="round"?
??????? caps="round" color="#000000" weight="2" alpha="1.0"/>??
?? <!-- 定制坐标轴样式. color:uint (default = 0x000000) — 指定线条颜色。默认值为 0x000000(黑色)。??
??weight:Number (default = 0) — 指定线条的粗细(以像素为单位)。默认值为 0。??
??alpha:Number (default = 1.0) — 指定 alpha 值,介于 0.0 到 1.0 之间。默认值为 1.0(不透明)。??
??pixelHinting:Boolean (default = false) — 指定是否提示笔触采用完整像素。此值同时影响曲线锚点
??的位置以及线条笔触大小本身。默认值为 false。??
??scaleMode:String (default = "normal") — LineScaleMode 类中的一个值,指定要使用的缩放模式。有效值为?
??LineScaleMode.HORIZONTAL、LineScaleMode.NONE、LineScaleMode.NORMAL 和 LineScaleMode.VERTICAL。
??此参数是可选的,默认值为 LineScaleMode.NORMAL。??
??caps:String (default = null) — 指定线条末端处端点类型。有效值为 "round"、"square" 和 "none"。默认值为 null。??
??joints:String (default = null) — 指定用于拐角的连接外观的类型。有效值为 "round"、"miter" 和 "bevel"。默认值为 null。??
??miterLimit:Number (default = 0) — 指示将在哪个限制位置切断尖角。有效值范围是 0 到 255。默认值为 0。?
??-->
?</fx:Declarations>
<!---columnchart的文本样式--->
??<fx:Style>
??@namespace s "library://ns.adobe.com/flex/spark";
??@namespace mx "library://ns.adobe.com/flex/mx";
??.ColumnChart
??{??
???axis-title-style-name:brownTitles;
??}
??.brownTitles
??{???
???font-size:12;
???color:#000000;
??}
??.Canvas {
???font-size:12;
??}
??.ChineseFont{
???fontSize:12;
???fontWeight:normal;
??}
?</fx:Style>
<!----------------------------------------------------------------->