SergeyT
Members-
Content count
19 -
Joined
-
Last visited
About SergeyT
-
Rank
Junior Member
-
How Can I Disable Interactive Legend In Pie-Chart?
SergeyT replied to SergeyT's topic in General usage
Thank you. Works well. -
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.
-
Yes. That's what I need. Thank you very much. FusionCharts support is the best!
-
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.
-
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)
-
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
-
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?
-
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!
-
Angshu ?
-
Exportchart() In Html5 Tries To Save Image On Client In Server-Export Mode
SergeyT replied to SergeyT's topic in Javascript Problems
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. -
Exportchart() In Html5 Tries To Save Image On Client In Server-Export Mode
SergeyT replied to SergeyT's topic in Javascript Problems
Ok. I made a sample asp.net project. Where could I email it for best? -
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...
-
Exportchart() In Html5 Tries To Save Image On Client In Server-Export Mode
SergeyT posted a topic in Javascript Problems
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( ); -
Hi. Could you tell, please, when we can see Fusion Maps in Html 5 rendering? Maybe some approximate date?
-
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)