nomori

Members
  • Content count

    20
  • Joined

  • Last visited

Everything posted by nomori

  1. I upgraded to version XT, the chart is not drawn to errors such as file attachments(screen shot from IE debugger). (Error message is "Invalid Argument".) Do you have any problems. My code is as follows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title></title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <link href="./css/style2.css" rel="stylesheet" type="text/css" /> <script src="./FusionCharts/FusionCharts.js" type="text/javascript" language="Javascript"></script> </head> <body> <!-- #include file="./FusionCharts/FusionCharts_Gen.asp" --> <% myItem=Array(Array(10000,20000,18000,50000,70000),Array(12000,20000,21000,60000,75000)) myItemLabel=Array("a","b","c","d","e") dim FC set FC = new FusionCharts call FC.setChartType("StackedBar2D") call FC.setSize("400","200") call FC.setSWFPath("./FusionCharts/") Call FC.setInitParam("debugmode",True) dim strParam strParam="showLegend=1;stack100Percent=1;showPercentValues=1;showPercentInToolTip=1;" ' Set chart attributes call FC.setChartParams(strParam) ' Add category names call FC.addCategory("gr1", "", "") call FC.addCategory("gr2", "", "") for i=0 to 4 ' Create a new dataset call FC.addDataset(myItemLabel(i), "") ' Add chart values for the above dataset call FC.addChartData(myItem(0)(i), "", "") call FC.addChartData(myItem(1)(i), "" , "") next call FC.renderChart(false) %> </body> </html
  2. Category Link Doesn't Work

    I have just upgraded from FusionCharts v3.1 to 3.2.2. Category label link does not work correctly. If one works category. (Please see "this is work.xml") I work with two or more categories. (please see "not work.xml") What should I and how. Moreover, when two or more categories, after the label has been omitted but will be added "..." Can I choose not to like this. not work.xml this is work.xml
  3. Category Link Doesn't Work

    Thank you for your help. As you mentioned,ran the chart from local file system. if I run the chart from web site. It run correctly. But,carried out a Flash Player Global Security Settings, from local files that do not work properly. I should have another set available?
  4. Can the label of context menu "Print Chart" be customized?
  5. I upgraded to version XT, the chart is not drawn to errors such as file attachments(screen shot from IE debugger). (Error message is "object dosent support this property or method" or is "undefined is null or not an object".) Do you have any problems. My code is as follows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title></title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <link href="./css/style2.css" rel="stylesheet" type="text/css" /> <script src="./FusionCharts/FusionCharts.js" type="text/javascript" language="Javascript"></script> </head> <body> <!-- #include file="./FusionCharts/FusionCharts_Gen.asp" --> <% myItem=Array(Array(15,10,10,30,35),Array(20,10,15,25,30)) myItemLabel=Array("a","b","c","d","e") dim FC set FC = new FusionCharts call FC.setChartType("StackedBar2D") call FC.setSize("400","200") call FC.setSWFPath("./FusionCharts/") dim strParam strParam="numberSuffix=%;showLegend=1;" ' Set chart attributes call FC.setChartParams(strParam) ' Add category names call FC.addCategory("gr1", "", "") call FC.addCategory("gr2", "", "") for i=0 to 4 ' Create a new dataset call FC.addDataset(myItemLabel(i), "") ' Add chart values for the above dataset call FC.addChartData(myItem(0)(i), "", "") call FC.addChartData(myItem(1)(i), "" , "") next call FC.renderChart(false) %> </body> </html>
  6. Yes, I am rendering the charts in IE 8. As you said, was to enable compatibility mode error did not occur. On the compatibility mode is disabled, how to avoid errors available? Thanks.
  7. Was due to a cached file of an older browser. A new error has occurred, however. Topic has posted a new one.
  8. In my application, it draws in the chart by using asp class. How should be described the code though it wants to invalidate autoInstallRedirect?
  9. Customize "print Chart" Menu Label

    Hi,Sanjukta . Thanks for your reply. However, what I had wanted to say seems not to have been transmitted. It is a character string of the label that want to change. for example,like 'Print Chart' to 'Print it!'.
  10. Can the font of CAPTION be partially changed? (For instance, in the following codes.) <chart caption='Sales<font color="#ff0000">Jan </font> ' /> ... <styles> <definition> <style name='CaptionValueStyle' type='font' isHTML='1' size='12' /> </definition> <application> <apply toObject='CAPTION' styles='CaptionValueStyle' /> </application> </styles> </chart>
  11. thanks for your help. It knows it. However, my wanting to change is at a part of the character string. Does the method exist? For instance, to the following Monthly Revenue(2010)
  12. Invalidate Autoinstallredirect

    I want to control the display of the message "You need Adobe Flash Player 8 (or above) to view the charts. It is a free and lightweight installation from Adobe.com. Please click on Ok to install the same." in the environment in which Adobe Flash Player is not installed. How to write the code it with asp class. it is understood to write the code it in javascript.
  13. Is there a reference that explains the object model, the method, and the property of Javascript?
  14. Can a supplementary line on Stacked-Column-2D-Chart like the Attachment(.png)?
  15. The value of Primary-Y-axis Values and Secondry-Y-axis Values disappears when setting it as follows. My XML code: &ltchart showValues='0' showDivLineSecondaryValue='1' showYAxisValues='1' showSecondaryLimits ='0' yAxisValuesStep ='50' SYAxisMaxValue ='150' &gt &ltcategories&gt &ltcategory label='??'/&gt &ltcategory label='??'/&gt &lt/categories&gt &ltdataset seriesName='??'&gt &ltset value='17258231' /&gt &ltset value='5414412' /&gt &lt/dataset&gt &ltdataset seriesName='??'&gt &ltset value='15845440' /&gt &ltset value='4047458' /&gt &lt/dataset&gt &ltdataset seriesName='???' renderAs='column' parentYAxis='S'&gt &ltset value='91.8138133624472' /&gt &ltset value='74.7534173609249' /&gt &lt/dataset&gt &lttrendLines&gt &ltline valueOnRight='1' parentYAxis='S' startValue='100' color='FF0000' displayValue='100' dashed='1'/&gt &lt/trendLines&gt &lt/chart&gt Are there an attribute etc. that should be set at the same time?
  16. Hi! Sanjukta I got it! And I was able to want to do. Thank you for your help.
  17. valueOnRight does not work

    "valueOnRight" does not work on MSCombiDY2D.swf Why doesn't work? Where should be searched for? xmlcode:
  18. valueOnRight does not work

    It have been done! Thank you so much for your help.
  19. valueOnRight does not work

    Hi!Basundhara Ghosal thank you for your reply. but It doesn't work well though the attribute was set as follows as say by you. Besides, is there a setting that should be done? Is the order that it is necessary to describe the attribute is provided? Or, when it is an evaluation version, has the function been limited? my XmlCode is: &ltchart showValues='0'&gt &ltcategories&gt &ltcategory label='Sales'/&gt &ltcategory label='FoodCost'/&gt &ltcategory label='LaborCost'/&gt &ltcategory label='MiscCost'/&gt &ltcategory label='Profit'/&gt &lt/categories&gt &ltdataset seriesName='lastyear'&gt &ltset value='12237674' /&gt &ltset value='3069476' /&gt &ltset value='3472187' /&gt &ltset value='0' /&gt &ltset value='5696011' /&gt &lt/dataset&gt &ltdataset seriesName='thisyear'&gt &ltset value='9941934' /&gt &ltset value='2498975' /&gt &ltset value='2883477' /&gt &ltset value='0' /&gt &ltset value='4559482' /&gt &lt/dataset&gt &ltdataset seriesName='vs' renderAs='column' parentYAxis='S'&gt &ltset value='81.2403893092756' /&gt &ltset value='100.21337151454' /&gt &ltset value='102.221297453575' /&gt &ltset value='' /&gt &ltset value='80.0469310891429' /&gt &lt/dataset&gt &lttrendLines&gt &ltline valueOnRight='1' startValue='100' color='FF0000' displayValue='100' dashed='1'/&gt &lt/trendLines&gt &lt/chart&gt