yatin baraiya

Members
  • Content count

    3
  • Joined

  • Last visited

Everything posted by yatin baraiya

  1. HY My load xml in the fusionchart is below <?xml version="1.0"?> <chart labelDisplay="ROTATE" slantLabels="1" caption="Downloads (by organisation)" subCaption="" xAxisName="Organisation name" bgColor="FFFFFF" formetNumberScale="0" showYAxisValues="0" numDivLines="0" showBorder="1" canvasBorderThickness="1" canvasBorderColor="#FFFFFF" showCanvasBase="1" plotGradientColor="" placeValuesInside="0" canvasbgColor="E5F2F8"> <styles> <definition> <style name='MyCaptionFontStyle' type='font' face='Verdana' size='12' bold='1'/> <style name='myBevel' type='Bevel' angle="90" distance='1'/> </definition> <application> <apply toObject='Caption' styles='MyCaptionFontStyle' /> <apply toObject='subCaption' styles='MyCaptionFontStyle' /> <apply toObject='Canvas' styles='myBevel'/> </application> </styles> <set label='cop' value='0' /> <set label='yatin-1 – – –' value='0' /> </chart> and i will use above in jsp as below orgChart = new FusionCharts("./js/FusionCharts/Column3D.swf", "chart1Id", "100%", "100%", "0", "1"); orgChart.setDataURL(escape('above xml')); orgChart.setTransparent(); orgChart.render("testChart"); it will not display this character – in chart ,i had add this label "yatin-1 – – –". As well as it is also not support other language.and i have already try it this link "http://docs.fusioncharts.com/charts/?Code/J2EE/JSP_UTF8Example.html" but not get any solution please help me anybody for my problem solution. Thanks Yatin Baraiya
  2. FusionChart not Display Arabic

    Hy madam Can you look for the my issue. see the below link http://forum.fusioncharts.com/topic/11027-yatin-1-%E2%80%93-%E2%80%93-%E2%80%93-label-is-not-display-in-fusionchart/ Here i can't upload my doc file. so i paste my full xml file which is load in the jsp. <?xml version="1.0"?> <chart labelDisplay="ROTATE" slantLabels="1" caption="Downloads (by organisation)" subCaption="" xAxisName="Organisation name" bgColor="FFFFFF" formetNumberScale="0" showYAxisValues="0" numDivLines="0" showBorder="1" canvasBorderThickness="1" canvasBorderColor="#FFFFFF" showCanvasBase="1" plotGradientColor="" placeValuesInside="0" canvasbgColor="E5F2F8"> <styles> <definition> <style name='MyCaptionFontStyle' type='font' face='Verdana' size='12' bold='1'/> <style name='myBevel' type='Bevel' angle="90" distance='1'/> </definition> <application> <apply toObject='Caption' styles='MyCaptionFontStyle' /> <apply toObject='subCaption' styles='MyCaptionFontStyle' /> <apply toObject='Canvas' styles='myBevel'/> </application> </styles> <set label='cop' value='0' /> <set label='YAHOO – – & 'YAHOO123'" – – – – – –' value='0' /> <set label='与融合的图表字符问题的' value='0' /> </chart> in the above xml's both label will display with junk character.Not support the chinse character and – – currently i am using Version: 1.2 (1st November, 2007) of fusionchart.js. help me i need solution urgently. Thanks in advance Yatin Baraiya
  3. Yatin-1 – – – Label Is Not Display In Fusionchart.

    thanks for the fast reply sir i had already try with the below <%@ page session="false"%> <%@ page language="java" errorPage="" buffer="32kb" autoFlush="true" import="java.io.*"%><%@ taglib prefix="s" uri="/struts-tags"%><%@ taglib prefix="c" uri="/WEB-INF/taglibs/c.tld"%><% response.setHeader("Cache-Control", "cache, must-revalidate"); //HTTP 1.1 response.setHeader("Pragma", "public"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy server response.setContentType( "text/xml; charset=UTF-8" ); out.write(0xFEFF); %> <?xml version="1.0"?> in jsp as per suggested in the below link http://docs.fusioncharts.com/charts/contents/advanced/special-chars/SpChar.html here i paste the my full jsp file code but still i not able to display this character – in chart. <?xml version="1.0" encoding="UTF-8"?> <%@ page session="false"%> <META http-equiv="Content-Type" content="text/html;charset=UTF-8"/> <%@ page contentType="text/xml; charset=UTF-8" pageEncoding="UTF-8" language="java" errorPage="" buffer="32kb" autoFlush="true" import="java.io.*"%><%@ taglib prefix="s" uri="/struts-tags"%><%@ taglib prefix="c" uri="/WEB-INF/taglibs/c.tld"%><% response.setHeader("Cache-Control", "cache, must-revalidate"); //HTTP 1.1 response.setHeader("Pragma", "public"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy server response.setContentType( "text/xml; charset=UTF-8" ); out.write(0xFEFF); %> <chart labelDisplay="ROTATE" slantLabels="1" caption="Downloads (by organisation)" subCaption="" xAxisName="Organisation name" bgColor="FFFFFF" formetNumberScale="0" showYAxisValues="0" numDivLines="0" showBorder="1" canvasBorderThickness="1" canvasBorderColor="#FFFFFF" showCanvasBase="1" plotGradientColor="" placeValuesInside="0" canvasbgColor="E5F2F8"> <styles> <definition> <style name='MyCaptionFontStyle' type='font' face='Verdana' size='12' bold='1'/> <style name='myBevel' type='Bevel' angle="90" distance='1'/> </definition> <application> <apply toObject='Caption' styles='MyCaptionFontStyle' /> <apply toObject='subCaption' styles='MyCaptionFontStyle' /> <apply toObject='Canvas' styles='myBevel'/> </application> </styles> <c:forEach items="${orgDownload}" varStatus="index" var="downloadData"> <set label='yatin-1 – – –' value='0' value='${downloadData.orgDownloadCount}' <c:if test="${downloadData.orgDownloadCount>0}"> link='javascript:callChartTrail(<c:out value="${downloadData.orgId}"/>);' </c:if>/> </c:forEach> </chart>