Need Help In Flash/Flex Line Charts...Output should be like stock exchange chart

Hello Friends,
I need a small help from you guys.
I want to do a line chart example in flash cs3 or in flex. Actually my requirement is getting the data from external file ie xml and with that i want to display a line chart with some time interval just like stock exchange charts for example.
I have to do this either in flex or in flash cs3. i dont have any ideas how to proceed. can anyone help me out on this. i need it asap.
Thanks
Rajesh

hi
flex has charting components you can use. see: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/charts/LineChart.htm l (example at the bottom of page)

Similar Messages

  • How to display a goal line in a Flash 2D Line Chart?

    Hello,
    I am using Apex 3.0.1 and have a Flash 2d Line Chart displaying a ratio that varies from 1.0 to 1.6 for every month for a year. I need to draw a goal line at 1.2 to show the goal for the ratio. Also, I have grid lines enabled for the y-axis.
    Any pointers/tips on how to accomplish displaying this goal line would be really useful.
    Thanks and Regards,
    Dev

    I'm having the same problem!
    APEX is relatively new to me. CUSTOM XML for tweaking charts is even more recent. I tried to get a goal line to work in a line chart as you described but I have had no success. I really require a target/goal/reference line in a vertical bar chart but getting it to work in a line chart would be a welcome first step.
    I have tried the following 2 samples of code without success:
    <objects>
    <line value='94' text='Target' text_position='right' color='0xFF3300' size='1' alpha='100'/>
    </objects>
    and
    <objects>
    <trend start_value='94' end_value='94' start_argument='' end_argument='' value='' color='0xFF3300' thickness='1' alpha='100'/>
    </objects>
    ==> in the following blocks of the CUSTOM XML:
    <chart .....</chart>
    <chart..<line_chart .....</line_chart>..</chart>
    <workspace> .. <chart_area .....</chart_area> ..</workspace>
    <workspace> .. <y_axis .....</y_axis> ..</workspace>
    <workspace> .. <grid> ..<values .....</values ..</grid> ..</workspace>
    <workspace> .. <grid> .....</grid> ..</workspace>
    Any idea where I am going wrong or what could be missing? Maybe I'm not putting the <objects> parameters in the correct place in the code?
    System Info:
    Product Build: 3.0.1.00.07
    NLS_CHARACTERSET: WE8MSWIN1252
    DAD CHARACTERSET: UTF-8
    JOB_QUEUE_PROCESSES: 10
    Database Version Information
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE 10.2.0.3.0 Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Thanks for any help!
    Lawrence

  • Need help for flash builder

    i need help for flash builder 4 and papervison 3d. I need to create a slider with it ranges of value from 10 to 50 to adjust the camera values for the camera.fov and also need to create it for the yaw of the object from 0 to 360. I try to look for any slider event and classes in this program but cant find any, btw, i need to use the AS only project file.
    here is my codes:
    can you please tell me how i should modify the codes?
    package
        import flash.display.BitmapData;
        import flash.display.Sprite;
        import flash.events.Event;
        import org.papervision3d.materials.BitmapFileMaterial;
        import org.papervision3d.materials.BitmapMaterial;
        import org.papervision3d.objects.primitives.Sphere;
        import org.papervision3d.view.BasicView;
        [SWF (width="800", height="600", backgroundColor="0x000000",frameRate="30")]
        public class EarthBitmap extends BasicView
            private var sphere:Sphere;
            public function EarthBitmap()
                super(800 , 600);
                var earthmaterial:BitmapFileMaterial = new BitmapFileMaterial("../assets/Earth.jpg");
                sphere = new Sphere(earthmaterial,100,20,18);
                camera.fov = 25;
                scene.addChild(sphere);
                addEventListener(Event.ENTER_FRAME,rotateSphere);
            public function rotateSphere(evt:Event):void
                sphere.yaw(0.2);
                singleRender();

    Turn the click handler into a full on separate function. Then store all the views in an array and use Math.rand() to randomly choose one.
    Something like this:
    <fx:Script>
         <![CDATA[
              var questionsArray:Array = {question2,question3,question5,questionRed,questionGeography};
              function buttonClickHandler(event:MouseEvent){
                   var randomProblem:int = Math.floor(Math.random()*(questionsArray.length));     //generates a random integer between 0 and the total number of questions in the array (arrays are 0-based)
                   navigator.pushView(questionsArray[randomProblem]);
         ]]>
    </fx:Script>
    <s:Button id="randomProblemButton" label="Next Problem" click="buttonClickHandler(event)" />
    Haven't tested that, but something along that line should work

  • Flash 2D Line chart

    I have a chart region - Flash 2D Line chart with two series based on different tables, both with dates along the X axis
    and a figure that represents hours up the Y axis. The idea is for two lines to be displayed on the same graph so they can be
    easily compared.
    series 1
    select null link, END_DATE label, PROJECTED_HOURS Projected_hours
    from "E_LOGBOOK"."TEST_PROJECTED"
    30/07/2009 700
    09/08/2009 800
    27/08/2009 9000
    series 2
    select null link, LIFING_DATE label, ACTUAL_HOURS Current_Hours
    from "E_LOGBOOK"."TEST_ACTUAL"
    30/07/2009 800
    09/08/2009 1000
    27/08/2009 12000
    When I run the chart with the data above it displays as I would expect, the dates label in chronological order along the bottom with the Correct value plotted for each series.
    However if I insert a row into the LIFING_DATE table (second series) so it contains additional data for the 14/08/2009
    30/07/2009 800
    09/08/2009 1000
    14/08/2009 1201
    27/08/2009 12000
    And then re run the chart this last date and value displays to the right of the existing dates so we have 30/07/2009 09/08/2009 27/08/2009 then 14/08/2009 along the X axis.
    I would have expected the new data to fit in the existing range so that 30/07/2009 09/08/2009 14/08/2009 27/08/2009 would display along the bottom.
    I am an oracle forms programmer new to APEX (and html, javascript,XML etc) trying to prepare a demo to my manager of what we can do with apex so any help appreciated.
    If possible is there a solution without using Third party apps or bi publisher.
    Thanks Pete

    Hi Andy,
    Thanks for your quick response. If I'm correct in understanding what your saying is that with 2D Line charts that have two series in order for them to display togethor then the label must appear in both series.
    I've had a bash using your sql for the 1st series and modifying the second series.
    Series 1
    SELECT NULL LINK,
    X.THE_DATE LABEL,
    Y.PROJECTED_HOURS VALUE
    FROM
    (SELECT END_DATE THE_DATE FROM TEST_PROJECTED
    UNION
    SELECT LIFING_DATE THE_DATE FROM TEST_ACTUAL
    ) X
    LEFT OUTER JOIN TEST_PROJECTED Y ON X.THE_DATE = Y.END_DATE
    ORDER BY X.THE_DATE
    07/30/2009 700
    08/09/2009 800
    08/14/2009
    08/27/2009 9000
    Series 2
    SELECT NULL LINK,
    X.THE_DATE LABEL,
    Y.ACTUAL_HOURS VALUE
    FROM
    (SELECT END_DATE THE_DATE FROM TEST_PROJECTED
    UNION
    SELECT LIFING_DATE THE_DATE FROM TEST_ACTUAL
    ) X
    LEFT OUTER JOIN TEST_ACTUAL Y ON X.THE_DATE = Y.LIFING_DATE
    ORDER BY X.THE_DATE
    07/30/2009 800
    08/09/2009 1000
    08/14/2009 1201
    08/27/2009 12000
    This is a great improvement the series 2 now displays fine and all the points for series 1 are plotted correctly but it seems like the null value prevents the joining of the coordinates in this series. All the points 700,800 and 9000 are displayed correctly but the graph line only joins 700 and 800.
    Any further ideas? Thanks Pete

  • Flex line chart

    hi i have a flex line chart with some line series. What I
    wanted to do is get access to the items property of the series. (
    this contains the x, y values etc).
    Question is at what stage during of rending do i need to do
    this?
    Ive tried the following but at each attempt the items
    collection was 0.
    Creation complete of the chart
    creation complete of the series
    thanks

    There is info about accessing the properties of the series in
    the docs here:
    http://livedocs.adobe.com/flex/3/html/charts_eventsandeffects_12.html
    hth,
    matt horn
    flex docs

  • Flex Line Chart Vertical marker

    Hi, I have a flex line chart and what I want to do is have an
    a vertical marker that extends to the outside the chart area at the
    last point.
    Does anyone have any ideas?
    Very smilar to this...
    http://tomgutz.wordpress.com/2007/12/17/flex-custom-chart/
    Thanks

    Here is a perfect example of what I cannot decipher:
    http://flex.amcharts.com/examples/chart_with_multiple_value_axes
    ^ You can even see the source code here. I believe they call it a "chart cursor".
    Any idea what the mouse is doing, and how to get that line into a standard FLEX Linechart?
    I see this a lot but have no idea what it's called....

  • Need help Installing Flash player 10.3 for firefox. It stops at 50%

    So I have Windows Vista Basic Home, I tried updating my Flash version in firefox because it was out of date, but everytime it start downloading it , then I get the a message that says "Error " Appliation in use."  I uninstalled it and followed all the suggestions on the websites nothing is working. I even  uninstall google chrome thinking it was the problem but I'm still having that problem so I really don't know what to do because now the only place Flash player is installed seems to be Google chrome that I had to redoawload, but everywhere else tells me that I need to install it.

    RE-RE-RE REPITO, NO ENTIENDO NADA DE INGLES, PARA ESTE IDIOMA SOY COMPLETAMENTE NULA, POR FAVOR TODOS LOS MENSAJES, NOTAS, ECT., MANDEN EN ESPAÑOL.
    Date: Thu, 29 Sep 2011 15:13:29 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help Installing Flash player 10.3 for firefox. It stops at 50%
        Re: Need help Installing Flash player 10.3 for firefox. It stops at 50%
        created by Kpiebo in Installing Flash Player - View the full discussion
    I have been at it since yesterday and it's still not working.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3945878#3945878
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3945878#3945878. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Installing Flash Player by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I need help installing flash on windows 8

    I need help installing flash on windows 8

    Chris… No I was using the desktop version, I cannot stand the M version, guess it would be nice if I had  a touch screen..…when I finally got my computer to download the Acrobat Standard XI program, not sure how it worked, but I think it had something to do with Windows 8 not allowing itself to update all my apps and programs, even though my computer was set to automatically update any Windows/Microsoft updates…finally I got my Windows updates done, it downloaded like 36 files…and then I had to restart,(which also could have been playing a factor)…so finally got the program downloaded on Windows 8…but then I tried to run the new program and it says install serial #...so I assume that it was asking for the serial # for the Acrobat Standard XI…finally after googling the web, I found somebody that said try your older serial # from the previous program, and when I did this it finally works.. you would think with a brand new Windows computer I would have no problem installing Windows Updates…somebody needs to make a sticky about this, I am sure I am not the only one haiving this problem..
    Thanks,

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • I need help restoreing my ipod nano 3rd gen so its like new

    I need help restoreing my ipod nano 3rd gen so its like new

    Plug it to your computer using iPod USB Cable (any cable should work excluding iPhone 5 and Shuffle cables)...... when you see your iPod in iTunes go to that iPod and click restore...... the whole process should take (depending on what you have on your iPod and its is up to date) it should take no longer than 30 minutes...... then it will ask if you want to set up as new iPod or restore from back-up (itunes back up), since you said:
    so its like new
    click set as new iPod and follow through what they said.

  • Need help trying to use close button and i really like to know why it off

    need help trying to use close button and i really like to know why it off

    And in English? You need to explain better.
    Mylenium

  • Hey i need help my iphone 5 all of a sudden has like an all white border around it and sometimes it has a blank screen what seems to be the problem?

    hey i need help my iphone 5 all of a sudden has like an all white border around it and sometimes it has a blank screen what seems to be the problem?

    Try turning off the following:
    Settings>Mail, Contacts, Calendars>Push>OFF
    Settings>Notifications>Mail>Gmail>Notification Center>OFF
    Settings>Mail, Contacts, Calendars>Fetch New Data>Off

  • Drawing dashed line or dotted line in a flex line chart

    Friends,
    I want to draw a line chart which should be either dotted or dashed.
    since there is no component like dashed line chart, can anyone help me in creating one.
    i think if i extend the line series component, then i can draw that.
    but am stuck there. pls help people.
    Regards,
    Anoop

    Try looking [url http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html]here.
    : jay

  • DW8 - Need help with Flash Mirror Gallery by Flashdevelopment24

    I just purchased an image viewer called Flash Mirror Gallery by Flashdevelopment24:
    http://www.flashdevelopment24.com/extensions/flash_photo_gallery_06.aspx
    I use DW8. Unfortunately the wizard and the instructions are WAY beyond me. I can insert the object on my page but I have no clue how to import images into it, do I need to create separate thumbnails?, etc. Its a European company and the English isn't taht great either which doesn't help.I went through all their FAQs and examples and I don't have a clue.
    I'm doing something very simple, all I need are VERY simple directions on how to make this work. It would be best if there was a YouTube or other video tutorial available. I paid 45 buck for this and it useless to me right now. Help!

    I paid 45 buck for this and it useless to me right now. Help!
    Sorry can't help, don't know the product at all.
    If you are having problems with it, then it's best to contact the people you purchased it from no?  They should either help you with support issues, you you should get a refund if it doesn't work as expected.
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

Maybe you are looking for