andrei_b_c

Members
  • Content count

    9
  • Joined

  • Last visited

Everything posted by andrei_b_c

  1. Hi there, Does anybory knows if is possible on MSCombiDY2D chart to overlap columns? So, I need one column to be behind the other 2 columns (see attached for more info). Any help will be appreciated. Thanks in advance, Andrei
  2. MSCombiDY2D overlap bars

    Hi, It may be the problem in the FusionCharts version - I'm using v 3.2.2. Andrei
  3. MSCombiDY2D overlap bars

    Thanks but unfortunately it didn't work. It adds 3 columns one beside each other for each X axis value.
  4. Hi, I have a chart that have a fixed height and a variable width. I'm exporting the graph as image and include it in a PDF file. This works fine, however when the X axis is very big, the exported image will be very small. The best solution will be to split the graph in multiple graphs. Does anyone now how to split the X axis, so there will be maximum 20 values on this axis for instance? Also I need to export all images and include in the PDF. For example if there are 60 values for the X axis, there should be 3 images, so - 3 pages in the exported PDF. Thanks for any help.
  5. Multiple Graph Images From The Save Chart

    Hi there, Thank you for the answers, but unfortunately I'm using JavaScript charts. I found some examples that export charts using FusionChartsExportObject object, but could not make it working. I just need to split the graph, export all graphs and finally download the PDF file. Is it possible to do it using JavaScript charts? Thanks in advance.
  6. Multiple Graph Images From The Save Chart

    Thanks for the answer. One solution that should work is to split the generated XML in multiple XML strings and create multiple graphs. But here I came to another problem - I need to export all graphs, then finally to get the PDF file. But when the exportChart() method is called and the server script returns no data, the page is redirected and nothing gets displayed... Is there a way to change this? I tried to change the exportTargetWindow property (_self/_blank), but it didn't help. Thanks.
  7. Server-Side: Saving On Server Disk Problem

    Hi There, Does anybody know how to change the export handlers so the exported image is saved to the disk? At the moment the file is downloaded as Image. I need to save the image and include in a PDF (I need some customizations for the generated PDF). Also when the export process is initiated, a request is sent to export.highcharts.com. Is there a way to change it, so the graph is generated on my server and not to send some confidential data to another server? Thanks in advance, Andrei
  8. Ie Https Issue

    Hi, I'm using JavaScript to create graphs. It works perfectly except for the annoying dialog in IE: 'Do you want to view only the webpage content that was delivered securely?'. The JS code is presented below: var myChart = new FusionCharts( "StackedColumn2D", "myprodImgDiv", "100", "800" ); myChart.setXMLData('<chart>....</chart>'); myChart.render("prodGraph"); All my pages use HTTPS, I used HTTP Analyzer to test and there is no insecure (http) connection. However the dialog is displayed in IE. Is there a way to prevent this for happening? Thanks for any help
  9. Ie Https Issue

    Thank you very much! The solution works perfectly!