magbyr

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by magbyr

  1. Unicode input

    Thanks! Turns out that java doesn't write BOM to the UTF-8 outputstream. For anyone else having the same problem: write bytes 0xEF, 0xBB, 0xBF to the outputstream if the encoding used is UTF-8. I think UTF-16 contains BOM... Magnus
  2. Unicode input

    I'm trying to display a chart containing UTF-8 encoded characters. It seems that FusionCharts is displaying my characters in ISO encoding anyway. I am using the setDataURL method to point to a servlet feeding xml data in UTF-8 format. Am I doing something wrong, or doesn't FusionCharts support Unicode? Magnus