harish
Members-
Content count
5 -
Joined
-
Last visited
About harish
-
Rank
Forum Newbie
-
Print Scaling Issues - Printing FusionWidgets from IE Browser
harish replied to jh_bax's topic in FusionWidgets XT
Hi, We are facing the same issue - the IE browser prints all the Fusion charts in a small scale. Is there an ETA for the fix your team is working on? Are there are any temporary workarounds meanwhile? Regards, Harish. -
Thanks Santa! Unfortunately, changing the height is not an option for me. With 250 as the height I am still getting the overlap. Also, even with 350 as height the values may still overlap depending on the data (as i said the data is dynamically fetched) and the yAxisMinValue,YaxisMaxValue (which are again dynamically calculated based on the data). Regards, Harish.
-
Hi, I am using the following XML for the ScrollColumn2D chart. <chart numDivLines="9" yAxisMaxValue="80" yAxisMinValue="-30" adjustDiv="0" > <categories> <category label="A"/> <category label="B"/> </categories> <dataset> <set value="-27.4" /> <set value="73.7" /> </dataset> </chart> The script used to render the chart is as follows- <div id="chartdiv" align="center"> FusionCharts. </div> <script type="text/javascript"> var chart = new FusionCharts("Charts/ScrollColumn2D.swf", "ChartId", "650", "250", "0", "0"); chart.setDataURL("Data/Test.xml"); chart.render("chartdiv"); </script> On the rendered chart, label 3 overlaps with the label 0 on the YAxis. Screenshot is attached. Can we suppress or change the position of label 0 so that it is NOT in line with other div line labels above and below it? The data points are generated dynamically so i have little control over the data. I have seen this overlap happen for several instances of data. Any other ideas or suggestions would be greatly appreciated. My main concern is to avoid the overlap of labels on y axis. Thanks in advance for your help, Harish.
-
Thanks a lot Pallav. A little dissappointed to know that there are no work arounds for MAC FF print issue. I was also considering the option of converting the chart to an image on the server side and displaying it on the web page. Is it possible at all to do that in ASP? I could not see any export handlers for ASP. Also, for Windows FF print issue - I did not find any .fla files. We have a site license which means we do not have the .fla files. So I guess there is no other way for me to recompile them with a specified height/width..Right?? Regards, Harish.
-
Hi, We are using fusion charts to show some bar graphs on a ASP website. They all render well in all the browsers but seem to have issues while printing (using browser print option) in Firefox browser Specifically there are two issues - 1. Charts do not print at all in Firefox 3.0 on MAC OSX 10.6.5 version. All I see is a blank space on the area of the paper where chart is supposed to get printed. 2. Charts get truncated on the right in firefox 3.x version for Windows. Was able to achieve some success by reducing the width. (Not the most satisfactory solution but works for me temporarily) Can somebody please point me towards some work arounds for these issues (especially the issue#1)? Regards, Harish.