halizia

Members
  • Content count

    13
  • Joined

  • Last visited

About halizia

  • Rank
    Junior Member
  1. provide DataURL with a php variable

    i've just seen the problem. it needs a "" between the php variable!! chart1.setDataXML("<? echo $strXML?>"); Thanks a lot!!
  2. hello i'd would like to give the data XML by a php string but it doesn't work, if I change this: chart1.setDataXML(< ? echo $strXML? >); into this: chart1.setDataXML("< chart ....>< categories>< /categories>< dataset ....> dataset>< styles>< definition>< /chart>"); it works I don't why the php mode doesn't work. Thanks! code.txt
  3. Real time charts

    hi!! I've just downloaded the FusionGadgets Trial version. But I couldn
  4. how to use css in charts

    hi!! i'm trying to applicate a css style to my chart and i don't know how to do it. Does anybody know?? Thanks a million!!
  5. subindex in chart

    hello, I would like to show a subindex in the caption of a chart. For example: Caption='CO2' How can i do it? Thanks!!
  6. Tool tip in multiple lines

    Finally i managed to put in multiple lines the tool-tip!!!! you have to url encode the simbol '&' $amp=urlencode('&'); "toolText='Jhon".$amp."lt;BR".$amp."gt;Miller'"
  7. Tool tip in multiple lines

    sorry but, i've just try to copy the example again but it doesn't work. i'm using fusioncharts developer, i don't know if it's impossible to use it. The error message i receive is: "Invalid XML Data" The example works well when i don't insert "<BR>" Thanks!!
  8. Tool tip in multiple lines

    i'm not using the dataurl method, is it in the only case i could use it?? i'd like to use it in a database method. thanks
  9. Drill Down Links

    i don't know if i understood it properly, but if you're working in php you should do this: $var=$_GET['date']; Bye!
  10. hello i'm trying to show my tool tips in 2 lines but, the example in the documentation doesn't work, the error message is: Invalid XML Data. Thanks!!