hi. I m just wondering, combining column chart or stacked column chart with line series. Is it possible? I have been getting error combining them. thanks....
That should be possible. Just add a LineSeries to the data provider on a column chart. I seem to remember that one of the examples does a combination like...
hi. the example given was a bar chart. i had modify it to suit my needs where by an external xml file is use to plot the lineseries. in addition using the user...
If I'm simply using a BoxCellRenderer and have a simple button that I want to use to navigate (scroll) through the carousel items one at a time - WITHOUT...
There should be no difference between bar and column charts, except that you need to ensure that you're targeting the correct axis with your data. The numeric...
The Carousel itself doesn't have the ability to scroll. It's the skin that scrolls or changes layout. If you're familiar with Flex, the Carousel is like the...
Looking at the source for both Carousel.as and SelectableList.as, it appears that ListEvent.ITEM_CLICK isn't dispatched at all. That metadata is defined in...
Seems like the documentation is incorrect then b/c the method scrollToIndex() is defined as a method of the Carousel, not SelectableList. In the Carousel...
You're right, scrollToIndex() is overridden in Carousel. I'm not sure what it's meant to be doing, though. I wrote that class several years ago, and it was a...
By the way, for both my benefit and the benefit of others... If I wanted to implement ListEvent.ITEM_CLICK into Carousel.as so it actually worked, where would...
Hi Josh, I did see your other post... thank you. Since these components are now deprecated, we may just adopt these for our own internal use and fix things...
When the cell renderer is created, add an event listener for MouseEvent.MOUSE_CLICK. In the event handler, dispatch ListEvent.ITEM_CLICK. Be sure to remove the...
Ah! I was close! I did create a MouseEvent.MOUSE_CLICK event listener and handler but missed the idea of dispatching the ListEvent.ITEM_CLICK. Makes sense now....
You probably want to do it when the renderer is passed to removeChild(). Also, in the MouseEvent.CLICK handler, make sure to use event.currentTarget to ensure...
Same component, different topic. The carousel in my project lets the user to initiate a load sequence (i.e. a .swf) into a UILoader instance. My project is...
I'm glad to say I can answer my own question. To update the contents of a CarouselItem - for example the selectedItem within my carousel instance - I simply...
hello. is it possible to have the chart categorynames into two lines. the category name for each bar is pretty long. thus the graph chart tend to be smaller in...
You should be able to change the rotation of the chart labels. This should allow more labels to fit within the bounds without overlapping. If you need multiple...
Come to our Adobe Developer User Group meeting at Adobe HQ in SF. RSVP at : baadaug.org Here is the event................ August 30, 2011 - Flex Wrapper for...
Hello. What do you mean by rotation of the chart labels? I m pretty lost reading the documentation. Im currently using the stackedbarchart. Thus the chart get...
http://developer.yahoo.com/flash/astra-flash/classreference/com/yahoo/astra/fl/charts/CartesianChart.html#style:horizontalAxisLabelRotation On Sun, Aug 28,...
I get a property called generateCategoryLabels from my code complete trying to figure this out because it's exactly what I need: the ability to pass in a cat...
first thanks for the hard work it took to create these things - they're great for a couple of reasons I'd like to recompile the astra component set am working...