RredCat

Members
  • Content count

    5
  • Joined

  • Last visited

Everything posted by RredCat

  1. I have the liquid bar chart in my app. It is somethig like to this example. It worked nice with jquery-1.7.2. But when I had started to use jquery-1.9.1 water level was allways 0. I have tried to inclue jquery-migrate - without any effect. I have read this thread on this forum but this doesn't help me. Could anybody suggest me a way to fix it?
  2. Cylinder Gauge doesn't work with jquery-1.9.1

    Hi Haritha, Thank you for your respond. I am using '@version fusioncharts/3.2.3-release.4749'. Looks like that my version is prior. What you could suggest me in my case? Does your company have something like to jQuery migrate?
  3. Hi, I try to use Cylinder widget on my project. It'has worked perfect till I try update charts on fly. I have created widget in the next manner: var chartName = "myChartId<%:name %>"; var myChart = new FusionCharts("../../Content/FusionGauge/Cylinder.swf", chartName, "150", "200", "0", "1"); myChart.setDataXML("<chart showBorder='0' cylFillColor='" + '<%:color %>' + "' lowerLimit='0' upperLimit='100' numberSuffix=' ltrs.' bgColor='FFFFFF'><value>" + <%:mainTankLevel %> + "</value></chart>"); myChart.setTransparent(true); myChart.render("chartdiv<%:name %>"); This part works perfect. But I try to update charts. It doesn't work. I tried to write next bellow (under first part) var chartObj = getChartFromId(chartName); chartObj.setDataXML("<chart showBorder='0' cylFillColor='FF2631' lowerLimit='0' upperLimit='100' numberSuffix=' ltrs.' bgColor='FFFFFF'><value>50</value></chart>"); This still doesn't work and I catch next error. That "setDataXML" method doesn't exist for chartObj. Please, let me answer as soon as possible. I requested to buy this widget and don't sure that it works in proper way now.
  4. I Can't Update Cylinder Widget

    Yeah. I catch a root of issue. I try to update chart on Load event and chart wasn't created yet. Sorry for inconvenience Are there any way to check that chart is loaded?
  5. I Can't Update Cylinder Widget

    Thanks Sanjukta, But I've seen this sample and make my code according to way described in this document. Looks like than getChartFromId gets incorrect object