navaz

Members
  • Content count

    2
  • Joined

  • Last visited

About navaz

  • Rank
    Forum Newbie
  1. Here are my latest findings. I am able to display the chart fine if I put it in my main application window. However that is not where I want to display it. I need to display it within a set of containers. So it needs to be displayed inside a container derived from a flex VBox component. However in this case, it is unable to display the fusion chart. We have a PodContentBase_RemoteObject which derives from a VBox. I have placed the FusionChart directly under this container. ?xml version="1.0" encoding="utf-8"?> xmlns="com.vmturbo.UI.dashboard.view.*" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:ns1="com.fusioncharts.components.*" creationComplete="onFormCreationComplete()" width="100%" height="100%"> Is this a known issue? I.e. are there know issues with displaying the fusion charts inside of a container such as one derived from VBox? We are very close to making a decision about using Flex but if we cannot display it in our container it is a non-starter for us. Please respond to this query as soon as possible. Thanks Navaz
  2. Version information: Fusion charts version V3 Flex builder - 3 OS - Mac Here is my folder structure com.vmturbo.ui - bin-debug - com - vmturbo - data - fusioncharts - html-template - FusionCharts.swf - playerProductInstall.swf - UIMain.swf - libs - FusionCharts.swc - src - com - vmturbo - data - fusioncharts Is this the expected structure? My code compiles but when I run it no chart is displayed. The other standard flex components are displayed correctly in the view. I am defining the following in my mxml file. I am trying to use a fusion chart instead of the standard flex column chart but when I run my application, nothing is displayed. Please help me resolve this issue. This is a blocker for my evaluation of the Fusion charts product. I see that the namespace says "com.fusioncharts.components". However there is no components subdir inside my fusioncharts dir. I tried creating one, but even that did not resolve the issue. xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:ns1="com.fusioncharts.components.*" [bindable] private var chartData:XML= ; //Create a XMLList object for chart parameters [bindable] private var chartParams:XML= xAxisName='ServiceEntity' yAxisName='Commodity' numberPrefix='$' showValues='0' /> ;