Plotting Charts from Delimiter-separated Data |
Using the Visual XML Generator tool, you can also plot charts from your data stored as delimiter separated data e.g., CSV (Comma Separated Values) or Tab separated Values. Delimited data uses specific characters (delimiters) to separate its values. Any character may be used to separate the values, but the most common characters used are the comma, tab and space. For example, in a comma-separated values (CSV) file the data items are delimited using commas. Delimited data is divided into columns and rows. Each line is a row of data. The lines are separated by carriage return character. For example, the following data is delimited by comma character and newline characters: |
Jan,$17400 Feb,$19800 Mar,$21800 Apr,$23800 May,$29600 |
In the above data, there are two columns of data - month and sales figure. Each row represents a month and is separated by carriage return character. The delimiter here is comma, as that separates two data items on the same row. A delimiter is a sequence of one or more characters used to specify the boundary between data columns in a given row. More examples of delimited data: |
Jan;$17400 |
Example of semi-colon separated data |
Jan $17400 |
Example of space separated data |
You can also have multiple columns of data in the same row. For example, in the data below, we've 7 columns of data in each row separated by comma. |
10/28/2006,23.300,23.540,22.900,23.080,16,383,998 |
Qualifiers |
If your data contains the delimiter as a part of data, you'll need to use qualifiers to escape that character sequence. For example, if your data is : Doe, Mary $550 45 and you want to separate it using commas, you'll have to use double quotes as qualifier as under in FusionCharts XML GUI: "Doe,Mary","$550","45" Note that all the data fields would have to use the qualifier now - and not just the field that contains the delimiter. Let's now see how to build charts from delimiter separated data. Before that, we reiterate that in FusionCharts XML GUI, you'll have to:
|
Converting delimiter separated data into chart |
We'll now convert the following comma separated data into a chart. |
Jan,$17400 Feb,$19800 |
To do so, launch the XML Generator and select the second option "I want to copy-paste my data from spreadsheet / table..." |
![]() |
In the text area that you now get, paste the CSV data. Also, select Comma as the delimiter and leave qualifier as none, as we do not have a qualifier in this data. |
![]() |
Now, you've two options to convert it into XML:
To choose option 1, click on "Convert to XML" button. You'll instantly get the XML as under: |
![]() |
You can now configure the chart properties or generate HTML from here as explained in earlier sections. Going back to previous step, if you had wished to edit the data before conversion, you can click on "Edit and Convert" button. This lets you edit your data in a grid as under: |
![]() |
After editing your data, you can now click on "Convert to XML" button to generate the XML and finally chart. |