jmarkus

Members
  • Content count

    10
  • Joined

  • Last visited

About jmarkus

  • Rank
    Junior Member
  1. inDecimalSeparator=',' did the trick! Thank you very much!
  2. Here are the files I'm using, I left out the main application swf (which renamed gauge.swf and put inside folder gauge next to xmls) and the com folder with all libraries etc. You'll see the two xml files with the change in data input and a screenshot of how it behaves with each one. Thanks for your fast answer! tst.zip
  3. I already have these inserted in the main chart tag chart bgAlpha="0,0" lowerLimit='0' upperLimit='1200' gaugeStartAngle='240' gaugeEndAngle='-60' gaugeOuterRadius='175' gaugeInnerRadius='70%' showValue='0' showToolTip='0' showGaugeBorder='1' gaugeBorderColor='FF0000' gaugeBorderThickness='2' gaugeBorderAlpha='100' showTickMarks='1' showTickValues='0' majorTMNumber='12' minorTMNumber='4' majorTMHeight='14' majorTMThickness='2' minorTMHeight='7' minorTMThickness='1' tickValueDistance='30' chartLeftMargin='20' chartRightMargin='20' chartTopMargin='20' chartBottomMargin='20' basefont='Verdana' baseFontSize='16' baseFontColor='000000' [b]decimalSeparator=',' thousandSeparator='.'[/b] pivotRadius='10' but it seems that these attributes affect only how data is displayed in the numbers in that small legend just under the dial circle. If you try and put any values with a coma as decimal like this: dial value='40,2' you'll see that it doesn't work, the needle hangs at around 80% of gauge, like it does when you enter data in a format that's not numerical, for example: dial value='ABCD'
  4. Hello, I'm using angular gauge in a project that writes data values using coma as decimal separator: dial value='40,2' However, it seems the gauge only accepts data having dot as decimal separator and only this format seems to work: dial value='40.2' The problem is, this data is written by an external program that collects data and it's data output can't be changed from me. Is there a way to make angular gauge accept coma as decimal separator? Thanks
  5. Nevermind, managed to make it with a switch statement and it works fine now.
  6. Hello, I have the following scenario: An external server app writes data to an XML file that my FusionCharts read and visualize, but I want to swap some data before they're visualized with some other I have pre-defined. Let's say I have a Line2DChart with the following data input on the XML file: set label='Epson' value='8.6' color='339900' set label='Hitachi' value='9.3' color='339900' set label='Toshiba' value='2.7' color='339900' set label='Mitsui' value='4.3' color='339900' set label='Panasonic' value='4.6' color='339900' set label='Canon' value='7.8' color='339900' set label='Lexmark' value='4.3' color='339900' and I want the label value to swap content and show the following values on the final graph: if it's "Epson" show "EPS994" if it's "Hitachi" show "HIT330" if it's "Toshiba" show "TOS924" if it's "Mitsui" show "MIT552" if it's "Panasonic" show "PAN882" if it's "Canon" show "CAN113" if it's "Lexmark" show "LEX710" They will appear in a random order but only once in each graph. In essence, I need something that takes the XML label attribute and swaps it with an other value before sending it further on to the visualising engine. Is that possible? Thanks!
  7. Masking a Column2DChart

    Same problem here, whenever I place a mask over a line graph, the mask does not mask it and shows like a normal layer shape
  8. Hello, I was wondering if it's possible to make an angular gauge using not the normal arithmetic scale but a logarithmic one like the one on the right below: Thanks
  9. Hi all, I was browsing through the documentation and in this page you describe a scenario I need to do (load charts inside a flash movie) but you pass XML data only inside the movie's actionscript (using var strXML:String etc). I was wondering, is it possible to have a flash movie load the fusion chart inside it and take all XML data from an external .xml file? I see this is done in other scenarios where fusionchart swfs are embedded in HTML pages, but it's not mentioned here and I can't see how a path to the .xml file can be inserted in the actionscript instead of the actual xml data using var strXML:String. Thanks.