RE: [flexcoders] Column Chart coloring

2006-02-16 Thread Ely Greenfield
    You could write a custom renderer for the chart that ignores the colors passed in and just cycles through a pre-defined array of colors.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan MirandaSent: Thursday, February 16, 2006 9:30 AMTo: flex

RE: [flexcoders] Chart Datatips

2006-02-16 Thread Ely Greenfield
    set the:   pointRenderer radius pointStroke pointFill   on the lineSeries. You could try the CircleRenderer...if it's not close enough, you could write a custom renderer.   Ely.     p.s. overlaying the point series is unnecessary and redundant, but for the benefit of the list, if you wan

RE: [flexcoders] Chart Datatips

2006-02-16 Thread Ely Greenfield
    Something like:                               Ely.     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan MirandaSent: Thursday, February 16, 2006 10:03 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Chart Datatips

RE: [flexcoders] Column Chart coloring

2006-02-16 Thread Ely Greenfield
    I'll leave making it compile as an exercise for the reader, but something like:   class CycleRenderer implements BoxRenderer{ private var fills = [0xFF,0x00FF00,0xFF];  private var count:Number;    function CycleRenderer() { }  function beginDraw(target: UIObject, fill:Fill, s

RE: [flexcoders] Column Chart coloring

2006-02-16 Thread Ely Greenfield
      A. You using Flex 2! Then I have a very, very different answer for you.   Flex 2 has moved to a model more like datagrid's item renderers. In flex 2, you can specify an itemSkin class for a column series, and it will create one for every column on the chart.   You want to defi

RE: [flexcoders] Two bugs for you Matt

2006-02-16 Thread Ely Greenfield
    Thanks Jonathan. I'll make sure someone looks into them.   E.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan MirandaSent: Thursday, February 16, 2006 1:43 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Two bugs for you Matt More to add to

RE: [flexcoders] Re: Column Chart coloring

2006-02-17 Thread Ely Greenfield
Miranda > > Flexible Master of the Web > > "In the game of chess, it's important to never let your opponent see > your pieces." > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] > On Behalf Of Ely Greenfield > Sent: Thursday, Febr

RE: [flexcoders] Having Column chart problem

