惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
T
Threatpost
Latest news
Latest news
N
News | PayPal Newsroom
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
AI
AI
Simon Willison's Weblog
Simon Willison's Weblog
TaoSecurity Blog
TaoSecurity Blog
The Last Watchdog
The Last Watchdog
L
LINUX DO - 热门话题
Google DeepMind News
Google DeepMind News
T
Threat Research - Cisco Blogs
O
OpenAI News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Exploit Database - CXSecurity.com
NISL@THU
NISL@THU
Application and Cybersecurity Blog
Application and Cybersecurity Blog
S
Securelist
小众软件
小众软件
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
Cisco Talos Blog
Cisco Talos Blog
云风的 BLOG
云风的 BLOG
AWS News Blog
AWS News Blog
GbyAI
GbyAI
N
News and Events Feed by Topic
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
美团技术团队
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
S
Schneier on Security
博客园 - 聂微东
V2EX - 技术
V2EX - 技术
T
Troy Hunt's Blog
SecWiki News
SecWiki News
S
Secure Thoughts
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
腾讯CDC
H
Heimdal Security Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed

博客园 - LutzMark

charles4抓https请求的注意事项,补充iphone7(ios10系统)无法解密ssl问题 XCode设置自己windows习惯的快捷键(比如Home、End键) MVC项目中ExecutionTimeout不生效的解决方案 Delegate与Event的区别 坑爹的MSN登录错误80072745 Linq的sum函数InvalidOperationException异常解决办法 LINQ to SQL自定义映射表关系(1:N or 1:1) LINQ to SQL 外键约束的插入及获取主表标识列等问题 Flex中的 for in 与 for each in - LutzMark Flex的DataGrid将水平分隔线设为虚线 - LutzMark - 博客园 解决Flex的DataGrid控件中ItemRender随Scrollbar的滚动发生UI重绘问题 - LutzMark - 博客园 IIS7中配置WebOrb支持RTMPT 使用DataAdpater自动批量更新DataSet中的数据到数据库 委托的Invoke 和 BeginInvoke 与Control的Invoke和BeginInvoke(转-因为写得很好) 控制台测试异步委托 一篇好文,以在迷茫时阅读 驳《IT开发工程师的悲哀》 钢板与表针 不用临时变量,只用11个字符交换两个变量的值——窥视C#编译原理的冰山一角
去除ColumnChart自带的阴影效果 - LutzMark - 博客园
LutzMark · 2010-02-05 · via 博客园 - LutzMark

默认的ColumnChart总会给列添加阴影效果

去除阴影:

<mx:ColumnChart x="30"
     y="29"
     width="710"
     height="393"
     dataProvider="{chartDP}"
     horizontalAxisRatio="3"
     fontFamily="Arial"
     fontWeight="bold"
     id="chartPageStatus"
     columnWidthRatio="0.5"
     showDataTips="true"
     dataTipFunction="col_dataTipFunction"
     seriesFilters="{null}" <!--去除阴影 or   seriesFilters="{[]}" -->
     itemClick="onClick(event)"
     creationComplete="chartinit(event)">
  <mx:verticalAxis>
   <!--<mx:CategoryAxis dataProvider="{chartDP}"/>-->
   <mx:LinearAxis interval="1"
         maximum="4"
         labelFunction="{verticalFormater}"
         baseAtZero="true"/>
  </mx:verticalAxis>
  <mx:horizontalAxis>
   <mx:LinearAxis interval="1"
         maximum="20"
         labelFunction="{horizontalFormater}"
         minorInterval="200"
         padding="0.5"
         id="h_axis"/>
  </mx:horizontalAxis>
  <mx:series>
   <mx:ColumnSeries displayName="page"
        id="col">
    <mx:fill>
     <mx:SolidColor color="#DCDCDE"/>
    </mx:fill>

   </mx:ColumnSeries>

  </mx:series>
 </mx:ColumnChart>