OZ BAR

Members
  • Content count

    6
  • Joined

  • Last visited

Posts posted by OZ BAR


  1. I update the JS, php, and the charts from  your update center no i have version fusioncharts/3.3.1-sr1.19666

    but i still have this error once in awhile

     

    As you can see in my attachment i have 2 charts in the same page but the bottom chart is not shown 

    the debug details are:

     

     

    Info: Chart loaded and initialized.
    Initial Width: 500
    Initial Height: 250
    Scale Mode: noScale
    Debug Mode: Yes
    Application Message Language: EN
    Chart Type: 3D Doughnut Chart
    Version: 3.3.1 (XT) 
    Chart Objects: 
    BACKGROUND
    CANVAS
    CAPTION
    SUBCAPTION
    DATALABELS
    DATAPLOT
    TOOLTIP
    LEGEND
     
    INFO: Chart registered with external script. DOM Id of chart is AP_CHART
    INFO: setDataXML method invoked from external script.
    INFO: XML Data provided using dataXML method.
    XML Data: <chart caption="Aged Payables" decimals="2" numberscalevalue="1000" numberscaleunit="K" pieradius="150" plotgradientcolor="" placevaluesinside="1" showvalues="1" showpercentagevalues="1" showlabels="1" issmartlineslanted="0"><set label="0 - 30 " value="879767.62218713" /><set label="31 - 60 " value="45105.291839292" /><set label="61 - 90 " value="329612.77241036" /><set label="0ver 91 days" value="1441644.7289151" /></chart>
    INFO: setDataXML method invoked from external script.
    INFO: XML Data provided using dataXML method.
    ERROR: Invalid XML encountered. An end-tag is encountered without a matching start-tag. Click the above "dataURL Invoked" link to see the XML in browser Or check the XML data provided.
     

     

     

    post-10188-0-50376200-1367486103_thumb.png


  2. Hi,

     

    I set the data of the chart Doughnut3D by setJSONData

    the JSON data is 

    {"chart":{"caption":"Aged Payables","decimals":"2","numberScaleValue":"1000","numberScaleUnit":"K","pieRadius":"170","plotGradientColor":"","placeValuesInside":"1","showValues":"1","showPercentageValues":"1","showLabels":"1","isSmartLineSlanted":"0"},"data":[{"label":"0 - 30 ","value":880691.40533252},{"label":"31 - 60 ","value":45047.696433047},{"label":"61 - 90 ","value":347023.7244094},{"label":"0ver 91 days","value":1423969.7591427}]}

     

    in one from 20 i get the error for invalid XML, i dont understand it, same data but different result

     

    Do you have any idea why it is?

     

    Thanks

    Oz


  3. Hi to all,

     

    We are tries to implement LinkedCharts with JQuery dialog as the same in the documentation http://docs.fusioncharts.com/charts/?JavaScript/JS_LinkedCharts.html

    We found that when we use IE or Chrome the chart is render fine but in Firefox is very slowly (you can see it in this example http://docs.fusioncharts.com/charts/Code/JavaScript/Basics/UsingLinkedCharts/jqdialog.html )

    Why it's so slowly? what we can do to render it more faster?

     

    Thanks you all

    Oz


  4. Dear All,

     

    I am trying to set new style to sub-Capitan, but when I add the style definition the chart is disappeared.

    What am I doing wrong?

     

     

    $strXML .= "<set label='" . ($year-1) . "' value='" . $yearStatistics2 . "'link='javascript:yearChanged(".($year-1).")'/>";

    $strXML .= "<set label='" . $year . "' value='" . $yearStatistics1 . "'link='javascript:yearChanged(".($year).")'/>";

     

    //Finally, close <chart> element

    $strXML .= "<styles>";

    $strXML .= "<definition>";

    $strXML .= "<style name='myCaptionFont' type='font' size='20'/>";

    $strXML .= "</definition>";

    $strXML .= "<application>";

    $strXML .= "<apply toObject='subcaption' styles='myCaptionFont' />";

    $strXML .= "</application>";

    $strXML .= "</styles>";

    $strXML .= "</chart>";

    return $strXML;

     

    Thanks

    Oz