- 浏览: 5601 次
- 性别:
- 来自: 成都
最新评论
文章列表
重点说明:
1.要实现LineChart、ColumnChart横坐标纵向显示,首先要在flex的主应用程序(<mx:Application></mx:Application>)里定义样式:
<mx:Style>
@font-face{
src:local("Arial");
fontFamily:ArialEmbedded;//字体别名
}
</mx:Style>
2.在图形界面定义样式:
<mx:Style>
.myChar ...
以下是我最近做flex组件编程时的总结,是主要针对lineChart的,其中某些属性对同是有横纵坐标的columnChart、barChart等都有效,比如对背景的网格线、横纵坐标线条的粗细颜色和标签的设置都有效。
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
backgroundGradientC ...
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:ilog="http://www.ilog.com/2007/ilog/flex" width="100%" height="100%" creationComplete="init()">
<mx:Script>
&l ...