Flex :: Making 32.Multi-columnar Legend?

Jun 13, 2011

Instead of having legend scroll, I want to make it multi-columnar. I will fix the height of legend, and if the items exceed the legend, then it should extend one more column to display extra legend and so on.

View 1 Replies


Similar Posts:


Flex :: Placement Of Legend For A Chart?

Jun 22, 2009

I would like to be able to specify the placement of a legend for a linechart. Currently, it continues to appear to the right of the chart. I have tried playing with the width/height of the chart to no avail... Putting the legend before the linechart in the mxml causes it to appear to the left. I can't seem to get it appear at the bottom though. I can't seem to find any good examples for this. They don't seem to specify anything but the legend usually shows up below the chart, I can't seem to do it.

View 1 Replies

Actionscript 3 :: When To Render Legend In Flex

Nov 11, 2009

My Flex chart has code that creates a legend from each data series. Currently, I have the drawLegend function execute when a button is clicked.

I am trying to get the legend to draw automatically but I am having trouble determining when to call the drawLegend function. Users click on an 'Update' button which retrieves data. I want the legend to get created after this, without the users having to click on another button.

I have put my drawLegend function in several places (ResultHandler, afterEffectEnd(for chart animation, etc.) and nothing works.

Sometime after the series has been added to the chart and after the series animation ends, the legend can be added.

How can I trap this point in time and call my function?

Below is the code I used to create the legend. Note that even though the code processes each series, I noticed that the Fill color is null if it is called too early.

private function drawLegend(event:Event):void {
clearLegend();
// Use a counter for the series.

[Code]....

View 1 Replies

Flex :: How To Exclude Series In Legend

Mar 22, 2010

In flex charting, I want to draw something like "reference lines" which are related to specific series, therefore these lines are not independent series and should not be shown in legend. Is it possible to exclude some series from chart legend?

View 3 Replies

Hide Items From Legend In Flex Chart?

Apr 6, 2010

I have a LineChart continaing 6 lineseries. I should be able to pass parametrers to server using HTTPservice. But then the returned XML may contain information for a single line series or for all the lineseries. The problem, if we have a value for a single lineseries , the legend should contain also only one item and similarly for multiple items. [code]...

View 1 Replies

Flex :: Make The Legend Horizontal Or Vertical?

Apr 22, 2010

How can i make the Legend Horizontal or Vertical.

View 1 Replies

Flex :: Class - Custom Legend Using LegendItemClass?

Jun 3, 2011

I'm creating a custom legend using legendItemClass to highlight each item when the user rolls over, remove it when they roll off and highlight it a little differently when they click. That all works just fine but I also want the pie wedge to explode out when the user click. I have the piece of code but it requires a LegendMouseEvent. I'm also thinking I may be able to re-write the code if I could get the displayName but I'm a loss with that as well. Here's what I have:

Legend:

<mx:Legend id="legend" width="100%" direction="vertical"
labelPlacement="right" markerHeight="10" markerWidth="10"
legendItemClass="CustomPieLegendItem"[code]......

View 1 Replies

Actionscript :: Make Flex Chart With An Interactive Legend?

Aug 30, 2010

Making a chart in Flex with multiple series and a chart legend which is an interactive legend where upon selecting an item in the legend (which corresponds with a series in the chart) that specific series in the chart will slideDown or Up depending on whether it was just de-selected from the legend or re-selected. m

View 1 Replies

Flex :: Why Does The LineChart Legend Stop Displaying Colors When LineSeries's LineStroke Attribute Changes

Aug 4, 2010

I am implementing a LineChart in FLEX 4. I have the chart working well except I do not like the default colors and cannot use them, as they do not relate to my data very well. For instance, Orange is not a great default color for my data column "Outdoor temperature". I would rather override it and use a green color if possible.

When I explicitly specify the SolidColorStroke, like so, this breaks the LineChart Legend:

<mx:SolidColorStroke id = "s1" color="haloGreen" weight="2"/>
<mx:LineSeries yField="v1" form="curve" displayName="Indoor Temp" lineStroke="{s1}"/>

^ With this code, The LineChart Legend stops displaying the color for that specific LineSeries, and only displays in black.

How can I override the LineSeries stroke color and persist those colors to the Legend's display?

Is this a FLEX 4 bug? I noticed in FLEX 3 examples (even on Adobe's FLEX 3 Help website) you can override the stroke colors and it persists to the Chart Legend.

View 1 Replies

Media Server :: Making & Tracking Multi Admin Call To FMS

Jun 4, 2009

I am writing an app that track data/stats on multi FMS servers and that is working fine for my own custom server side functions. What I do is loop thru a list of IP of my FMS servers, call each IP and I also pass the IP to the server side function that get return and I can have my Responder object plug the returning data into an associate arrays (using IP as index) for reporting. Now my problem is when I used the Admin API. Here I was doing the same thing except I don't know the IP of the respnding FMS and I need to capture the data (into arrays etc). I had tried extending the Responder class so I can plug in the IP of the calling server but so far no good. I guess I need a way to know who is calling back

View 3 Replies

Flex :: Datagrid - Display A Multi-line Column Header Using The Flex Spark Data Grid?

Apr 13, 2011

How can you display a multi-line column header using the Flex Spark Data Grid for Flex 4.5?

View 5 Replies

Multi Threading In Flex

Sep 29, 2010

I know that flex does not support multi threading however, I would like to clear a doubt.I have two events that call a same function. Suppose the two events occur at the same instant (or in quick succession) will the handler be called twice, one after the other or there is a chance that if the handler function is taking too much time to execute the same handler can start executing simultaneously.

View 3 Replies

Flex :: 3 - Combobox With Multi Selection

Jun 15, 2010

I have a combobox with multi selection. when i click on add button, which ever data is selected in the Combobox, those data has to be displayed in the another comboBox.

[Code]...

View 1 Replies

Flex :: Multi-dimensional Arrays In AS3?

May 5, 2011

I am currently playing around with flex, I have C++ background, so I am not used to AS3.The problem is in the main*.mxml file I have fx:script block and I try to define a multidimensional array like that:

public var Board:Array = new Array(25);

I use a function to initialize the 2d-array:

public function initBoard():void {
var i:int;
var j:int;[code]....

This function gets called later on in the main loop to init and reset the "board" why doesn't it work. The only difference to the AS3 documentation is that it gets done in a function.

View 2 Replies

Flex :: Create Multi-window Web Application?

Oct 20, 2010

I am using flex4, I am seeking the answer to create multi window web application. My application is some sort of complex, currently I only know using PopupManager to create a new window.Should I create each MXML for each window that I want to instantiate? And then load the mxml and put it into the stage? Is there any tutorial describing that? I want the program modular and easy to manager, extend.

The current way I am using is use Group to group up all the controls inside a window, and if user want to open that window, I will display the group and bring it to the front. Is it the right way to do windowing? But I can't support drag.

I want to know if there is any native support for draggable window, or dialog?

Also till now all the controls are put inside a single mxml file, is it possible to put one window(or one group) to be a separate mxml file?

View 4 Replies

Flex :: Remove Multi-lines In Text?

Dec 5, 2010

How do I remove line 1,2,3 and retain line 4?

Like:

Programmer
Business Owner
Manager
Marketer

View 1 Replies

Flex Multi-page Form For Android?

Jul 12, 2011

I want to use a flex multi-page form on thew newly released Adobe AIR for android platform. I have a sequence of 30-40 screens on the form and the user can exit in between(storing the partial data entered). Is there a sample application for this, or can someone tell me the architecture to build such an application with lots of views? I want to store the data both on the device(sqlite) as well as a remote web server.

View 2 Replies

Flex :: Load Multi Resource To ResourceModuleURLs

Oct 17, 2011

I use Flex3.0(SDK 3.2).

I have a question Flex(resourceModuleURLs).

I am making loading of the resource using flashVars properties in the HTML wrapper as follows now.

AC_FL_RunContent(
"src", "ResourceModuleApp",
"flashVars", "resourceModuleURLs=es_ES_ResourceModule.swf&localeChain=es_ES",

[Code].....

View 1 Replies

Flex :: GetBy Multi Fields Using LCDS?

Feb 28, 2012

In my project, I use LCDS to define a holiday table which contain holidayId, countryCode and companyCode. LCDS generated all the getBy which are very handy. However, I need to get the records which are having countryCode = US AND companyCode = ABC. Surely I cannot use any of those generated getBy (each of them deals with a single field only). Can you suggest me how to modify the code in generated services (in my case, it is _Super_HolidayService.as) to handle multi-key data retrieval

View 1 Replies

Flex :: Flex4 - Multi Column Forms In Adobe?

Apr 4, 2012

What is the best way to make a multi column form in Flex?My current solution if more than one column is required is to put the form items inside an <s:HGroup> but the alignment isn't the best.

View 2 Replies

Flex :: AdvancedDataGrid Multi-column Programmatic Sorting?

Jul 30, 2009

I need to to a programmatic multi column sorting on the AdvancedDataGrid.The issue is, currently I am implementing paging on my grid. So, if I sort the data,only the perticular page is being sorted. So,I need to sort the entire list by the column criteria.I tried HeaderRelease event,but I guess it is of no use as I need to make a round trip call to the server to get the sorted data.Is there any way I can implement that.I also need to show the sort markers in the Column headers' right position, indicating the sort numbers and direction.

View 7 Replies

Flex :: Creating A Multi Column Navigation Bar For Viewstack?

Oct 5, 2010

I have created a Viewstack and using a Tile component and repeating LinkButtons I was able to make a multi column navigation with the viewstack as the dataprovider. My question is can this be done better? My code is below and I am wondering if I took the long way around this approach.

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[Code].....

View 1 Replies

Multi Process Architecture For Flex AIR Based Application?

Nov 11, 2010

I developing an AIR application in Flex that would be dealing with playing different SWFs. I am finding some issues as these SWFs that I am playing are heavy. I find that the animation is not smooth and is causing the graph of CPU usage to go high (my be because single thread architecture of Flex). I am therefore planning to have a multi process architecture for my application. Something like Google Chrome. I have one main application as one process and other SWFs would be playing in separate process but should be seen inside the main application window. How to make it possible in Flex?

View 4 Replies

Flex :: BlazeDS + Multi Module Maven Project?

Apr 29, 2011

I've got a multi module Maven project (about 10 modules) where 2 of the modules are a flex project and its corresponding server project, communicating via BlazeDS. The server module is dependent on another module containing common things, shared over the whole project.When using objects from the common module, the objects aren't serialized and sent via AMF to the SWF. Everything in the server-module is serialized and is working fine, but the objects from the common module (which has valid values on the server side) is not sent to the client.

I'm using Flexmojos to build this. What do I have to do to make the classes in the common project available for serialization, and being able to use them as RemoteClass-objects in my swf-project?

[Code]...

View 3 Replies

Android :: Multi Line Messagefield In MobileIconItemRenderer FLex

May 3, 2011

I have a problem with my ItemRenderer in Flex. I'm developping a mobile application and I'm using a list. One of the items is to set a date. But when the date is wrong I want to set a text in my messageField like : The To date must be after the From date.The problem is I don't know (and don't seem to find it anywhere) where you can set the messagefield in multiline.I read on a forum that's possible but no explanation how.Here you can see an example of what I want (the 5the item in the list is using multiline).[code]

View 1 Replies

Android :: Multi Threading In Flex Mobile Project?

Jun 20, 2011

I want to download a video on mobile device through flex framework. For that reason I need to have support of multithreading so that I can download video in background. Unfortunately, Flex doesn't have multithreading support. I am quite new with flex environment.

View 1 Replies

Actionscript 3 :: Flex Multiuser Multi-chatroom Apps?

Jul 15, 2011

I need a custom multi-user multi-chatroom app to extend an existing Flex app that I have.

I obviously wouldn't like to develop it from scratch, but focus only on the customizations and integration.

Are there any products (free or commercial) that provide multi-chatroom functionality from which I could start?

View 3 Replies

Flash :: Develop Custom Flex Multi-chatroom App?

Jul 16, 2011

I'm about to develop a multi-chatroom Flex app, and potentially add to it in the future real-timish audio capabilities (push-to-talk audio messaging).

I'm considering Smartfox, Electro, Wowza, and LCCS.

View 1 Replies

Flex :: Multi-bitrate/dynamic Rate For Progressive FLV Playback?

Nov 22, 2009

Is there a way to get multi-bitrate playback working with progessive playback without having to download all versions of the file? People all coming up with all kinds of cool ways to make progressive feel like streaming.

View 1 Replies

Flex :: Sorting - 4.5 Spark Datagrid Multi-column Sort?

May 9, 2011

does anyboy know if Flex 4.5 Spark Datagrid suppoprts multi-column sort natively - just like the ADG does?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved