pablo

Members
  • Content count

    10
  • Joined

  • Last visited

Everything posted by pablo

  1. Hi I'm rendering some charts in an ASP .NET web form, now I need to save them all in my server but not by saving them one by one with the download button that can be added to the chart (there are about 40 charts, so it will be kinda unpleasant for the user) Is it possible? Also generate a PDF file with all the charts (custom button or in page load event) could work too. I'm using FusionCharts XT, v. 3.3.0. Thank you for your help and happy new year!
  2. Save all rendered charts

    Hi, I'll tell the customer about this alternative then, thank you for your help!
  3. Hello I'm interested too in exporting a Javascript chart at server-side using ASP. NET. May I send a request to [email protected]? Thank you for your help
  4. Hello! I want to use in a website a multiple level pie chart to show data. But I need the chart not to highlight the whole node from the root when the mouse is over a value, only the value itself. Is that possible? Thank you for your help
  5. Hi! Thanks for your answer but it's not what I'm looking for. I want not to hover the whole node in the chart, for example if I put the mouse over one of the nodes in the outside of the chart I want only that node to hover, note the parent/s node. Is that possible? Thank you again!
  6. Saying it with another words: I want to disable the hierarchical hover effect Thank you for your help
  7. Fusionchart In Asp:updatepanel

    Hello! I had the same issue and Angshu's solution worked fine for me. But I have another problem now, in the UpdatePanel I have an AJAX AlwaysVisibleControlExtender which is not working ok since I applied this solution (works fine first time, second and next works wrong). The problem is in the JScript.js, if I remove this script from loading on ScriptManager the AlwaysVisibleControlExtender works fine (but then comes the FusionCharts issue and the wheel keeps turning ) Any ideas or suggestions? Thank you for your help!
  8. I want to show the data in axis Y from minimum value to maximum, I tried with an XML like this: <chart yAxisMinValue="9000" yAxisMaxValue="0" ......>.....</chart> But it doesn't work, and I don't find in documentation any attribute which can make this posible. Any suggestions? Thanks!
  9. Hi! I've created some HLinearGauge charts but I have a problem in some of them... I need a maximum value less than 100, for example: <?xml version="1.0" encoding="us-ascii"?> <chart lowerLimit="0" upperLimit="79" palette="1" showTickMarks="0" showTickValues="0" baseFontColor="000000"> <colorRange> <color minValue="0" maxValue="43" code="8BBA00" label="43" /> <color minValue="43" maxValue="69" code="FF654F" label="26" /> <color minValue="69" maxValue="79" code="FFFFFF" label="10" /> </colorRange> </chart> But when the chart is created, the last color range goes from 69 to 100 (all the rest is ok). What can I do? Thanks!
  10. HLinearGauge maximum value

    Thanks for your answer, but I need the pointer not to be seen. What I finally did was to make the graph with % values and show absolute values in labels : <?xml version="1.0" encoding="us-ascii"?> <chart lowerLimit="0" upperLimit="100" showTickMarks="0" showTickValues="0" baseFontColor="000000" bgColor="FFFFFF" showBorder="0"> <colorRange> <color minValue="0" maxValue="55.1" code="8BBA00" label="43" /> <color minValue="55.1" maxValue="87.2" code="FF654F" label="25" /> <color minValue="87.2" maxValue="100" code="FFFFFF" label="10" /> </colorRange> </chart>