Arindam

Members
  • Content count

    730
  • Joined

  • Last visited

Posts posted by Arindam


  1. Hi,

    Could you please try using  &chartWidth=900&chartHeight=300  with in  flashvars and also check swf path?

    e.g

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" >

      <param name="movie" value="../FusionCharts/Column3D.swf" />

      <param name="FlashVars" value="&dataXML=<chart><set label='1' value='1' /><set label='2' value='2' /></chart>&chartWidth=900&chartHeight=300" /> 

      <param name="quality" value="high" />

      <embed src="../FusionCharts/Column3D.swf" flashVars="&dataXML=<chart><set label='1' value='1' /><set label='2' value='2' /></chart>&chartWidth=900&chartHeight=300" quality="high" width="900" height="300" name="Line" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />  

      </object>


  2. Hi,

    Could you please add flashvars with in <embed> ?

    <div width="520">

      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca b#version=6,0,0,0"" width="500" height="500">

      <param name="movie" value="http://jolenta.com/FusionCharts/FusionCharts/FCF_Column3D.swf" />

      <param name="FlashVars" value="&dataURL=http://jolenta.com/FusionCharts/Data/Data.xml&chartWidth=500&chartHeight=500" />

      <param name="quality" value="high" />

      <embed quality="high" type="application/x-shockwave-flash" pluginspage="http://macromedia.com/go/getflashplayer" width="500" height="500" src="http://jolenta.com/FusionCharts/FusionCharts/FCF_Column3D.swf" FlashVars="&chartWidth=500&chartHeight=500&dataURL=http://jolenta.com/FusionCharts/Data/Data.xml" />

      </object>

    </div>


  3. Hi,

    Could you please add FlashVar ?

    <object classid="clsid<img align="absmiddle" src="http://www.fusioncharts.com/forum/Skins/Classic/Images/EmotIcons/BigGrin.gif" border="0" title="BigGrin">27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0&quot;" width="500" height="500">

    <param name="movie" value="http://jolenta.com/FusionCharts/FusionCharts/FCF_Column3D.swf"></param><param name="FlashVars" value="&dataURL=http://jolenta.com/FusionCharts/Data/Data.xml&chartWidth=500&chartHeight=500"></param>

    <param name="quality" value="high"></param>

    <embed src="http://jolenta.com/FusionCharts/FusionCharts/FCF_Column3D.swf" FlashVars="&chartWidth=500&chartHeight=500&scaleMode=noScale〈=EN&dataURL=http://jolenta.com/FusionCharts/Data/Data.xml" quality="high" width="500" height="500" name="column2d1"  allowScriptAccess="always"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"  ></embed>

    </object>


  4. Hi,

    Please follow this.

    using FusionCharts.php

    renderChart($chartSWF, $strURL, $strXML, $chartId, $chartWidth, $chartHeight, $debugMode=false, $registerWithJS=false, $setTransparent="")

     

    example:

     renderChart("column3d", "", $strXML, "abcd", "400", "300", false, false, true);

    Javascript example

    var chart_column2d1 = new FusionCharts("FusionCharts/Column2D.swf", "column2d1", "500", "300", "0", "0");

    // set Transparent

    chart_column2d1.setTransparent("true"); 

    //Provide entire XML data using dataXML method 

    chart_column2d1.setDataXML(""); 

    chart_column2d1.render("column2d1Div");


  5. Hi,

    According to your folder structure 

    c:vs2005fcTestFusionCharts

    if you will kept BasicDBExample.aspx.vb and BasicDBExample.aspx with in c:vs2005fcTestFusionCharts then FusionCharts.js and FusionCharts swf file path will be like this. Please follow it.

    FusionCharts.js path with in BasicDBExample.aspx file

    <script language="Javascript" type="text/javascript" src="JSClass/FusionCharts.js"></script>

    SWF path with in BasicDBExample.aspx.vb file

    Return FusionCharts.RenderChart("swf/Pie3D.swf", "", xmlData.ToString(), "FactorySum", "600", "300", False, False)


  6. Hi,

    you can use <chart>  attribute - showValues='0' .

    e.g.

    <chart ... showValues='0' ... >

    also you can follow this.

    showPercentValues Boolean 0/1 Whether to show percentage values in labels of the chart?
    showPercentInToolTip Boolean 0/1 Whether to show percentage values in tool tip?
    showLabels Boolean 0/1 Whether to show labels on the chart?
    showValues Boolean 0/1 Whether to show values on the chart?

  7. Hi,

    Please follow this.

    Trend-lines
    Using the <trendLines> element (and children <line> elements), you can define trend lines on the chart.

     

    Trend lines are horizontal/vertical lines spanning the chart canvas which aid in interpretation of data with respect to some pre-determined value. For example, if you are plotting sales data of current year, you might want to add previous year's average monthly sales as trend indicator for ease of comparison.

     

    For each trend line on the chart, you need to define a <line> element under <trendLines> element as under:

     

    <trendLines>

    <line startValue='895' color='FF0000' displayvalue='Average' />

    </trendLines>

    You can control the cosmetic and functional properties of trend-lines using the following attributes:

    Attribute Name Type Range Description
    startValue Number Numeric Value The starting value for the trendline. Say, if you want to plot a slanted trendline from value 102 to 109, the startValue would be 102.
    endValue Number Numeric Value The ending y-axis value for the trendline. Say, if you want to plot a slanted trendline from value 102 to 109, the endValue would be 109. If you do not specify a value for endValue, it would automatically assume the same value as startValue.
    displayValue String If you want to display a string caption for the trend line by its side, you can use this attribute. Example: displayValue='Last Month High'. When you don't supply this attribute, it automatically takes the value of startValue.
    color String Hex Code Color of the trend line and its associated text.
    isTrendZone Boolean 0/1 Whether the trend would display a line, or a zone (filled colored rectangle).
    showOnTop Boolean 0/1 Whether the trend line/zone would be displayed over data plots or under them?
    thickness Number In Pixels If you've opted to show the trend as a line, this attribute lets you define the thickness of trend line.
    alpha Number 0-100 Alpha of the trend line.
    dashed Boolean 0/1 If you've opted to show the trend as a line, this attribute lets you define whether the trend line would appear as dashed?
    dashLen Number In Pixels If you've opted to show trend line as dash, this attribute lets you control the length of each dash.
    dashGap Number In Pixels If you've opted to show trend line as dash, this attribute lets you control the length of each dash gap.