Julian

Members
  • Content count

    4
  • Joined

  • Last visited

About Julian

  • Rank
    Forum Newbie
  1. Hi, I am currently using the Free version and want to inquire whether this problem also exists in 3.2 or is addressed/fixed... When you have overlapping data points in a multi series graph (i.e. multiple '0' values), only one series is identified during mouseover. Is there an option to make the mouseover tooltip list all the points that are under the cursor if they overlap?
  2. Swf Always Requests Data.xml

    Hi, I have found that the swf is always calling my server for Data.xml even though I set my jsonUrl. This is wasteful of server bandwidth, CPU and also causes a log line to be written as below. Is this a known issue? Can you guys look into fixing it in the next release. 16:36:56,939 INFO [sTDOUT] 5177975 [http-0.0.0.0-8080-3] WARN org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/mvc/reports/Data.xml] in DispatcherServlet with name 'portal'
  3. Customize Label Format For Pie Chart

    Just an update in case anyone is curious. I tried labelSepChar="\n" and it does put a newline. So now I have it with a newline, just in the wrong order. Rendering seems ok with the newline. This might be good enough for us - but it would be nice if you could format the labels with placeholders, like {l} and {v} for label and value, maybe.
  4. Hi, My company is considering purchasing a license. In our design we have the pie data labels like this. If we have a set like this <set label="ABC" value="123"/> Then we want it to appear like this: "123\nABC" where \n is a linebreak. Is it possible to provide a label format? Even if linebreak is not supported, being able to provide format would be a plus. I did see labelSepChar, but newline does not work (tried the {br} pseudocode), and you cannot change the format anyway.