Export flex chart to excel

How can I export an flex chart to excel? Does anyone have any sample code.

Yes, now it's easy with AIR2 (and AS3XLS):
http://coenraets.org/blog/2009/11/open-in-excel-another-air-2-mini-sample/
Thanks,
Oleg.

Similar Messages

  • Convert/Export Flex chart to MS Word

    Hi All,
    Please let me know how to Convert/Export the Flex Chart to MS Word...
    Please send the related links or samples if  you have.
    Thanks in advance.
    Regards,
    Seshadri Babu.G

    Well, "used to..." is not a good business case.
    They don't need to receive reports anymore, they can view them in the portal as needed. Viewing in Word is functionaly about the same as viewing in Excel if "receiving" is the preferred method for them.
    Having reports in PDF is better if they want to print.
    Or they can use Crystal reports as a last resort....  I think those might export to word.
    Webi is on-demand, ad-hock reporting, that's what's it for. Export to other formats is a secondary function.

  • Exporting bar charts to excel

    Hi All,
    I would like to export my bar chart to excel.When i googled, i did not get any relevant information regarding this topic. If anyone could help me in this regard with the code will minimize my burden to a greater extent.
    Thnaks for all ur support in advance

    uh, are you sure you don't want to export the DATA used to generate the chart instead?

  • EXPORT PIVOT CHART TO EXCEL

    Hi Experts ,
    I want to export the internal table data to the excel graph or chart .
    using OLE .( or any other method which u can suggest.)
    my internal table in having three col
    name
    val1
    val2
    Name should be Y Axis.
    Please suggest me the solution.
    right now am just displaying the graph using Business Object.
    But the requirment is the EXCEL OUTPUT with GRAPH or chart.

    Get your data into an ALV GRID (OO --NOT THE OLD SLIS FUNCTION MODULE VERSION)
    and a Toolbar with Transfer to EXCEL button on it.
    *Click on the EXCEL button you created and the Popup prompt will give you  options of a Pivot table amongst others.*
    *The EXCEL spreadsheet will be displayed in the Foreground with the pivot table options you want*
    *From here just use the Chart Wizard (built into EXCEL) to get your chart.*
    *You can of course save etc. On exit from excel you are returned to the GRID where you can EXIT  or perform further functions.*
    *You probably could use excel macros to generate a graph / chart automatically -- the EXCEL prompt also allows you to run macros --you need to see the popup to understand what I'm trying to post here --but I haven't tried that option yet.*
    method on_toolbar .
    type-pools icon.
    clear ls_toolbar.
         move  0 to ls_toolbar-butn_type.
         move 'EXCEL' to ls_toolbar-function.
         move  space to ls_toolbar-disabled.
         move  icon_xxl to ls_toolbar-icon.
         move 'Excel' to ls_toolbar-quickinfo.
         move  'EXCEL' to ls_toolbar-text. 
         append ls_toolbar to e_object->mt_toolbar.
        perform   toolbar  in program (caller) if found
         using e_object.
    endmethod.
    case e_ucomm.
          when 'EXIT'.
            leave program.
          when 'EXCEL'.
           call method me->download_to_excel.
          when 'SAVE'.
          when 'PROC'.
            call method me->process.
          when 'REFR'.
            call method me->refresh.
            when 'SWITCH'.
            call method me->switch.
           when 'TEST'.
            call method me->get_cell.
           endcase.
    endmethod.
    method download_to_excel.
    field-symbols:
           <fs0> type standard table,
           <fs1> type standard table.
        assign g_outtab1->* to <fs0>.
        assign g_fldcat1->* to <fs1>.
           call function  'LVC_TRANSFER_TO_KKBLO'
          exporting
            it_fieldcat_lvc   = <fs1>
    *     is_layout_lvc     = m_cl_variant->ms_layout
             is_tech_complete  = ' '
          importing
            es_layout_kkblo   = ls_layout
            et_fieldcat_kkblo = lt_fieldcat.
        loop at lt_fieldcat into lt_fieldcat_wa.
          clear lt_fieldcat_wa-tech_complete.
          if lt_fieldcat_wa-tabname is initial.
            lt_fieldcat_wa-tabname = '1'.
            modify lt_fieldcat from lt_fieldcat_wa.
          endif.
          l_tabname = lt_fieldcat_wa-tabname.
        endloop.
        call function 'ALV_XXL_CALL'
             exporting
                  i_tabname           = l_tabname
                  is_layout           = ls_layout
                  it_fieldcat         = lt_fieldcat
                  i_title             = sy-title
             tables
                  it_outtab           = <fs0>
             exceptions
                  fatal_error         = 1
                  no_display_possible = 2
                  others              = 3.
        if  sy-subrc <> 0.
          message id sy-msgid type 'S' number sy-msgno
                 with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
    endmethod.
    You might be able to use FM 'ALV_XXL_CALL' directly but you need to be aware that the field catalog is slightly different  which is why you need FM  'LVC_TRANSFER_TO_KKBLO'  to convert your ALV GRID field catalog to the one required by the XXL call.
    Cheers
    Jimbo

  • Exporting apex chart to excel

    hi
    Is it possible to export charts from apex ?

    Not export as such however, if you are using Apex V4 you can right click on the flash charts and save as image.
    Scott

  • WAD - Export Chart to Excel

    Hi @ all,
    when I try to export a chart to excel the chart is only partly seen. Means there are 50 categories but only 35 are displayed.
    Can anybody help? Which settings are wrong?
    Thanks in advance.
    Jule

    Good to see it worked for you Jule. Can you make it answered.
    Thank You!!
    H2H

  • Save flex chart to server

    Hello All
    I am in need of your help in saving a flex chart on to the server. Basically I want to export the chart to excel, as I dont find any resource for Flash builder 4, SDK 3.5, I opted the option of 1. saving chart as image to server and 2. accessing that image file in my excel
    Any sample codes should be very helpful, as this is quite urgent. Thanks!

    The problem was, that it is not possible to see the pdf directly from transaction AL11.
    I used the transaction CG3Y to move the file from the server to my desktop, and there I can see the pdf file.
    Solved
    Thanks for the input.

  • Access denied error while exporting chart to excel

    I need to export data from a gridview to chart in excel. Through system account credentials it works fine. But through a user's credentials its giving an access denied error. The gridview data is exported properly but the current chart which is displayed
    on page is not getting displayed in excel.
    So is there any other way to achieve this?
    I was thinking og saving it to virtual folder in the Site but I cannot figure out the exact code for it. Since file upload control is not involved, how to save the chart to the virtual folder. Any inputs on this?

    Hello,
    Would you mind if you use "runwithelevatedprivileges" in your code to execute code with admin privilege?
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.runwithelevatedprivileges.aspx
    >I was thinking og saving it to virtual folder in the Site
    Do you want to save excel in system folder or SP site folder?
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Export SQL Server report chart to excel as editable chart

    Hi,
    When I export the report in excel format the chart is displayed as picture. I want it to be displayed as editable chart.
    Does Office Writer work in this situation and did anyone use Office Writer to accomplish same type of problem.
    Is there any other method or product we can use instead of the office writer.
    Thanks.

    Hi Brad_user,
    Just as you said, the chart displays as a static image after exporting to excel, and it cannot be edit. The feature that a chart can be editable after exporting to Excel is not supported in current release of Reporting Services. One workaround for you is
    create a chart base on the same data in the excel level. Notice that there are many features supported on one side but not the other.
    Alternatively, if you have any concern about this, please submit a feedback at
    https://connect.microsoft.com/SQLServer/Feedback. Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software
    and services the best that they can be, and you can learn about and contribute to exciting projects.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Export Chart to Excel

    Hi guys,
    Is there a possibility (or workaround) to export a chart from BEx Web into BEx Analyzer?
    I only to succeed to export the data as such...
    Thanks for your quick help!
    Sabine

    Hi Sabine,
    there was a paper with the title how to web printing with Excel. I rememebr that most of the visible items has been imported into Excel - i cannot remember if charts works also. Just look in "Howto" section and try.
    Of course there was another paper as "howto" where javascript has been used to export to excel from web - try that also!
    Regards,
    Adem
    Message was edited by: Adem Baykal

  • Web Analysis - Exporting Chart to Excel

    Hello
    When I try to export a Chart from Web Analysis to MS Excel using Fully Formated option, it doesnot export the chart as it is. It converts it into spreadsheet and I can only see spreadsheet in the excel sheet. Is it how the export to excel suppose to work?
    I want the graph in the excel sheet.
    Regards
    Abhi

    Hi Mehmet,
    Firstly, thanks for taking the time out to reply.
    I followed the steps given in the link you posted.
    When I edit permission for the folder containing the reports, it does not reflect in Web Analysis in any way.
    For example: I assigned 'No Access' to a user to the entire folder, but yet the user is able to see the folder and the reports contained in it.
    Kindly help me with this.
    As for the 2nd issue, it has been sorted out and I can now export to Excel successfully :)
    Cheers,
    Sahil

  • Export the data of a chart to Excel format

    I developed Histogram and Bar diagram in java Graphics2D pkg. I want to export the data of the chart in Excel format so that the file can be opened in Excel tool.

    Is this something that might help....
    <!-- Loop through the range to create a poplist -->
    <%
    java.util.ArrayList alDepartments = new java.util.ArrayList();
    %>
    <select name="DepartmentId">
    <c:forEach var="listEntry" items="${bindings.DepartmentsListView1.rangeSet}">
    <c:set var="thisdept" value="${listEntry.DepartmentId}"/>
    <%
    //<c:out value='${listEntry.DepartmentId}'/>
    String strThisDept = ((Number) pageContext.getAttribute("thisdept")).toString();
    System.out.println( strThisDept );
    alDepartments.add( strThisDept );
    %>
    <c:choose>
    <c:when test="${listEntry.DepartmentId eq bindings['DepartmentId'].attributeValue}">
    <option value="<c:out value='${listEntry.DepartmentId}'/>" selected="true">
    <c:out value="${listEntry.DepartmentName}"/>
    </option>
    </c:when>
    <c:otherwise>
    <option value="<c:out value='${listEntry.DepartmentId}'/>">
    <c:out value="${listEntry.DepartmentName}"/>
    </option>
    </c:otherwise>
    </c:choose>
    </c:forEach>
    <%
    session.setAttribute("sessionalDepartments", alDepartments );
    %>
    </select>

  • Export Waveform Chart Plots data to spreadsheet file based on X scale (Time Stamp) min and Max Value

    Hi All,
    Query 1:I am trying to export the Chart data(Total plots 6 ) only between the X scale Min Time and Max time limit .
    But couldnt able to achieve that progammtically.
    is their anyway to achieve this.
    Query 2:Also ,In chart their is an  right click option to export data to excel,but when using this option the data get exported in its own temporary name(iv*****.tmp),i dont want this to happen.Instead the data expored using that option should be written in a file specified by me(everyting should happen in backend)
    pls suggest the best solution for above 2 queries.
    Thanks,
    Selvan.

    Hi selvan,
    1) read the chart history (or better keep a history in your own shift register) and limit the data to the XMin and XMax values (read all those chart settings from its properties). Then save the data using WriteToSpreadsheetFile…
    2) The right-click option is as it is. When you need different behaviour you need to program your own routine. Once you finished query 1 it will be no problem anymore to also solve query 2…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Displaying flex image in excel

    hi all, i need to display a flex image in excel, i tried with as3xls, for datagrid its coming but for chart i didnt get right track.. so suggest any links.. thnk in advance..

    hi all, i need to display a flex image in excel, i tried with as3xls, for datagrid its coming but for chart i didnt get right track.. so suggest any links.. thnk in advance..

  • Exporting analytic chart with dates

    Hi,
    I have an analytic chart with a list including some columns: id's names, dates, and amounts. This looks good in Sharepoint, but when I export the list to Excel, the dates are formatted as "General". They cannot be sorted or filtered as dates.
    I have tried having the date both as measure and attribute, but it makes no difference, it still behaves like text when it gets over to Excel. The closest I have is having the date as an integer and format as date is Excel, but of course, this looks rubish
    in Sharepoint.
    Any idea how I can get dates that looks and behaves like dates both in Sharepoint and the export to Excel

    Hi Jerry,
    I'm ALMOST there! If you could help me with one last thing it would be amazing. I've uploaded my number project and you can downloaded it on the link bellow, if you prefer.
    I managed to do the same idea chart as you have. However I would like to have two bars for every JOB (y-axis). On my table i've inputed for every job 4 values = START DATE that was scheduled / Duration period scheduled (this happens prior to the job itself // START DATE Delivered / Duration Period Delivered (this is the actual time the JOB took place). This way I can see at the end of a JOB if I worked during the period I planned.
    using your example on the chart above (your reply) Could Proposal have a bar 1.0 / 4.0 - and bellow this bar have another one (with different colours) that went from 2.0 / 5.0 - for example? - the first one representing the "scheduled dates"and the second one representing what actually happened.
    I managed to do the four bars but couldnt manage to have them bellow each other.
    Tks again for your help
    files.me.com/jujudavies/wgugl1.numbers.zip
    x'jul.

