arinte

Members
  • Content count

    9
  • Joined

  • Last visited

Everything posted by arinte

  1. Zero Values

    Is there anyway to have fusion charts to not display an x-axis plot point if there is not corresponding y-value? So along the x-axis we have dates and on the y-axis we have the number of downloads, so if there is no downloads for a particular day don't render the date in the axis and don't render a 0; Here is my json data: {"chart":{"caption":"fruit-ninja","xaxisname":"Date","yaxisname":"Downloads","legend":"0","animation":"0","exportEnabled":"1","useRoundEdges":"1","slantLabels":"1","exportHandler":"/servlet/FCExporter","exportAction":"download","exportFormat":"PDF","showValues":"1","showPercentValues":"1","bgAlpha":"10"},"categories":[{"category":[{"label":"2011-07-19 00:00"},{"label":"2011-07-20 00:00"},{"label":"2011-07-21 00:00"},{"label":"2011-07-22 00:00"},{"label":"2011-07-23 00:00"},{"label":"2011-07-24 00:00"},{"label":"2011-07-25 00:00"},{"label":"2011-07-25 23:59"}]}],"dataset":[[{"seriesname":"fruit-ninja","data":[{"value":"0"},{"value":"0"},{"value":"0"},{"value":"7"},{"value":"0"},{"value":"0"},{"value":"0"},{"value":"0"}]}]]};
  2. Aligning Yaxis Label

    On our chart we show the date vertically and tilted, so to problem is in some cases the label for the yaxis and the 1st label on the xaxis overlaps. Is there a way I can have the y-axis label align to the top of the graph instead of in the middle of the whole flash object? In this image the overlap isn't as bad, but it has been a lot more obvious.
  3. Aligning Yaxis Label

    Here is the JSON code json.txt
  4. Aligning Yaxis Label

    We want the labels slanted, because having them vertial will make it to hard to read when there are a lot of x-axis data. Is there no way to indent the axis a little bit?
  5. If there is a blank chart I would like "No Active Runs Available" instead of the generic "No Data To Display". Is there a way to do that?
  6. Aligning Yaxis Label

    Not really helpful, it is talking about xaxis and no mention of alignment... I guess specifically in the example I showed I am talking about moving the title "Downloads" to align to the top. Can that be done?
  7. Exporting As Pdf

    I am doing a server side pdf that is activated by javascript. Even though I have this as my data: var countryJson = eval('({"chart":{"caption":"","xaxisname":"","yaxisname":"","legend":"0","animation":"0","exportEnabled":"1","useRoundEdges":"1","slantLabels":"1","exportHandler":"FCExporter","exportAction":"download","exportFormat":"PDF"},"data":[[{"label":"United Arab Emirates","value":"1"},{"label":"India","value":"1"},{"label":"United States","value":"3"}]]})'); The download is still coming back as a .jpg? What do I need to do?
  8. Exporting As Pdf

    So there is no way to do it without having the extra swf button? Even though I am doing the server side export.
  9. Pure Javascript Export

    Is there a way to have a rendered chart be exported/downloaded on the client side with just pure javascript? I don't even want to have the div that fusion uses to say waiting and save to be on the screen. I just want 1 button that I create that says "Save as PDF"