2006-02-17 Thread Ely Greenfield
Thunder -- try setting categoryField to "". (If that fixes it, then it's definintely a bug). Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Friday, February 17, 2006 3:54 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] ColumnChart question

2006-02-19 Thread Ely Greenfield
      1. Are you using Flex 1.5, or Flex 2 (note to all flexcoders membersyou'll probably get your answer faster if you let us all know this up front).   2. When the user clicks on a bar, do you want to make it darker, or the other bars lighter?   3. When the user clicks on a bar, are y

RE: [flexcoders] ColumnChart question

2006-02-19 Thread Ely Greenfield
    - to trigger a series to redraw in Flex 1.5, call invalidate ( In Flex 2, series are standard UIComponents, so you'll invalidate them just like any other component).   - but by default, a Column/Bar series in Flex 1.5 renders all items exactly the same. So if you want to render one bar

RE: [flexcoders] different color and shape in one plot chart

2006-02-21 Thread Ely Greenfield
This is probably starting to sound repetetive, but... Flex 1.5 or 2? E. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wujunjr Sent: Tuesday, February 21, 2006 1:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] different color a

RE: [flexcoders] Stacked Areachart with Trendline

2006-02-21 Thread Ely Greenfield
Flex 1.5 or 2? E. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carlos Balacuit Sent: Tuesday, February 21, 2006 9:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Stacked Areachart with Trendline Is there a way to add a trend li

RE: [flexcoders] Re: Stacked Areachart with Trendline

2006-02-21 Thread Ely Greenfield
OK, I'll start with flex2, which is the nicer answer. In Flex2, we've extracted the stacking behavior of AreaChart, ColumnChart, and BarChart into separate series that allow you to do more complex things. So this: Is roughly equivalent to

RE: [flexcoders] Re: different color and shape in one plot chart

2006-02-21 Thread Ely Greenfield
ect: [flexcoders] Re: different color and shape in one plot chart Is there any solution in Flex 2? I'm using Flex 1.5 now. Thanks. John --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > > > This is probably starting t

RE: [flexcoders] Re: different color and shape in one plot chart

2006-02-22 Thread Ely Greenfield
work correctly (only display one item) even if I use the same renderer with PlotChart. Also, is there any way to add a lable on the top of a column chart? Regards, John --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > > > There&#x

RE: [flexcoders] Another charting bug

2006-03-02 Thread Ely Greenfield
    Hi Jonathan -- what you're running into right now is a bit of a fact of life.  The Flex framework doesn't have great support for flow-based components by default...if you don't explicitly set their width, it's impossible for them to automatically size to the width of their parent.  Tex

RE: [flexcoders] Flex2 line chart and vertical axis

2006-03-02 Thread Ely Greenfield
      Hi Johannes.  I see Brian also set you up with the labelFunction, but if you could send a simplified bug file directly to me, that would be great.  What you're seeing is a floating point rounding error, which is pretty much unavoidable. We're trying to get the actual label generation

RE: [flexcoders] repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-03-02 Thread Ely Greenfield
Hi Thunder. It wouldn't surprise me if at this point there are leaks when you're swapping in series. We of course want to make sure these are all cleaned up before we ship, so If you can submit a bugfile, that would be great. Ely. -Original Message- From: flexcoders@yahoogroups.com [m

RE: [flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-03-02 Thread Ely Greenfield
This should be fixed in latest builds. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Tuesday, February 28, 2006 1:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] repost - ColumnChart MOUSE_OVER_DA

RE: [flexcoders] Flex 2.0 Dashboard Project

2006-03-05 Thread Ely Greenfield
Hi Sergio. I wrote a tutorial for the 1.5 charts on devnet a while back. You can find it here: http://www.macromedia.com/devnet/flex/articles/charting.html I would strongly encourage you to build your dashboard using Flex 2.0, if the option is available to you. While much has changed between

RE: [flexcoders] Flex 1.5, AxisRenderer labelRotation

2006-03-15 Thread Ely Greenfield
    Sorry Jason. Short of copying the code into its own class and modifying it, there's no way to request the axis renderer orient titles the other way.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Graham, JasonSent: Tuesday, March 14, 2006 8:01 PMTo:

RE: [flexcoders] is ther a way to write those as STYLE

2006-03-16 Thread Ely Greenfield
Unfortunately, no, compound objects can't be expressed in styles. You could easily reuse it, however, by defining a subclass of LineSeries in mxml with all the value pre-defined. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkal

RE: [flexcoders] Any way to combine clustered and stacked in a column chart (Flex 2) ?

2006-03-20 Thread Ely Greenfield
Yes, there is. In Flex 2, we've taken the multi-series behavior embedded in column, area, and bar charts and broken them out for exactly this kind of scenario. You should look at the 'ColumnSet' class. Basically, you want something like this:

RE: [flexcoders] Bugs with stacked charts

2006-03-20 Thread Ely Greenfield
Hi Thunder. I believe item #3 has been addressed in the next public release. #1 and #2 we'll look into. Thanks for being patient ;) Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Monday, March 20, 2006 10:0

RE: [flexcoders] More Stacked Chart bugs (2.0B1)

2006-03-20 Thread Ely Greenfield
Thunder -- the offset, columnWidthRatio, and maxColumnWidth properties of series are managed automatically in a ColumnChart. This is how a ColumnChart generates the clustering behavior in ColumnSeries. Similarly, ColumnSeries inside a ColumnSet have these properties managed by the out

RE: [flexcoders] Google Finance in AJAX: Can we do this in Flex?

2006-03-21 Thread Ely Greenfield
Hi. In Flex 2, all of this functionality could be implemented as chart extensions. Building on different codebases makes it easier or harder to do some specific things, so an implementaiton using flex would probably be different in subtle ways, but yes, in general, you could build this as chart

RE: [flexcoders] Re: Google Finance in AJAX: Can we do this in Flex?

2006-03-21 Thread Ely Greenfield
rporates both the zoom-scroll control and the chart/grid component and sets their dataproviders to the same object. Do you think this particular use case would be a good candidate for implementing as chart extensions? Thanks, Doug --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[E

RE: [flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Ely Greenfield
Set the showEffect/hideEffect instead of showDataEffect/hideEffect, and set the visibility of the series to true/false. When you toggle the visibility, the show/hide effects will be played automatically. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTEC

RE: [flexcoders] Re: Flex 2: Chart problem

2006-03-23 Thread Ely Greenfield
ass called showEffect or hideEffect. Could I maybe do somthing using the dispatchEvent method? Best regards. Torben Nielsen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent: giovedì 23 marzo 2006 22.31 To: flexcoders@yahoo

RE: [flexcoders] Flex 2: Chart - Line color problem

2006-03-24 Thread Ely Greenfield
      You're using Beta 2?  You need to set lineStroke, not stroke. The stroke property affects the color of the points on the line, not the line itself.   There's a bug in beta2 where the legend is currently rendering the stroke color, not the lineStroke color.  So for now, set both.  It

RE: [flexcoders] Cairngorm Model binding problem

2006-03-24 Thread Ely Greenfield
    Can you include a screenshot of the chart? Are there categories on it?   WHat happens if you remove the showDataEffect from the line series?   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan MirandaSent: Friday, March 24, 2006 6:49 AMTo: flex

RE: [flexcoders] DateTime Axis - Is the Jury Stil Out or Maybe I just don't get it

2006-03-24 Thread Ely Greenfield
Well, If you want my answer, the jury approves ;) It's pretty hard for me to help diagnose the problem without seeing some code. What properties were set on the DateTimeAxis? What did your data look like? What properties were set on the line series? Etc. etc. Ely. -Original Message--

RE: [flexcoders] Flex2 - Bug with chart Legend and ScrollPolicy

2006-03-24 Thread Ely Greenfield
Hi Thunder. The chart legend wasn't built to scroll. For codesize reasons, it extends Tile, which means it inherits scroll functionality, but it's been explicitly disabled. Assuming you either anchored both sides of the hbox (left/right or top/bottom, depending on what direction you're talking

RE: [flexcoders] Too many mistakes

2006-03-29 Thread Ely Greenfield
      1) make sure you're looking at the release swf size, both on disk and in memory, not the debug swf 2) it does not grow linearly with the complexity of the UI, but rather with the number of definitions you pull in. Building a flex app brings in a core set of definitions.  Each new _typ

RE: [flexcoders] Putting markers on chart

2006-04-02 Thread Ely Greenfield
    Sachin, can you explain a little further?  are you looking for a vertical line at a particular X value? or a horizontal line at a particular y value?   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sachin DharmapurikarSent: Saturday, April 01, 2006 7:

RE: [flexcoders] Putting markers on chart

2006-04-03 Thread Ely Greenfield
to define threshold on Y-Axis. If I set the threshold on 50 then all values > 50 should have a vertical line drawn on corrosponding X-Axis value. In our example on 12:00 the vertical line should appear. Does that make any sense to you?Sachin On 4/3/06, Ely Greenfield <[EMAIL P

RE: [flexcoders] Putting markers on chart

2006-04-03 Thread Ely Greenfield
    I figure it's good to take a moment every once and a while and prove to myself that what I'm saying is actually true ;)   See attached.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda If you get time to do this Sachin, love to see

RE: [flexcoders] Horizontal bar chart

2006-04-07 Thread Ely Greenfield
    You mean, you want it to extend from  the right to the left?     Here's the quick and dirty way:   1) set the 'placement' property on your verticalAxisRenderer to 'right' to get it over to the right hand side 2) negate the values in your dataProvider 3) set a labelFunction on your hori

RE: [flexcoders] Flex1.5: Limit of series a graph component can have

2006-04-11 Thread Ely Greenfield
Is it possible? Yes. Will it have reasonable performance? Probably not, but it's a really easy test to find out. Charts probably will not perform well under this load, but I'm not sure you'll even get that far. First you have to send 200k floats over the wire, and deserialize them in the play

RE: [flexcoders] labelfuction and column chart questions

2006-04-11 Thread Ely Greenfield
1) write a custom renderer for your columnseries. This renderer should fill the columns with the standard color, _unless_ it's filling the selected index. Something like this: Class MyCustomRenderer { public var index:Number; public var selectedIndex:Number; function beg

[flexcoders] Fisheye Component v0.1 (beta 2)

2006-04-14 Thread Ely Greenfield
Title: Fisheye Component v0.1 (beta 2) I just posted a new custom component I've been toying with that might be instructive to anyone learning Flex 2. Check it out if you like. http://www.quietlyscheming.com/blog/2006/04/14/fisheye-component-v01/ Ely. Chart

RE: [flexcoders] [Flex 2b2] Changing a Chart's dataProvider at runtime?

2006-04-17 Thread Ely Greenfield
What do you mean by change the dataProvider? Modify it? Or change to a different one? And if you can give an example of how you're setting the series in the first place, I can give help adding a new one. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECT

RE: [flexcoders] Re: [Flex 2b2] Changing a Chart's dataProvider at runtime?

2006-04-18 Thread Ely Greenfield
? Are there any plans for additional chart types in the future? Radar Chart? Martin --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > W

RE: [flexcoders] Re: [Flex 2b2] Changing a Chart's dataProvider at runtime?

2006-04-18 Thread Ely Greenfield
Ely! Also, while I've got you... > > Any suggestion on how to drag a column as a way to select a group of > data to drop? > Are there any plans for additional chart types in the future? Radar > Chart? > > Martin > > > dataProvider="{model.scoreSumma

RE: [flexcoders] how to read gutter size of chart?

2006-04-30 Thread Ely Greenfield
Unfortunately there's no way to access this value in flex 1.5. In flex, 2, The charts support a property called 'computedGutters' which  gives you access to the computed values. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemesh

RE: [flexcoders] Custom Chart Series

2006-05-01 Thread Ely Greenfield
Hi Jonathan. That's a tough question to answer without more information. Otherwise, this would answer your question: Public class MyBarSeries extends BarSeries { } Which clearly isn't very helpful ;) Can you give more information on what you're trying to do?  More information on the erro

RE: [flexcoders] how to implement the copy&paste of chart in flex

2006-05-01 Thread Ely Greenfield
      Hi Tom. You can create your own BitmapData object, then blit the chart into it using the BitmapData.draw function (pass the chart as the first parameter).     Ely From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas W. GonzalezSent: Monday, May 01, 2006 8:

[flexcoders] 2D Fisheye Component (was: how to implement the copy&paste of chart in flex)

2006-05-01 Thread Ely Greenfield
      Hey, that would be very cool. Post a link if you can once you get it running.       FYI, I updated the Fisheye component to layout as a tile component in 2D. Check it out here:   http://www.quietlyscheming.com/blog/2006/04/25/new-component-2d-fisheye-v02/   Ely.   From: flexcoders@ya

RE: [flexcoders] Custom Chart Series

2006-05-01 Thread Ely Greenfield
Let's see -Should I make a custom chart that extends BarChart or a custom series that extends BarSeries? What about extending CartesianChart? Probably you want a custom series, that either extends BarSeries or starts from scratch.  The Chart classes generally act as a coordinating contai

RE: [flexcoders] Flex 1.5 - Possible BarChart bug?

2006-05-10 Thread Ely Greenfield
Are you stacking the series? Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jgraham_us Sent: Wednesday, May 10, 2006 9:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 1.5 - Possible BarChart bug? Here is an example o

RE: [flexcoders] DateTimeAxis question for Charts

2006-05-11 Thread Ely Greenfield
    Hi Sachin.  The chart code doesn't have any functionality for generating missing values...in specific cases (like yours) that may be OK, but generally its an interpretation of the data with an assumption that we can't make.   My suggestion is to do what you've suggested, but on the cli

RE: [flexcoders] Re: Flex 1.5 - Possible BarChart bug?

2006-05-11 Thread Ely Greenfield
jgraham_us Sent: Thursday, May 11, 2006 7:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex 1.5 - Possible BarChart bug? Yes, sorry its a stacked series.  The first item in the series is always undefined.  --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[

RE: [flexcoders] Full example of a custom visual component

2006-05-11 Thread Ely Greenfield
Hi Damien.  They're probably a little heavy for an 'first component' tutorial, but I've posted a bunch of real-world flex 2 components, with source, up on my blog at http://www.quietlyscheming.com/, with source code. Ely. -Original Message- From: flexcoders@yahoogroups.com [mail

[flexcoders] Animated DragTile component

2006-05-11 Thread Ely Greenfield
Title: Animated DragTile component While I'm at it, I thought I'd mention that I posted a new component for your viewing/using/learning pleasure, the DragTile component. It adds animated Drag/Drop functionality to the Tile component, giving Picasa like visual feedback as you drag items in

RE: [flexcoders] Flex2B2: control autoAdjust behaviour of DateTimeAxis

2006-05-12 Thread Ely Greenfield
Hi Willem. There's not way to do what you're looking for in the current beta.  But in the latest internal builds we've added an additional flag (alignLabelsToUnits) that will give you the behavior you're looking for. You'll see it in the next drop. Ely. -Original Message- From: flex

RE: [flexcoders] BarChart

2006-05-12 Thread Ely Greenfield
I think you'll probably have to do this from actionscript, by pre-processing the array into separate dataProviders. Var separateDPs:Object = {}; For(var i:int=0;i {   var record:Object = data[i];   var id:Number = record.id;   var dp:Array = separateDPs[id];   if(dp == null)

RE: [flexcoders] maxRadius in BubbleChart and

2006-05-12 Thread Ely Greenfield
Hi Prashant. If you're using BubbleSeries inside a BubbleChart, you should set bubbleRadius on the chart itself rather than the series. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Prashant Balepur Sent: Friday, May 12, 2006 10:1

RE: [flexcoders] Limited number of nodes on Line Chart

2006-05-15 Thread Ely Greenfield
You'll need to provide us with more information and/or code.  I've built charts with LineSeries rendering thousands of points, so something odd is going on here. What version of flex are you using? Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Movinig from Wedge to Wedge of pie chart the effect doesn't work properly

2006-05-15 Thread Ely Greenfield
Well, if the chart is sending the mouseOutData event after the mouseOverData event, then your code will fail. You might want to try something like this: The functionality of this functions called in the following Pie Chart: dataProvider="{internalChildren}"  showDataTips="true"

RE: [flexcoders] Beta3 - Chart Selection functionality removed?

2006-05-15 Thread Ely Greenfield
Hi Thunder. It was, in fact, removed in beta 3.  It was removed based on scheduling and resource concerns. It is an oft-requested feature, but we just didn't have the resources to test it to the level of quality we'd be comfortable shipping with. Expect to see it in a future release. Click-b

RE: [flexcoders] Flex 1.5 - column chart question

2006-05-19 Thread Ely Greenfield
    Hi Robert. The problem is that there's not enough room on the axis to show all the labels, so the axis is dropping labels to make room. It drops labels from the bottom up, so the one on the top may or may not appear depending on the number and size of your labels. In this case, it's get

RE: [flexcoders] Re: Problem with LineChart - Flex 2 Beta 3

2006-05-24 Thread Ely Greenfield
You're tripping over some of the conversion rules AS3 has inherited (by necessity) from EcmaScript. The LineSeries can correctly render missing data, but unfortunately the XML API never reports the data as missing, only as an empty stringwhich converts to the numeric value 0. The bug has

RE: [flexcoders] F2B3 - Looking for Column Chart styles example similar to old "Brocade" sample app.

2006-05-25 Thread Ely Greenfield
      Hi Ben.  When a set of column series is clustered, the chart (or columnSet) is setting the columnWidthRatio and offset properties to do it. So if you wanted to cluster differently, you could put the columnSeries inside a CartesianChart and set those properties yourself.   To figure ou

RE: [flexcoders] F2B3 - Looking for Column Chart styles example similar to old "Brocade" sample app.

2006-05-26 Thread Ely Greenfield
        Well, this is a common question. And I wrote the original code, so I have an unfair advantage ;)   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben LucykSent: Thursday, May 25, 2006 2:29 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] F

RE: [flexcoders] F2B3 - Looking for Column Chart styles example similar to old "Brocade" sample app.

2006-05-26 Thread Ely Greenfield
      In Beta 3, the drop shadow in the columns has been optimized by attaching it to the ColumnChart directly. To get it back, you've got two options:   1) set the seriesFilters property of the CartesianChart to a drop shadow.  This will give you a single drop shadow for the entire set of

RE: [flexcoders] Setting Charts' Parameters in Runtime

2006-05-30 Thread Ely Greenfield
Flex 1.5 or 2.0? Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vebazzo Sent: Tuesday, May 30, 2006 6:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Setting Charts' Parameters in Runtime Hello again! I have a probably

RE: [flexcoders] Re: Setting Charts' Parameters in Runtime

2006-05-31 Thread Ely Greenfield
Sent: Wednesday, May 31, 2006 12:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Setting Charts' Parameters in Runtime Flex 1.5 --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > > > Flex 1.5 or 2.0? &

RE: [flexcoders] Extending chart gridlines behind axis labels, and more

2006-05-31 Thread Ely Greenfield
Hi Erki. What you're doing is getting pretty far afield from the built in capabilities of the charting package.  In Beta3, you're stuck using the default AxisRenderer, which means you have to use the capabilities of the default AxisRenderer. In the next public drop of the charting components,

RE: [flexcoders] how to shut off the DropshadowEffect of the lineChartSeries

2006-06-04 Thread Ely Greenfield
1. to remove the dropshadow...            ... 2. you should be able to use an @embedded image:   Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sp0rarb3jd3r Sent: Thursday, June 01, 2006 12:58 AM To: flexcoders@yahoo

RE: [flexcoders] F2B3 - Looking for Column Chart styles example similar to old "Brocade" sample app.

2006-06-04 Thread Ely Greenfield
Ben Lucyk [EMAIL PROTECTED] p 1.877.TRY.ESRIA ext 718 c 1.408.489.3913 f  1.877.828.4436               From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent: Friday, May 26, 2006 12:44 PM To: flexcoders@yahoogr

RE: [flexcoders] Pie Chart help

2006-06-04 Thread Ely Greenfield
Title: Pie Chart help                    Ely.     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Lucyk Sent: Thursday, June 01, 2006 11:10 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Pie Chart help   Hi Daman,

RE: [flexcoders] Re: dynamic colors for pieseries wedges

2006-06-04 Thread Ely Greenfield
You've got two choices. The first, which is a bit of a hack but might be the easier of the two, would be to write your own code that examines the data, generates an array of fills whose values match the expected colors, and assigning that. The more correct method would be to write a custom i

RE: [flexcoders] Column Chart Help

2006-06-04 Thread Ely Greenfield
Alternatively, you could set the parse function on the vertical axis, and write your own parsing function that can handle numbers with comma separators.  Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Horn Sent: Saturday, June

RE: [flexcoders] FusionCharts under Flex

2006-06-05 Thread Ely Greenfield
You'll probably have an easier time just building a custom renderer ;) Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Sent: Sunday, June 04, 2006 9:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FusionCharts under F

RE: [flexcoders] Re: dynamic colors for pieseries wedges

2006-06-05 Thread Ely Greenfield
seems a fairly basic charting feature.  As it is, I think we'll go with FusionCharts instead.  Now if only I could get it to work with Flex... --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > > > > You've got two choices

RE: [flexcoders] Re: FusionCharts under Flex

2006-06-06 Thread Ely Greenfield
  I hear you Jason, but there's only so many hours in the day.   > 3d bar/pie charts, Yeah, that's something we don't support.   > animations for when the chart loads   Can you Describe what you're looking for?   > rotating axis labels   Flex charts support those, if you use embedded f

RE: [flexcoders] Re: FusionCharts under Flex

2006-06-06 Thread Ely Greenfield
    I'll check out the fusion charts when I get a moment.   In the meantime, I'll forward your suggestion ( a good one ) on to our doc guy.   And regarding samples...you're absolutely right, for a new platform like Flex, you can't underestimate the value of samples and docs ( I think MSDN

RE: [flexcoders] trouble with second axis in linechart (Scaling capabilities)

2006-06-08 Thread Ely Greenfield
      From your description, it sounds like it should be working.  But I'd need a working sample to really see if it's a flex bug or problem in your code. Can you strip it down to a barebones example of the problem? (esp. that doesn't require a server).   Thanks, Ely.   From: flexcoders@y

RE: [flexcoders] AxisRenderer Bug

2006-06-08 Thread Ely Greenfield
    Hi Brendan.  I think I actually just fixed this bug in the mainline a few days ago. If you have a simple reproducable file you could send me, I can verify it.   Thanks, Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan MeutznerSent: Thursday, June

RE: [flexcoders] AxisRenderer Bug

2006-06-08 Thread Ely Greenfield
  styleName="axisStyle" dataTipFunction="formatDataTip">                                                                                                                                                                                    ----- On 6/8/06, Ely Greenfield <[EMAIL PROTECTED]> wrote:     Hi Brendan

RE: [flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-09 Thread Ely Greenfield
      flipping the skins in an editor and reapplying them is probably the right answer. But you could try just setting the scale of the scrollbar to -1 ;)   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel TuppenySent: Friday, June 09, 2006 3:48 AMTo:

RE: [flexcoders] Flex 1.5 LineChart question

2006-06-09 Thread Ely Greenfield
                  Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jgraham_usSent: Thursday, June 08, 2006 8:53 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Flex 1.5 LineChart question I have a LineChart, I want to

RE: [flexcoders] Turning on / off display of chart series

2005-06-28 Thread Ely Greenfield
    Jeff -- I believe you'll have to remove the series from the array.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff BeemanSent: Tuesday, June 28, 2005 4:38 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Turning on / off disp

RE: [flexcoders] Turning on / off display of chart series

2005-06-28 Thread Ely Greenfield
      Sure. No promises of course, but I imagine this will be fixed in 2.0.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff BeemanSent: Tuesday, June 28, 2005 5:15 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Turning on /

RE: [flexcoders] Dynamic LineSeries color doesnt work

2005-07-07 Thread Ely Greenfield
What type of chart are you using? Series in a chart get an 'internalStyleName' from the enclosing chart. Each series gets a different internalStyleName. Different chart types have different internal style names for their series. The LineSeries has internalStyleNames that have strokes applied f

RE: [flexcoders] Mixing BubbleSeries & LineSeries

2005-07-12 Thread Ely Greenfield
It is possible to do this, but you actually should just use a BubbleChart and include some LineSeries. Here's the short version of what's going on: Bubble series have three axes of data -- x, y, and size. Accordingly, any chart they get placed in must have three axis objects to map the data

RE: [flexcoders] line width in line chart

2005-07-12 Thread Ely Greenfield
Set the stroke: Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Tuesday, July 12, 2005 8:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] line width in line chart Importance: High Is the

RE: [flexcoders] Charting from a TreeNode

2005-08-08 Thread Ely Greenfield
Can you send a sample of the data you're loading from the RO? And point out which sub-section you want to display in the chart. Thanks, Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of digital_eyezed Sent: Monday, August 08, 2005 9:20 AM

RE: [flexcoders] Re: Charting from a TreeNode

2005-08-08 Thread Ely Greenfield
s(sales:Number):Void{ this.onesales = sales; } } The RemoteObject returns an array of these. I want to show the data from the onesales ... sevensales with the label as the categoryfield label. Cheers, Iain --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: >

RE: [flexcoders] Re: Charting from a TreeNode

2005-08-08 Thread Ely Greenfield
the data on the bottom chart. Sorry for not making it clear enough before. --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > Still not quite clear on what you're trying to do here. You have an array of InfoVO objects...but you don'

RE: [flexcoders] Some questions about Bar Chart in Flex

2005-08-22 Thread Ely Greenfield
Title: Mercury Email Signature       Hi Shlomi --   The way to do this in Flex 1.5 is to write a custom renderer.  you'd want to do something like the following:   class myCustomFill implements mx.charts.renderers.interfaces.BoxRenderer {     ...    public var selectedIndex:Number;    p

RE: [flexcoders] Charting Components w/in Repeater

2005-08-29 Thread Ely Greenfield
Your (a) thought looks like a likely candidate. CategoryAxis objects don't inherit their dataprovider from the chart...you need to assign them explicitly. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dave buhler Sent: Saturday, Augu

RE: [flexcoders] Charting Components w/in Repeater

2005-08-29 Thread Ely Greenfield
arrChart; } MXML On 8/29/05, Ely Greenfield <[EMAIL PROTECTED]> wro

