amChart for Flex 破解

来源:互联网 发布:淘宝台服战网点 编辑:程序博客网 时间:2024/04/30 18:29

1.amChart for flex 官网地址http://flex.amcharts.com

2.amChart 收费问题:

Q: Can I use amCharts Flex components for free?
A: Yes, the only limitation of the free version is that a small link to this web site will be displayed in the top left corner of your charts.

Q: Will I be able to use these components without a link to this web site after I buy a license?
A: Yes, the link is displayed only in free versions of amCharts.

Q: Will I receive the source code if I purchase a commercial license?
A: The source codes are provided for OEM license buyers.

Q: What are the main rules for the usage of the sources?
A:
1) You can't distribute sources or make them publicly available in any way.
2) You can use sources to create modifications of the products, but not to create new products and distribute them.
3) The sources are provided as they are, without any guarantee that you will understand them.
4) No free support on the topics about sources is provided.

从官网上的介绍可以看出,该组件是免费的,但是在报表的左上角会有一个  chart by amChar.com 的链接。不过这个链接的地址是可以去掉的微笑,参考如下步骤。

 

3.amChart去掉链接


   以柱状图  <amcharts:AmSerialChart></amcharts:AmSerialChart>为例。

   1.创建类Amcharts1继承 AmSerialChart

 

[plain] view plaincopyprint?
  1. public class Amcharts1 extends AmSerialChart  
  2. {  
  3.  public function Amcharts1()  
  4.  {  
  5.   super();  
  6.   
  7.  }  
  8.    
  9.    
  10.  override protected function createChildren():void{  
  11.   super.createChildren();  
  12.   if(_amchartsLink){  
  13.    _amchartsLink.alpha=0;  
  14.    _amchartsLink.width=0;  
  15.    _amchartsLink.height=0;  
  16.   }  
  17.   return;  
  18.  }  
  19. }  


  2.使用Amcharts1

[plain] view plaincopyprint?
  1. <mx:VBox width="100%" height="100%">  
  2.     <amcharts:AmSerialChart>  
  3.           
  4.     </amcharts:AmSerialChart>  
  5.       
  6.         <amcharts1:Amcharts1  
  7.         width="100%"  
  8.         height="100%"   
  9.         id="chart"   
  10.         marginTop="15"   
  11.         marginLeft="40"   
  12.         marginRight="20"   
  13.         dataProvider="{chartData}"   
  14.         categoryField="year"   
  15.         startDuration="1"   
  16.         angle="30"   
  17.         depth3D="30">  
  18.           
  19.         <amcharts1:graphs>  
  20.               
  21.             <amcharts:AmGraph title="Income" id="g0" valueField="income" type="column" lineAlpha="0" fillAlphas="[1]"/>                         
  22.             <amcharts:AmGraph title="Expenses" id="g1" valueField="expenses" type="line" lineThickness="2" bullet="round"/>                         
  23.         </amcharts1:graphs>  
  24.     </amcharts1:Amcharts1>  
  25.     <!-- You can position the Legend anywhere you want. Use Flex layout components to do this.  
  26.     For example, if you'd like to have your legend on the left or on the right, you should use HBox instead of VBox -->  
  27.     <amcharts:AmLegend dataProvider="{chart}" width="100%" marginRight="20" marginLeft="40" textClickEnabled="false" marginBottom="15"/>                    
  28.         </mx:VBox>  


3.到此为止,运行应用程序,就可以实现链接去除的目的。

 

原创粉丝点击