SergeyT

Members
  • Content count

    19
  • Joined

  • Last visited

About SergeyT

  • Rank
    Junior Member
  1. Thank you. Works well.
  2. Hello. How can I disable interactive Legend in Pie-chart? I want Legent to be visible, but when I press on the signs in it, no action should occure. Now I set slicingDistance ='0', but this is not the best solution, I think. And in documentation (http://docs.fusioncharts.com/charts/contents/AttDesc/Pie_DoughnutChartAtrributes.html) I can't find anything useful.
  3. Scatter: Vertical Lines Distance

    Yes. That's what I need. Thank you very much. FusionCharts support is the best!
  4. Scatter: Vertical Lines Distance

    Hello. It seems, maually setting of x-values is not suitable solution for me. My algorytm of vertical lines is simple and following: I bring minimal x-value (minimal from all points on chart), maximal x-value and make 10 lines between them with corresponding step. In good case, lines begins from the left side of chart (pic 2 in base post) In bad case lines begins somewhere in middle and ends also in the middle area (pic 1). I can not see any reason why these lines couldn't be started from the left side (like in pic2). Why they are concentrated in the middle? So, to clarify the question. What should I do to have vertical lines spreaded among whole chart area but have my x-values not changed.
  5. Scatter: Vertical Lines Distance

    Thank you very much for an answer. Could you attach the xml-data for your sample, please. (I try to get suitable x-valus, but unsuccessfully for now)
  6. Hi. Please, tell me if it is possible to manage the distances between vertical lines on a scatter chart? In most cases scatter looks good, but in several cases (jpeg and xml attached) I would like to refine the view. I want to spread these lines on whole chart area (see good_scatter.jpg) Thank you. chart_scatter.txt
  7. Xaxys Values Don't Render In Js In Bar2D

    Oooops, not so fast! ))) Our company has a licence on Fusion Charts and thats was ok. But now with these beta-scripts, "FusionCharts" signature applyes to every chart. What am I to do?
  8. Xaxys Values Don't Render In Js In Bar2D

    Oh, guys! You are really great support! New beta files work fine and my problem with x-axis values is solved now. I'm so happy. Thank you very very much!
  9. So I've got the result from support: "As of now, for JavaScript charts, saving to server is not possible using HTML5 charts. As of now, it only allows you to download the exported images to client-side." Therefore I will use flash rendering in case when server export is needed. Thank you for help.
  10. Ok. I made a sample asp.net project. Where could I email it for best?
  11. Xaxys Values Don't Render In Js In Bar2D

    ver 3.2.2. I've got simple test page like this. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type="text/javascript" src="/Scripts/jquery-1.4.1.js"></script> <script type="text/javascript" src="/Scripts/FusionCharts.js"></script><script type="text/javascript" src="/Scripts/FusionMaps.js"></script> </head> <body> <button value="aaa" onclick="f1()">aaa</button> <div id="regions_chart" style="width:600px; height:300px; background-color:#a00;"></div> <script language="javascript" type="text/javascript"> function f1() { FusionCharts.setCurrentRenderer('javascript'); var chrt = new FusionCharts('/Content/Charts/Bar2D.swf', "Graph419370_5", "100%", "300", "0", "1"); chrt.setXMLData('<?xml version="1.0" encoding="utf-16"?><chart xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" > <set label="s1" value="16" /> <set label="s2" value="11" /> <set label="s3" value="11" /> </chart>'); chrt.render("regions_chart"); } </script> </body> </html> -- and result is on the first picture attached. When I don't use ' FusionCharts.setCurrentRenderer('javascript'); ' the result is correct on second picture. I see trouble in javascript rendering...
  12. Hi. I've got problem: when I try to export chart on server-side and use exportChart() in HTML5 rendering mode, it makes server export good, but it aslo tries to save the image on client machine. When chart renders in flash mode, only server export performs, as it must to be. v.3.2.2. var chartObject = getChartFromId('some_Id'); if ( chartObject.hasRendered() ) chartObject.exportChart( );
  13. Html5/js Maps, Iphone Ready

    Hi. Could you tell, please, when we can see Fusion Maps in Html 5 rendering? Maybe some approximate date?
  14. Xaxys Values Don't Render In Js In Bar2D

    Hi. Nothing special. I make bar2d chart and give it these data. When chart renders in flash, on xAxys I see: 0,4,8,12,16, 20 and when chart renders in javascript, on xAxys I see: 12, 16, 20 (0,4,8 - absent)