marcoaguia Report post Posted September 10, 2012 (edited) Hi everyone, I have a horizontal gauge but the pointer get stucked at zero, you may see that in the pic below. Could it be a problem in the jquery? How can I solve it? Thanks https://www.dropbox.com/s/zsbivu8t1pygpj4/bug.JPG Edited September 10, 2012 by marcoaguia Share this post Link to post Share on other sites
Guest Sumedh Report post Posted September 11, 2012 Hi, Could you please send us the gauge XML and sample code? Share this post Link to post Share on other sites
marcoaguia Report post Posted September 11, 2012 Hi everyone <Chart bgColor='FFFFFF' bgAlpha='0' showBorder='0' upperLimit='$upperLimit' lowerLimit='$lowerLimit' gaugeRoundRadius='5' chartBottomMargin='1' ticksBelowGauge='0' majorTMNumber='7' $labels $url> <colorRange> <color minValue='$lowerLimit' maxValue='$valorTransicao1' code='E77817' name='".$WP."' /> <color minValue='$valorTransicao' maxValue='$valorTransicao2' code='CAE000' name='".$OPTIMAL."' /> <color minValue='$valorTransicao2' maxValue='$upperLimit' code='75C5F0' name='".$FC."' /> </colorRange> <pointers> <pointer value='$percentagemFinal'/> </pointers> <styles> <definition> <style name='ValueFont' type='Font' size='10' color='333333'/> </definition> <application> <apply toObject='VALUE' styles='valueFont'/> </application> </styles> </Chart> thats my xml code. Below you can see an exemple <Chart bgColor='FFFFFF' bgAlpha='0' showBorder='0' upperLimit='120' lowerLimit='0' gaugeRoundRadius='5' chartBottomMargin='1' ticksBelowGauge='0' majorTMNumber='7' showGaugeLabels='1' valueAbovePointer='0' pointerOnTop='0' pointerRadius='9' numberSuffix='%' clickURL='javascript:maximizeChart(652,326);'> <colorRange> <color minValue='0' maxValue='20' code='E77817' name='Ponto de Emurchimento' /> <color minValue='' maxValue='100' code='CAE000' name='Humidade Óptima' /> <color minValue='100' maxValue='120' code='75C5F0' name='Capacidade de Campo' /> </colorRange> <pointers> <pointer value='121'/> </pointers> <styles> <definition> <style name='ValueFont' type='Font' size='10' color='333333'/> </definition> <application> <apply toObject='VALUE' styles='valueFont'/> </application> </styles> </Chart> thanks Share this post Link to post Share on other sites
marcoaguia Report post Posted September 13, 2012 Hi Sumedh Can you help me please? If you need more information, please just ask. Thanks Share this post Link to post Share on other sites
Guest Sumedh Report post Posted September 13, 2012 Hi, From the gauge XML it seems that, you are generating data using PHP variables. Please check the variables by echoing them if they are returning the values properly or not before inserting into XML. Share this post Link to post Share on other sites
marcoaguia Report post Posted September 14, 2012 hi, everything looks nice. I have the feelings thats the problem its in the jquery and jquery.min, some conflict. thanks Share this post Link to post Share on other sites
Guest Sumedh Report post Posted September 18, 2012 Hi, If you try to render chart using simple XML, its rendering fine. But, its glad to know that, you have managed to resolve your issue. Share this post Link to post Share on other sites