Actionscript 3 :: Flex - ILog Elixir ColumnChart3D Labels Not Formating Properly?
Oct 25, 2010
I've looked through all IBM doc and Adobe livedocs, My labels for my columns which are loading dynamically are not centered properly under the columns. Here is the component code. The labels are off center to the left, and some overlap the one left of where it should be. I tried adding styles to several different areas but couldn't get it:
<ilog:ColumnChart3D id="columnChart" dataProvider="{chartData}" showDataTips="true" elevationAngle="5" projectionType="oblique" width="90%" height="100%"
rotationAngle="2" lightLatitude="0" lightLongitude="0"[code]...........
View 1 Replies
Similar Posts:
May 16, 2011
I'm having a real hard time adding RadarColumnSeries to my Radar Chart using ActionScript.
[code]...
View 1 Replies
Oct 8, 2009
URL...Everything in the clock is working expect for the hour hand. The hour hand stays on 12 all the time.I have used the entire code as it is.. changed nothing in it. The clock is working fine on the example page.
View 1 Replies
Nov 21, 2010
I'm looking for Flex vector maps components. amMap and IBM ILOG Elixir?
View 1 Replies
Mar 5, 2010
The below code show the labels from previously selected list?
Steps to reproduce:
Click on List AB Open the list but don't select / click any item Now click on List CD Open the list again and you see A, B as labels instead of C,D but if you click on any item then everything comes properly
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
[Code].....
View 1 Replies
Dec 1, 2010
I want to design a registration form using only ActionScript, i have designed labels and text boxes but using label.x = "10" label.y="40" text.x = "50" text.y ="40"... to align correctly. But i want to design a layout such that all labels and text boxes will be aligned properly.
View 3 Replies
Oct 28, 2011
I have a mobile app that gets a rss feed. The date on the rss feed displays Fri, 28 Oct 2011 17:30:00 GMT and I would like that to render as a short date in cst time standard dd/mm/yyyy and time. The code for my app is below. any help would be great This is the first time working with Adobe Flash Builder.
[Code]...
View 1 Replies
Nov 7, 2007
there my load of xml goes okay but all html styles as... strong.. colorand image dont work what am I doing wrong
AS:
var mydata:XML = new XML("data.xml")
mydata.ignoreWhite = true;
[code]......
View 5 Replies
Apr 17, 2008
This is not styling my text. What am I doing wrong?
this.textScroll.createTextField("my_txt", this.getNextHighestDepth(), 0, 0, 255, 200);
textScroll.my_txt.multiline = true;
textScroll.my_txt.html = true;
[code].....
View 5 Replies
Feb 19, 2010
how to format a dynamic text in "negative"? I mean for example white characters on black "box".
View 2 Replies
Dec 23, 2010
I created an multiline TLF editable text field in my fla file. How can I format different alignments and font size for different lines in the same text field?
View 1 Replies
Oct 22, 2004
I have a dynamic text box that holds text and shows images using the <img> tag.all works fine - however...... <br> or <p> will not put the next lines of text under the image... you have to keep adding them until there are enough
View 5 Replies
Jun 25, 2011
im completely lost on how to do a simple multiline label. The docs say that labels are best used as single lined elements, but that alludes to it being able to do multiline if necessary. Anyone have any clarification on the subject?
View 3 Replies
Apr 18, 2010
Can I set label visibility in Flex ?
[Code]...
View 1 Replies
Sep 22, 2009
I have a 2d array and it has columns & Rows what I wont to do is displaythe columns and Row data in a textBox correctly such as the textbox will be X-columns wide by Y-rows high.. this is the relationship in code
Code:
Var k:Number = 0; //Populate each element of array with "0's"
var columns:Number = 15; //=to X-columns
[code].....
View 2 Replies
Nov 17, 2009
I need to display antialiased systemfonts (because the swf filesize must be small, therefore i can't embedd fonts). So I wrote this script in order to manually antialias the text
Code:
public function renderTextField():BitmapData{
var w:int = this["mainTextField"].textWidth+10;
[code]......
View 1 Replies
Feb 14, 2011
How can I have two labels on a Flex button, one label on top and another on the bottom?
View 3 Replies
May 3, 2011
I've been trying for a while to set the number of labels being shown with a datetimeaxis being used for the y-axis. Unfortunately, I'm not able to get the desired behaviour.I'd like to have the y-axis separated into days (i.e. a tick on the axis for each day). However, it is spacing them out one week at a time. I have tried setting labelUnits and minorTickUnits to "days" but no joy.
<mx:DateTimeAxis id="vStepAxis" labelUnits="days" minorTickUnits="days" parseFunction="ParseDateForAxis" title="Date/Time"/>
View 1 Replies
Apr 10, 2012
I have a bar chart with the vertical axis this way
<mx:verticalAxis >
<mx:CategoryAxis id="catAxis" title="Employee" categoryField="id"/>
</mx:verticalAxis>
I would for the labels on the vertical axis to be clickable. So when a user clicks a label a click event fires and I can do something with it. I am not interested in clicking the bar itself (I know how to achieve that)
I tried adding an event listener to the CategoryAxis of type Mouse.Click but nothing gets fired.
View 2 Replies
Apr 16, 2010
Observe the Flex program below (I'm using Flex Builder 3 w/ 3.5 SDK). The second combobox is conditional on the first. If a 'first name' is chosen, then you are allowed to choose a 'last name'. If 'none' is chosen, then you are not allowed to choose a last name, but rather prompted to choose a first name.
To see the mysterious issue of the disappearing labels, run this program and choose a first name. Then choose a last name. All is well. Then choose 'none' in the first combobox. The prompt of the second combobox changes back, and the last names are removed. All is still well. Then try selecting a first and last name again. You will see that after choosing a first name, the last names do not appear, although the spaces for them do (and if you debug the program, the correct data appears in the dataprovider).[code]...
View 5 Replies
Aug 26, 2010
I have 2 spark labels next to each other. They are in a basic layout and both have bottom set to 0. They have different font sizes (28 and 12).
Both fields only display numbers. I want the baseline of the numbers to line up.
At the moment they do not as there are no descenders and the descender area of the line is obviously a different height for the 2 different font sizes.
View 1 Replies
Mar 15, 2011
I would like to create a custom Button component with three labels: left-, center-, and right-justified. I can't just use the label justification property, because I want to use all 3 labels at the same time.
I'm familiar with creating custom components, but I've never tried to build one quite like this before...
Here's what I have so far:
<?xml version="1.0" encoding="utf-8"?>
<s:Button
xmlns:fx="http://ns.adobe.com/mxml/2009"
[Code]....
The labels won't change after the button is created, so I'm not worried about the missing [Bindable] metadata.
I'm stuck right now, getting the following compiler error:
Multiple initializer values for default property, 'label', of type 'String'.
...for each of the 3 <s:Label> lines.
Based on this answer to a similar question, I tried adding label="" to my <s:Button> declaration, but that just adds another error.
View 1 Replies
Apr 11, 2011
I've got a simple app that is currently getting information form a database and just displaying the content into a datagrid.
Instead of having this information displayed in a datagrid, I'd like to display it in a couple of labels (first name, last name, phone, etc.), but I'm not really sure how to.
Currently on creationComplete I call my php query function - which looks like this.
public function getPeople() {
return mysql_query("SELECT * FROM tbl_people ORDER BY pers_name ASC");
}
[Code].....
Eventually my query will be modified and will only ever return 1 row from the database. So how do I get the results to display in labels instead of the datagrid?
View 1 Replies
May 18, 2011
I have a problem with the TabNavigator. The labels of the tabs are getting truncated and once the user places their mouse over the tab it redraws again. Is there anyway to redraw the label of the tab programmatically?
View 2 Replies
Sep 23, 2011
I have a chart that uses a DateTimeAxis for the x-axis and a renderer defined for it. I also have a function defined for the label on the axis but I am not able to get the labels to show.
Trying to print out a static time to test working.
private function timeAxisLabelFunction(obj1:Object, obj2:Object, axis:IAxis):String
{
return "9:30AM";
}
[Code]....
Apparently, the font family I was using doesnt support a font style that is used in the renderer. Not sure what style attribute it is yet.
View 1 Replies
Oct 11, 2011
I am using a Column Chart to display certain data. The data is provided by an array collection. The array contains 3 elements for the horizontal axis, hence 3 labels are shown on the horizontal axis. I want to show 2 additional labels(i.e. total 5 labels) dynamically on the chart. I there a way to add labels to the horizontal axis.[code]...
View 1 Replies
Oct 19, 2011
I want to rotate the data label to 90 degrees in column chart. I used the code written below but its not working.
<fx:Style>
@font-face{
src: url("/assets/MyriadWebPro.ttf");
[Code]....
View 1 Replies
Dec 4, 2011
I'm using a custom tabbar with the dataProvider being a viewstack and I'm trying to get the tab labels to update when data in the related container (in the viewstack) updates. The viewstack's containers are bound to bindable vars, so if a var changes, the data/labels/etc in the container updates, but the tab doesn't.Is there a way to bind the tab to the same bindable var or do i need to write event handlers (if so, what events)?
View 1 Replies
Feb 3, 2012
I use the setStyle("textDecoration", "underline"); for showing an underline on text hover. This works fine but the underline is touching the text itself. Is it possible to put some spacing between text and the underline?
Update: 02/072012 I'm using Flex SDK 3.5 so I cant use the spark solution for now. Im using Label component and setting the textfield's style.
View 1 Replies
Jan 30, 2004
Here's what i do:
[AS]
onClipEvent (load) {
loadText = new LoadVars();[code]...........
As i could read on macromedia 's web site: Use an empty pair of <P></P> tags to insert a line break. Use two pairs to insert a line break and carriage return.But this isn't working... Why?
View 2 Replies