How to convert from line chart data to CSV format

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default How to convert from line chart data to CSV format

    Hi ,
    I am using Flex 3 and AS.
    I am getting data from MS SQL and display the data as line chart this is ok.
    But i want to convert this line chart data to CSV or .xsl format.I find one
    example in fourms the from data grid to CSV
    For this URL is
    [url]http://www.abdulqabiz.com/blog/archives/flash_and_actionscript/datagriddataexpor[/url]
    ter.php
    But i want Line chart to CSV.Please help me.

    Venkat272808 Guest

  2. Similar Questions and Discussions

    1. stacked Bar chart/Line chart hybrid- Charting
      Hi all, I have a requirement to have a stacked bar graph, with a line graph on the same chart. Has anyone here done this before? Apparently there...
    2. Refreshing chart data doesnt update chart
      I must be missing something simple here. I have a column chart that is using an array for its dataprovider. However, when I update the underlying...
    3. Display chart line and data points at y=0 on top of axisline--not under it
      Does anyone know how to do this? I have a simple AreaChart with several data points, some of the y values are zero. Flex extends the y-axis to...
    4. Question about get web service result in actionscriptand convert data format
      Hi, All I have question about how to get dataset from web services and put it in tree structure. I have 2 questions about this: 1, How can I...
    5. DRKv5 3D Line Chart line width, rendering problems
      I am using the DevNet Resource Kit Version 5 3D Charting components. The line chart component has a minimum line width parameter, but the minimum...
  3. #2

    Default Re: How to convert from line chart data to CSV format

    Line chart is a just a visual representation of some data that's sitting in
    your database. Isn't it? You load this in Flex, probably using HTTPService
    class, and pass it to some chart object.

    Now when use says that she needs it in CSV format, you're gonna have to send
    another request to the server to produce the same data, convert into CSV or XLS
    format and let user download it.

    Of course, if use doesn't want to download, you don't have to go to the
    server, at least for CSV format. You can convert the same data that used plot
    the chart to convert to CSV.

    Am I missing something here?

    ATTA

    atta707 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139