Maybe you are looking for

  • Azure File Storage - Creating a directory at the root level using REST

    I have a Xamarin / iOS project, and looking to use Azure File Share as a back-end. With that in mind, I'm playing around with the REST API and have generally got things working with (a) Blobs and (b) Account-level access to Files. Specifically, I can

  • Lower Cost P2 Media

    "Panasonic announced today a new series of memory cards called microP2 card, which have an SD card form factor.   The simultaneous introduction of a microP2 Card Adaptor assures that the new series of 64GB and 32GB microP2 cards will operate in curre

  • Changes to VO not available in Apps

    Hi, I have made some changes to my custom VO, copied the xml and class files to the correct directory on the server, however my changes are not available/visible in apps. I already cleared the mid-tier cache and bounced the Apache webserver, but with

  • Best browser to develop for ApEx, Firefox or Internet Explorer

    Greetings! I have a simple question, which is the best web browser for doing Oracle ApEx (Applications Express)? I already know the answer, Firefox, but Firefox is blacklisted by my current employer. My primary reason for asking such a question is to

  • Default fonts in structured interface

    Dipping a cautious toe in the exciting waters of structured documentation; or, rather, trying my hand at using structured FrameMaker instead of / as well as my usual DITA IDE. First minor question: The Courier font is not available The Zapfdingbats f