RE: [flexcoders] Charting Components w/in Repeater

2005-08-29 Thread Ely Greenfield
nce I am using a repeater, I am clueless about how to access the dataProvider of the CatagoryAxis as well as the dataProivder of the chart. I can see how I would communiate with the chart, but not the axis. On 8/29/05, Ely Greenfield <[EMAIL PROTECTED]> wrote: > > > OK, here&#x

RE: [flexcoders] column chart, stacked + single-value

2005-09-29 Thread Ely Greenfield
Hi Tom. Sorry to say, this is not supported in Flex 1.5. Although a good request for Flex 2. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick Sent: Thursday, September 29, 2005 12:52 PM To: flexcoders@yahoogroups.com Subj

RE: [flexcoders] Waterfall chart

2005-10-05 Thread Ely Greenfield
Hi Tom. The best way to do this is to pre-process your dataprovider into a synthetic one that has all of the summed values in it. Use that as the dataprovider for the chart, and set the various min/max fields of the series appropriately. Ely. -Original Message- From: flexcoders@yahoo

RE: [flexcoders] Waterfall chart

2005-10-06 Thread Ely Greenfield
Sure Tom. You've got the basics in your outline below. Basically, you want something like: Function genDP(original:Array):Array { var result:Array = []; for(var i=0;imailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick Sent: Thursday, October 06, 2005 7:17 AM To: flexcoders@yah

RE: [flexcoders] Re: Hands-on charts

2006-11-29 Thread Ely Greenfield
hook that lets the function know which item in the dataProvider array is associated with the point data? - Tom Ely Greenfield wrote: > > > Yup. To do mouse tracking, you generally need a mouse down, mouse > move, and mouse up handler. Almost all of my code that does m

RE: [flexcoders] Chart :Clipping segment from a line serie

2006-11-29 Thread Ely Greenfield
By default, series filter out datapoints not in the min/max range. If you set the filterData property to false, they'll render all points. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claude Hussenet Sent: Wednesday, Nov

RE: [flexcoders] Re: Hands-on charts

2006-11-29 Thread Ely Greenfield
vent documented. ChartItemEvent gives me the HitData and access to the item, but I seem to lose the mouse tracking in the process. - Tom Ely Greenfield wrote: > > > > > That depends on what you're trying to do specifically. > > The easy answer would be to say that this only works

<    1   2   3   4   5   >