Sign in to follow this  
JonathansCorner.com

Pain Point: "please Call Our Helpdesk"

Recommended Posts

I've run into a pain point in how FusionCharts exports CSV.

 

CSV can be exported to clipboard. However, if this is posted to Excel, Excel respects line breaks but does not respect CSV: everything is posted into the leftmost column, as per the screenshot.

 

There is a song and dance that will let people get the CSV interpreted: click on "Data", then "Text to Columns," then "Next", then uncheck "Tab", then check "Comma", then Finish, and finally the CSV is interpreted as a spreadsheet. I believe the English translation to this song and dance is, "Please call our helpdesk."

 

On setups where JPG/PNG/PDF can be downloaded, could there be an option to download CSV, which Excel would open and interpret as CSV more easily and naturally?

post-14037-020316700 1306511098_thumb.png

Edited by JonathansCorner.com

Share this post


Link to post
Share on other sites

Hi,

 

Could you please try once setting exportDataSeparator='{tab}' in <chart> and try again. My Excel in mac seems to respond well using this.

 

post-179-094158100 1306562723_thumb.jpg

 

The XML that I used is :

<chart caption='Weekly Sales Summary' showExportDataMenuItem='1' exportDataSeparator='{tab}'
  xAxisName='Week' yAxisName='Sales' numberPrefix='$' >
       <categories>
           <category label='Dec'/>
           <category label='Jan'/>
           <category label='Feb'/>
           <category label='Mar'/>
           <category label='Apr'/>
           <category label='May'/>

       </categories>

       <dataset seriesName='current'>
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
       </dataset>
       <dataset seriesName='2010'>
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
           <set value='123123' />
       </dataset>
</chart>

Share this post


Link to post
Share on other sites
Guest Angshu

Hi,

 

Thank you very much for your appreciation.

 

Keep FusionCharting!biggrin.gif

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this