The UberChart plugin gives you the ability to generate charts based on XML data.

To configure an XML data source, proceed as follows:

  • In the Source -> Type option, set “XML”.
  • In the Source -> URL option, set the URL of the XML source.

XML Structure

You should format the linked XML file like in the following examples.

Standard Chart

<data>
    <row>
        <cell>Entity 1</cell>
        <cell>Entity 2</cell>
        <cell>Entity 3</cell>
        <cell>Entity 4</cell>
    </row>
    <row>
        <cell>27</cell>
        <cell>48</cell>
        <cell>51</cell>
        <cell>13</cell>
    </row>
    <row>
        <cell>21</cell>
        <cell>41</cell>
        <cell>31</cell>
        <cell>23</cell>
    </row>
</data>

Scatter Chart

<data>
    <row>
        <cell>Entity 1</cell>
        <cell>Entity 2</cell>
        <cell>Entity 3</cell>
        <cell>Entity 4</cell>
    </row>
    <row>
        <cell>27/38</cell>
        <cell>48/72</cell>
        <cell>51/41</cell>
        <cell>13/36</cell>
    </row>
    <row>
        <cell>21/31</cell>
        <cell>41/71</cell>
        <cell>31/31</cell>
        <cell>23/26</cell>
    </row>
</data>

Bubble Chart

<data>
    <row>
        <cell>Entity 1</cell>
        <cell>Entity 2</cell>
        <cell>Entity 3</cell>
        <cell>Entity 4</cell>
    </row>
    <row>
        <cell>27/38/60</cell>
        <cell>48/72/40</cell>
        <cell>51/41/11</cell>
        <cell>13/36/22</cell>
    </row>
</data>