Jump to content
Software FX Community

FranM

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by FranM

  1. Hi, we are migrating our App from asp.net 1.1 to asp.net 2.0 and i'm having a problem drawing a chart.

    In version 1.1 works fine but not in 2.0

    Actually we are exporting a PDF with the chart on it and it shows this error:

     Posted Image


    In version 1.1 Chart shows like this:

     Posted Image

     Can you help me?

    Thanks

  2. Hi Carlos, thanks for your response. Maybe i was not clear enough (sorry for my english), i' was wondering why temp files (graph files) are store in my Application temp's directory and not in ChartFx' temp directory.

    I'm exporting an xls file with a xlst transformation. This XLS file has 3 graphs on it,  3 temp files (graphs) are generate in my App temp's directory.

    DataDynamics.ActiveReports.Export.Pdf.PdfExport export = new DataDynamics.ActiveReports.Export.Pdf.PdfExport();         Stream stream = new MemoryStream();       export.Export(sr.Document, stream);             byte[] buffer = new byte[stream.Length];             stream.Position = 0;       stream.Read(buffer,0,buffer.Length);       Response.AddHeader("Content-Disposition", "attachment;filename=filename.doc");       Response.BinaryWrite(buffer);

     

     Thanks

  3. HiI'm using ChartFX 6.2 for .Net and i'm exporting a chart to an excel file. I was wondering why ChartFX creates temp files in my application's temp and not in ChartFX's temp.Is there a way to change this? The problem is only at exporting charts, visualization works fine (uses ChartFX's temp directory to store files)Thanks a lotFrank

     

  4. Hi,
     
    I have a question about format on axisY.
     
    I have an axisY that shows percentage values. I want to show the axis without decimals, so i wrote

    chart.AxisY.LabelsFormat.Decimals=0;

    But i want that value with decimals. Is there any way to show NO decimals on the AxisY and have values WITH decimals?

    Thanks.

    Francisco

  5. Hi, I wanted to know some things about performance.

    For example, I have a page with four graphs, some of the this graphs are taking too long. So, i was wondering which are the things that i've to take into account in this kind of situation (in spite of the query's complexity).

    The graph's type (bars, lines) it's a issue to take into consideration?

     Thanks!

     Francisco

     

×
×
  • Create New...