本人网上查找了很多资料,其中大部分都是关于Flash中的动画效果问题,与这里的问题关系型不太大。故把问题的解决方法写在这里,与人方便,与己方便。

方法一:

1.在自定义的widget中添加如下两个方法:

private function copyStyleFromParent(selector:String):void

{

var chartBaseStyle:CSSStyleDeclaration = styleManager.getStyleDeclaration(selector);

if (!chartBaseStyle && styleManager.parent)

{

var parentStyle:CSSStyleDeclaration = styleManager.parent.getStyleDeclaration(selector);

if (parentStyle)

{

styleManager.setStyleDeclaration(selector, parentStyle, false);

}

}

}

protected function preinitializeHandler ():void

{

var styleObjects:Array =new Array();//FlexGlobals.topLevelApplication.styleManager.selectors;

styleObjects.push( "mx.charts.chartClasses.ChartBase" );

styleObjects.push( "mx.charts.chartClasses.CartesianChart" );

styleObjects.push( "mx.charts.chartClasses.PolarChart" );

styleObjects.push( "mx.charts.BarChart");

styleObjects.push( "mx.charts.ColumnChart" );

styleObjects.push( "mx.charts.LineChart");

styleObjects.push( "mx.charts.PieChart");

styleObjects.push( "mx.charts.AxisRenderer" );

styleObjects.push( ".blockCategoryAxis");

styleObjects.push( ".blockNumericAxis");

styleObjects.push( ".linedNumericAxis");

styleObjects.push( ".dashedNumericAxis");

styleObjects.push( ".dashedCategoryAxis");

styleObjects.push( ".hangingCategoryAxis");

styleObjects.push( "mx.charts.GridLines");

styleObjects.push( ".horizontalGridLines");

styleObjects.push( "mx.charts.series.BarSeries" );

styleObjects.push( "mx.charts.series.ColumnSeries" );

styleObjects.push( "mx.charts.series.LineSeries" );

styleObjects.push( "mx.charts.series.PieSeries" );

for each(var styleObj:String in styleObjects) {

                             

copyStyleFromParent(styleObj);

}

}

  2.在该自定义widget头部中添加preinitialize="preinitializeHandler ()" 。

方法二:

在自定义widget中覆盖父类的moduleFactory方法:

  override public function get moduleFactory():IFlexModuleFactory {

    return FlexGlobals.topLevelApplication.moduleFactory;

  }

在自定义的widget中引入图表后,运行时出现TypeError #1009错误的更多相关文章

  1. 报错:此版本的SQL Server Data Tools与此计算机中安装的数据库运行时组件不兼容

    在Visual Studio 2012中使用Entity Framework,根据模型生成数据库时,报如下错误: 无法在自定义编辑器中打开Transact-SQL文件此版本的SQL Server Da ...

  2. c++ 程序编译后运行时的内存分配

    程序编译后运行时的内存分配 太好的文章了,看到不得不转,转自:http://blog.sina.com.cn/s/blog_5420e0000101a0w1.html 一.编译时与运行时的内存情况 1 ...

  3. 为什么一定要调用 setlocale 呢? 因为在 C/C++ 语言标准中定义了其运行时的字符集环境为 "C" ,也就是 ASCII 字符集的一个子集。使用setlocal改变整个应用程序的字符集编码方式(wcstombs使用前要设置 setlocale (LC_ALL, "chs"); )

    setlocale 配置地域化信息. 语法: string setlocale(string category, string locale); 返回值: 字符串 函数种类: 操作系统与环境   内容 ...

  4. ios 引入第三方库 运行时找不到函数实现

    今天引入webtrends 这个库,结果一直运行时找不到函数,纳闷了一下午! 后来发现,是other flag没有设置对,对于那些包含category用来扩展ios原始类型的库,链接的时候需要特别的链 ...

  5. 关于Java项目打包成Runnable jar文件后运行时图片不显示的问题

    现象:在eclipse中能够无误运行,但导出Runnable jar后运行jar包时不显示图片. 原因:路径问题. 方法1: 新建一个文件夹.文件夹中放那个jar包和image文件夹.在这种情况下,双 ...

  6. WP8.1中C++的winodws运行时组件位移操作的差异

    最近学习WP8.1应用开发,想把C语言的SM3国密算法移植到手机app中.由于把C语言的代码转换成C#代码工作量较大,因此只能用winodws运行时组件来实现. SM3国密算法是一种HASH算法,具体 ...

  7. Java中获取类的运行时结构

    获取运行时类的完整结构 通过反射获取运行时类的完整结构 Field(属性).Method(方法).Constructor(构造器).Superclass(父类).Interface(接口).Annot ...

  8. Springboot 项目中引入WebSocket后,单元测试出现错误

    报错信息 java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test. ...

  9. 如何解决weblogic server启动中在IIOP后运行缓慢

    WebLogic Server在Linux环境中,有时因为linux OS的安全包没有安装,导致weblogic server 在启动的时候会在长时间的停留在 <2/07/2009 08:54: ...

随机推荐

  1. 隐藏wordpress版本信息

    在主题中的functions.php中添加如下代码: remove_action( 'wp_head', 'wp_generator');

  2. linux 内存,cpu占用最高进程查询

    1. 可以使用一下命令查使用内存最多的10个进程 ps -aux | sort -k4nr | head -n 10 2. 可以使用一下命令查使用CPU最多的10个进程 ps -aux | sort ...

  3. NW.js构建桌面应用

    最近要做个桌面的应用,用起来也方便.找了一圈发现NW.js挺容易上手,分享给大家. NW.js 官网https://nwjs.io/ 1.下载适合当前版本的js [这里下载的SDK版本,方便后续调试] ...

  4. android WebView缩放时卡顿问题

    问题描述: WebView 在双指缩放页面时会卡顿 解决过程:有试过打开硬件加速android:hardwareAccelerated="true" 还是没用,纠结了一天,最后屏蔽 ...

  5. c#显示行号设置方法

    工具→选项→文本编辑器→c#→常规→显示→勾选行号 反之取消即可.

  6. dw选择器

    选择器并没有一个固定的定义,在某种程度上说,jQuery的选择器和样式表中的选择器十分相似.选择器具有如下特点:1.简化代码的编写2.隐式迭代3.无须判断对象是否存在jQuery 的选择器可谓之强大无 ...

  7. MNIST 数据集

    mnist 数据集:包含 7 万张黑底白字手写数字图片,其中 55000 张为训练集,5000 张为验证集,10000 张为测试集.每张图片大小为 28*28 像素,图片中纯黑色像素值为 0,纯白色像 ...

  8. 计算几何-HPI

    This article is made by Jason-Cow.Welcome to reprint.But please post the article's address.   在线笛卡尔坐 ...

  9. Hadoop 启动/停止集群和节点的命令

    集群启动/停止Hadoop集群:start-all.sh    stop-all.sh 1) 启动NameNode, DataNode 2) 启动JournalNode, JournalNode在hd ...

  10. boolean类型set、get方法

    今天在了解lombok的时候偶然看到一个问题,在bean中存在boolean类型的数据的时候,用eclipse工具自动生成的set.get方法存在的问题. 不管变量为isXXX还是XXX时,set.g ...