Welcome to FusionCharts Forum. ![]()
Could you please make sure that all the paths that you have specified in your application is relative to the application and not absolute paths ?
Hope this helps.
Posted 18 January 2010 - 08:55 AM
Welcome to FusionCharts Forum. ![]()
Could you please make sure that all the paths that you have specified in your application is relative to the application and not absolute paths ?
Hope this helps.
Posted 18 January 2010 - 07:28 AM
Posted 08 February 2010 - 07:08 AM
<components:FusionWidgets FCChartType="AngularGauge" FCUseDefaultData="true"/>
private function onClick(event:MouseEvent):void {
var gauge:FusionWidgets = new FusionWidgets();
gauge.FCUseDefaultData = true;
this.addChild( gauge );
}
Posted 08 February 2010 - 07:15 AM
private function onCreationComplete(event:FlexEvent):void {
var gauge:FusionWidgets = new FusionWidgets();
gauge.FCUseDefaultData = true;
this.addChild( gauge );
}
Posted 28 April 2010 - 05:01 AM
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="com.fusionwidgets.components.*">
<mx:Button x="90" y="373" label="Button" click="createChart()"/>
<mx:Script>
<![CDATA[
import com.fusionwidgets.components.*;
private function createChart():void {
var gauge:FusionWidgets = new FusionWidgets();
gauge.height = 200;
gauge.width = 200;
gauge.FCUseDefaultData = true;
this.addChild( gauge );
}
]]>
</mx:Script>
</mx:Application>