[flexcoders] datetime axis and day light savings time

2008-11-06 Thread suri_boston
I am seeing a bug with datetime axis in line chart and day light savings time that came into effect on nov 2nd 2008. I provided dates as 10/31/2008,11/1/2008,11/2/2008,11/3/2008,11/4/2008 with some data to the respective dates. I got the line chart plotted as

[flexcoders] Re: datetime axis and day light savings time

2008-11-06 Thread suri_boston
--- In flexcoders@yahoogroups.com, suri_boston [EMAIL PROTECTED] wrote: I am seeing a bug with datetime axis in line chart and day light savings time that came into effect on nov 2nd 2008. I provided dates as 10/31/2008,11/1/2008,11/2/2008,11/3/2008,11/4/2008 with some data

[flexcoders] reset/invalidate property values

2007-09-13 Thread suri_boston
Hi, i have a flex application with charts and it has some public variables defined on top of the application. Is there a way, i can reset all the variables to its default values? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script![CDATA[ [Bindable]

[flexcoders] Re: reset/invalidate property values

2007-09-13 Thread suri_boston
Any one?? i would like to reset an application. anyone with a sample code to make it happen with states? --- In flexcoders@yahoogroups.com, suri_boston [EMAIL PROTECTED] wrote: Hi, i have a flex application with charts and it has some public variables defined on top of the application

[flexcoders] barset with type=100% tooltip issue

2007-03-21 Thread suri_boston
Hi Ely, i created a bar chart with barset type to 100% and the tooltip doesn't display the right values. it is displaying the percentage value as the bar value instead of showing the actual bar value.. for the below example: tooltip for USA is like, USA 57.3529411 (57.4%) total: 68 where i am

[flexcoders] Re: custom data tip in stacked bar chart

2007-01-17 Thread suri_boston
own datatips. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of suri_boston Sent: Tuesday, January 16, 2007 10:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] custom data tip in stacked bar chart Hi

[flexcoders] custom data tip in stacked bar chart

2007-01-16 Thread suri_boston
Hi, I am trying to access the percentage value of the bar to display it in the custom data tip function with no success.. private function customDataTip(hd:HitData):String { var tmp:BarSeriesItem = new BarSeriesItem(); var stryValue:String = ; tmp = e.chartItem as BarSeriesItem; var

[flexcoders] Re: custom data tip in stacked bar chart

2007-01-16 Thread suri_boston
are trying to do, only with a column chart. hth, matt horn flex docs http://blogs.adobe.com/flexdoc -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of suri_boston Sent: Tuesday, January 16, 2007 1:20 PM To: flexcoders@yahoogroups.com

[flexcoders] flex 2 charts default colors list access

2006-10-26 Thread suri_boston
Hi, How did the Flex 2 generates default colors for the charts? (bar/column/line). Any function that it calls to get the color or some random color? can i call any function to access the random colors list that is generated by Flex 2? Any Help? my issue is, i want to use the same default color

[flexcoders] Re: flex 2 charts default colors list access

2006-10-26 Thread suri_boston
i found the solution. thought it might be useful for others.. C:\Program Files\Adobe\Flex Builder 2\Flex SDK 2 \frameworks\source\mx\charts\styles\HaloDefaults.as --- In flexcoders@yahoogroups.com, suri_boston [EMAIL PROTECTED] wrote: Hi, How did the Flex 2 generates default colors

[flexcoders] Re: flex 2 charts default colors list access

2006-10-26 Thread suri_boston
i found the solution. thought it might be useful for others.. C:\Program Files\Adobe\Flex Builder 2\Flex SDK 2 \frameworks\source\mx\charts\styles\HaloDefaults.as --- In flexcoders@yahoogroups.com, suri_boston [EMAIL PROTECTED] wrote: Hi, How did the Flex 2 generates default colors

[flexcoders] Re: Stroke color on lineSeries - bug?

2006-10-24 Thread suri_boston
Is it possible to set only the line weight but not the color? When i try to set only the weight and not set the color, then i get all black colors. What i am expecting is, let the flex assign default colors but with a line weight that i specify. any help? --- In flexcoders@yahoogroups.com,

[flexcoders] custom itemRenderer creation

2006-10-17 Thread suri_boston
Hi, i have a bar chart and i would like to define colors of the bars based on some runtime values in arraycollection. can anybody please point me on how to create a custom itemRenderer for a bar series? thanks suri -- Flexcoders Mailing List FAQ:

[flexcoders] usa state map inside a canvas and resize

2006-10-10 Thread suri_boston
Hi, i have an svg file which is a state map with co-ordinates mapped. i used canvas to display it, which is displaying fine. now, i included the canvas in a panel. so far so good. when i try to resize the canvas, i am expecting my svg file inside the canvas to get resize but is not happening. am

[flexcoders] Re: Customizing datatip function for 100% bar chart

2006-10-09 Thread suri_boston
i am getting the below error when i try to use the below e.chartItem.xValue... any help? thanks suri 1119: Access of possibly undefined property xValue through a reference with static type mx.charts:ChartItem. --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote:

[flexcoders] bar/column stacked charts custom datatip function

2006-10-09 Thread suri_boston
i created stacked bar/column charts with custom datatip function. Now, How can i get the percentage value in custom datatipfunction of the bar/column? thanks suri -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] issue with type=stacked for bar/column chart

2006-09-11 Thread suri_boston
the below code works if the type of the chart is clustered but it doesn't work, if it is stacked. any one have a clue? if i change mySilver value from 200 to 20, then it works. i am guessing the autoadjust is not working in some cases. thanks for your time, -Suri ?xml version=1.0? !--

[flexcoders] Re: issue with type=stacked for bar/column chart

2006-09-11 Thread suri_boston
Hi Ely, sorry for not being clear. below is the code that is supposed to display a stacked bar chart. instead it displays a single bar with no stacking. when i hange the type attribute of bar chart to clustered, it displays the clustered bar chart just fine. only thing i did different from

[flexcoders] flash charts

2006-09-06 Thread suri_boston
Hi all, is there a way to use 2 groupby's in defining a bar chart? example count --- abc cde12 abc def15 abc ghi19 xyz a1 20 xyz a2 21 How can i plot a bar chart for the above table using flex? any help is really appreciated. thanks suri