jayjaybee

Members
  • Content count

    9
  • Joined

  • Last visited

About jayjaybee

  • Rank
    Forum Newbie
  1. Hi there, I currently have the multi pie charts set up in both flash and in javascript. I have edited the source code to get the pies to behave with the proportions as shown, but i am having trouble with the javascript showing an erroneous line through the centre (something that the flash version doesnt do). Now, ive managed to get the firefox version to behave with a CSS override like so: svg .highcharts-point:nth-child(4) path { stroke-width: 0; } But I cant get the Ie version to work as it uses vrml. Any ideas for a fix either coming out, or by editing code or by css/DOM alteration? Many thanks James
  2. Saving Images Across Domains

    Hi there I have a chart which is on, say, www.domain1.com. However, this domain only supports ASP, and so i need to run either the PHP or ASP.NET on another domain (www.domain2.com) in order to generate the JPEG file from the chart. Now, pointing the exportHandler to www.domain2.com works if i set the exportAction to download, but when i set it to save, the chart cannot find the exportHandler on www.domain2.com. Don't ask me why i can run the chart and export handler on the same domain....it is my work being inflexible. I have tested my chart and scripts on the same domain with the exportAction set to save and i can confirm it does work, as the image is being generated on the server. So i hope i can have some of the following answers: Is it possible or even advisible to run the image handler on another domain to the chart. Is it something i can address with some of the security options in flash? Can a proxy script or something help? Is there a way to have an ASP version of this export handler :S Regards, James
  3. Line breaks

    Just as a follow up, i saw somewhere else on this forum that with the dataXML method , URL encoding is important. '<BR>' did not work, and then i found that '<BR>' did not work either. Bu URL encoding '<BR>', i found this did work! So for future notice, to get a '<BR>' to work in dataXML, it has to be formatted like so: '%26lt%3BBR%26gt%3B' Crazy huh?
  4. Line breaks

    Hi there Using <BR> encoded as <BR> worked on my test page (running the swf with a data.xml next to it), but it did not for my chart invoked using javascript and the dataXML method. As for the wrap...do i define a label length doing this? What is the tag for label length if so? Tanks, James
  5. Line breaks

    Is there a way of adding a line break on a label, so that it can appear over more than one line? Thanks James
  6. Chart rendering error using AJAX

    Im definately using pixels. The problem is only when i use ajax. When using ajax i DONT use the javascript method, just the straight embed method. Any ideas? I tried to put a javascript settimeout to give the chart data time set up, but to no avail
  7. Hi there i'm using ajax to display a multi level pie chart in a div using ajax. Most of the time is displays fine, but occasionally it will not render out correctly, with the data seemingly rendering to the upper left corner. Does anyone know what may cause this issue? Thanks James
  8. start of sub elements

    When creating, say, 3 pie elements in a multi level pie chart, is there any control as to where the first element is rendered. (i.e. like on 0 degree?). Is the start positioning of each element governed by any rule? Many thanks J
  9. Hi there. When creating a multi level pie chart, i wish to be able to specify the radius of the central element. Is this possible? At the moment, the radius of all element appears to be calculated automatically, and the pieRadius value will only affect the pie chart as a whole. I bascially need to be able to have a small central element with the rest of the elements left as automatic. Many thanks J