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

推荐订阅源

P
Privacy & Cybersecurity Law Blog
V
V2EX
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Register - Security
The Register - Security
MongoDB | Blog
MongoDB | Blog
P
Privacy International News Feed
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
K
Kaspersky official blog
S
Secure Thoughts
T
Tenable Blog
Security Latest
Security Latest
The Cloudflare Blog
S
Security @ Cisco Blogs
H
Heimdal Security Blog
aimingoo的专栏
aimingoo的专栏
TaoSecurity Blog
TaoSecurity Blog
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
Schneier on Security
Schneier on Security
Webroot Blog
Webroot Blog
G
Google Developers Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Scott Helme
Scott Helme
IT之家
IT之家
Latest news
Latest news
The Hacker News
The Hacker News
C
Check Point Blog
T
The Exploit Database - CXSecurity.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯CDC
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
N
News | PayPal Newsroom
Forbes - Security
Forbes - Security
P
Palo Alto Networks Blog
S
Security Affairs
S
Securelist
Google Online Security Blog
Google Online Security Blog
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
C
Cybersecurity and Infrastructure Security Agency CISA
A
About on SuperTechFans

博客园 - 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>