我们的AIR应用程序包含多个模块。每个模块都扩展了MovieClip类。但是当我将AmChart组件添加到其中一个模块时,它不会渲染。这里的样本(PieChart.mxml):
<?xml version="1.0" encoding="utf-8"?>
<s:SkinnableContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:amcharts="http://www.amcharts.com/com_internal"
width="100%" height="100%">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
[Bindable]
private var chartData:ArrayCollection = new ArrayCollection([
{country:"Czech Republic",litres:156.90},
{country:"Ireland",litres:131.10},
{country:"Germany",litres:115.80},
{country:"Australia",litres:109.90},
{country:"Austria",litres:108.30},
{country:"UK",litres:99.00},
{country:"Belgium",litres:93.00}]);
]]>
</fx:Script>
<amcharts:AmPieChart width="100%" height="100%" dataProvider="{chartData}" titleField="country" valueField="litres"/>
</s:SkinnableContainer>
这是一个示例用法:
var chart:PieChart = new PieChart();
cContainer.addChild(图表);
cContainer - is instance of MovieClip.
你能说明为什么不渲染吗?也许这似乎是一个愚蠢的问题,但我是Flex的新手。请帮忙。
答案 0 :(得分:0)
您可能想尝试使用此处使用的数据集语法http://blog.amcharts.com/2010/11/amstock-flex-tutorial-part-1-basics.html,并尝试使用数字作为宽度和高度,直到您使其工作,而不是百分比。如果这些都不起作用,您可能想尝试询问写这篇文章的人。
HTH;
艾米