andrei

Members
  • Content count

    24
  • Joined

  • Last visited

Everything posted by andrei

  1. Drag Node Chart - Link Issue

    Hi, I need to setup some url links in the Drag Node Chart. I check your examples e.g. http://www.fusioncharts.com/PowerCharts/docs/Gallery/DragNode/DragNode3.html , but even this does not work. I believe I'm doing something very wrong, can you help me ? Thanks in advance !
  2. Drag Node Chart - Link Issue

    Thank you for the fast answer, it's all Ok now ! I searched through the docs but somehow I missed this
  3. Drag Node Chart - Link Issue

    The code is the same as in the example link from the demo site above. I will attach it also here. Thank you ! drag node links.xml
  4. Hi, I have the following problem: My chart is being refreshed every 5 sec, the chart export time is bigger then 5 sec, so I need to start / stop the refresh when the export begins/ends. I'm using server side exporting and the export is done via JS: function saveChartAsImg() { var chartObject = getChartFromId(chartId); if( chartObject.hasRendered() ) { chartObject.exportChart({exportCallback : 'saveChartAsImgCallback'}); } } My XML looks has the options: "exportEnabled", "1" "exportAction", "download" "exportShowMenuItem", "0" I need the "exportAction" set to "download" but then the callback will not work anymore. What sholud I do ? Thanks in advance ! :D
  5. Zoom charts

    Hi, Can someone tell me if a 'Zoom feature' will be available for the Scatter plot chart in the near future ? Thank you !
  6. Highchart Issue

    Hi, I have a small problem with the highchart feature. I attached the xml to the topic. The problem seems to be related to the big values from X axis. I'm using a Scatter chart. Please advise. test.xml
  7. Highchart Issue

    Error attached. It looks like the script enters an infinite loop.
  8. Force decimals on Y axis

    Hello, I'm using a Scatter chart and I can't force decimals on the Y axis. I want to add the extra '000...' at the end. Now the chart shows me: "5,340,343" instead of "5,340,343.00". Each number must have 2 decimals even is they are '00', is this possible ? ( I set the attribute yAxisValueDecimals=2 ) Thank you v much !
  9. Force decimals on Y axis

    Hi, I attached the XML data file and a small screen capture. Thank you ! test.xml
  10. Force decimals on Y axis

    The attribute "forceDecimals" is set to '1', but it seems that this affects only the values that have some decimals ( value: 5,034,044.349 is converted to 5,034,044.35 ). My problem is: for the numbers with no decimals, the extra zeros are not added. This is not so bad...but the chart looks a bit unorganized.
  11. Client side export

    I made a small test on client side export demo from http://www.fusioncharts.com/demos/exportChart/Contents/client_export.html If I export the chart 2 times, using the right click menu, the export flash component is disabled and the status is 'Waiting'. Is this the normal behavior ?
  12. Client side export

    I made the test directly on http://www.fusioncharts.com/demos/exportChart/Contents/client_export.html Just right click on the chart and pick 'Save as JPEG', 2 times.
  13. X axis item labels on 2 rows

    Hi, I have a small question: How can I display an item label, on X axis on 2 rows like: name 1 name 2 ? I'm using JAVA, I tried separating the names by '' but there is no change. Is this possible ? Thanks. P.S. I attached a sample of the XML code. sample.xml
  14. X axis item labels on 2 rows

    Solved by: http://www.fusioncharts.com/forum/Topic10931-6-1.aspx#bm10935 . Thank you !
  15. X axis item labels on 2 rows

    Hi, the link above is very useful, but my problem is simpler . I want one label for one column. The label content has a lot of chars. Label content example: 'FirstName1 LastName1 FirstName2 LastName2'. I want the label to be displayed on two rows, with the line break after 'LastName1', like: FirstName1 LastName1 FirstName2 LastName2 . If possible the label should be rotated diagonally:D. Is this possible ?
  16. Umlaut chars

    Hi, I want to display a X-axis label that contains some umlauts like:
  17. Umlaut chars

    Hi again, sorry for this topic entry, I updated my version and now it works. Thank you !
  18. Umlaut chars

    Hi again, the provided link doesn't work [page not found], is there a problem with the page ? Thanks.
  19. Umlaut chars

    The chars are correctly displayed horizontally. My code uses a JspWriter ( inside a custom tag ) and when I try to write the byte array...it just gives me a jsp error, because the bytes are written inside the jsp ( html ) code. Am I doing something wrong ?
  20. Umlaut chars

    The data is dynamically passed and the encoding is OK. The thing is that the titles are displayed diagonally, could this be the problem ? If yes, what can be done ? Thank you :Whistling:
  21. Trend line info

    Hi, here's a small question. Can I add the info for a trend line in the legend ? Thanks !