IDForums

Members
  • Content count

    79
  • Joined

  • Last visited

About IDForums

  • Rank
    Advanced Member
  1. Labels And Axis Names Look Fuzzier In Ie9

    Also, I am using using fc:render. <fc:render chartId="topInst" swfFilename="${folderPath}${chartData.column3DFilename}" width="240" height="300" debugMode="false" registerWithJS="false" xmlData="${chartData.topInstXml}" renderer="javascript"/>
  2. Labels And Axis Names Look Fuzzier In Ie9

    Sorry, I forgot to post my code. <?xml version="1.0" ?> <chart animation="1" baseFontSize="10" bgColor="FFFFFF,E1E1E1" canvasPadding="10" caption="Tests Delivered Today" chartBottomMargin="0" chartLeftMargin="10" chartRightMargin="10" chartTopMargin="10" formatNumberScale="0" labelDisplay="rotate" palette="4" placeValuesInside="1" plotSpacePercent="10" rotateValues="1" seriesNameInToolTip="0" showBorder="1" showValues="1" slantLabels="1" yAxisName="Test Counts"> <set label="Univ of S.." tooltext="Univ{br}of South{br}Carolina -{br}English Programs{br}for Internationals{br}{br}Tests:161" value="161"/> <set label="ABC Cod Commun.." tooltext="ABC{br}Comm{br}Tests:1" value="1"/> <set label="XYZ Cape C.." tooltext="XYZ{br}Comm{br}Tests:9" value="9"/> <set label="Brook Commu.." tooltext="Brook{br}Comm{br}Tests:9" value="9"/> <set label="Anne Arundel Co.." tooltext="Anne{br}Arun Comm{br}Tests:2" value="2"/> <styles> <definition> <style font="Verdana" name="CaptionFont" size="12" type="Font"/> <style font="Arial" name="myToolTipFont" size="9" type="font"/> </definition> <application> <apply styles="CaptionFont" toObject="CAPTION"/> <apply styles="myToolTipFont" toObject="ToolTip"/> </application> </styles> </chart>
  3. I am using FusionCharts 3.2.2 and IE9. The font for labels and axis names look fuzzier and blurred. I have used default settings provided and have not used any custom styles. The font looks fine on IE8 and below. Please suggest. I am attaching screenshot for your reference.
  4. Chart Caption Alignment

    I am trying to use caption font styles but I don't seem to align Caption to left/right, it defaults to center. Is this related to browser? <style name='CaptionFont' type='Font' font='Verdana' size='12' align='left' />
  5. How To Handle Long Tootips

    Hi Sumedh, That worked great for tooltips and I assume the same approach works for captions and sub-captions. But when I used {br} in sub-caption, it looks weird in Firefox, but looks fine on chrome. See attached screenshot. subCaption='(Click below to view details){br}** Updated every day **'
  6. How To Handle Long Tootips

    Hi, I am trying to display really long tooltips. When I place my charts side-by-side, some long tooltips are displayed underneath the next chart. Do you have any suggestions? I tried useEllipsesWhenOverflow=1 but that din't seem to fix my tooltip issue. See attached screenshot for your reference. Thanks!
  7. Jsp Code For Ipad

    Hi Angshu, Have you had a chance to look at the code? Looking forward for your reply. Thank you!
  8. Jsp Code For Ipad

    Angshu, I still have issues with chart rendering. The problem is that I am trying to feed output from one JSP from another JSP page. I could not find any examples for this scenario. Any help is highly appreciated. Code in JSP1: String TopInstTestCounts=""; TopInstTestCounts = "TopInstTestCounts.jsp"; .... <fc:render chartId="${chartData.chartId}" swfFilename="${folderPath}${chartData.swfFilename}" width="${chartData.width}" height="${chartData.height}" debugMode="true" registerWithJS="false" [b]xmlUrl="<%=TopInstTestCounts%>" [/b]renderer="flash/javascript"/> Please find the attached code in JSP2 and its output. output.xml TopInstTestCounts.jsp.txt
  9. Jsp Code For Ipad

    Thank you Angshu. But, as soon as I add attribute renderer="javascript", I see 'Invalid Data' message (both on browser and iPad). Here are some relevant code snippets: <head> <script language="javascript" src="Files/js/FusionCharts.js"></script> </head> .... String outputStr="TopInst.jsp"; .... <td> <fc:render chartId="TopInstTestCounts" swfFilename="Files/Column3D.swf" width="250" height="300" registerWithJS="true" xmlData="<%=outputStr%>" debugMode="false" renderer="javascript" /> </td>
  10. Jsp Code For Ipad

    Hi, I am using fusioncharts v3.2.2 and would like to make necessary modifications to make it iPad compatible. I have placed FusionCharts.js, FusionCharts.HC.js, FusionCharts.HC.Charts.js and jquery.min.js in my Files directory. I see blank charts on my iphone. Here's my JSP code: <jsp:include page="../Files/FusionChartsRenderer.jsp" flush="true"> <jsp:param name="chartSWF" value="../Files/MSLine.swf" /> <jsp:param name="strURL" value="Data/Data.xml" /> <jsp:param name="strXML" value="" /> <jsp:param name="chartId" value="dailyCounts" /> <jsp:param name="chartWidth" value="600" /> <jsp:param name="chartHeight" value="300" /> <jsp:param name="debugMode" value="false" /> <jsp:param name="renderer" value="javascript" /> </jsp:include>
  11. FusionCharts behaviour in IE

    Hi Srividya, I am trying to replicate this issue by creating a simple application. I will send you the source code when I am done. Thanks, Mona
  12. FusionCharts behaviour in IE

    Srividya, I am using encodeDataURL as suggested. IE behaves as expected only for the first 2 clicks. In the sense, the charts refresh when I am navigating from 5d link to 15d link. When I come back to 5d link, it still shows 15d data. Attached is the source code for your reference. -Mona. index.jsp-with Encoding.txt
  13. FusionCharts behaviour in IE

    Hi Srividya, This solution worked great! I have another question...I am aware that its not specific to Fusion Charts but it will be great if you can provide me a solution. When I pass params to JSP link, its always picking up only first param and ignores the rest. For ex, in the below string, only metric id is recognized and I still have the issue with cache since currentTime is passed as second param. String kpiBulb="bulbChart_KPI.jsp?childMetricId="+childMetricId+"&noCache="+currentTime; If I change the order of params, then I am able to resolve cache problem but no value is passed for metric id. Can you please suggest me? Thanks, Mona.
  14. FusionCharts behaviour in IE

    Hi Srividya, Sorry about that. Please find the attached source code. Thanks, Mona. index.jsp.txt
  15. FusionCharts behaviour in IE

    Hi there, Thanks for your reply. But I am still having the same problem. Attached is the source code for index.jsp. Could you please verify and let me know what could be the remedy? Thanks, Mona index.jsp.doc