Using Apostrophe Sign on chart |
|
When using dataURL method |
When using dataURL method, you need to encode apostrophe as ' as under: |
<chart> <set label='John's Count' value='420' /> <set label='Mary's Count' value='295' /> <set label='Tom's Count' value='523' /> </chart> |
You'll now get the following output: |
When using dataXML method |
When using dataXML method, you need to encode apostrophe character to %26apos; - else, you'll get an "Invalid XML error". Following is the full HTML Code to embed the chart: |
<div id="chart1div"> |
You'll again get the same output as before. |