Jump to content
Software FX Community

Bertrand_D

Members
  • Posts

    7
  • Joined

  • Last visited

Bertrand_D's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi SofwareFX support, Could you please asssist? Thanks Bertrand
  2. Hi, We have been using chartfx for few years now and even if our license is up to date we are seeing license error occasionally. graphs produced look like the file attached. We have been trying to follow the steps from the following support post (http://support.softwarefx.com/kb/610/1/010.htm) but the project doesn't compile with the following error: Error 1 Unable to resolve type 'SoftwareFX.ChartFX.Chart, ChartFX' C:\Projects\...\licenses.licx 11 GUI Thanks for your help, Bertrand
  3. Thank you for your help Francisco
  4. Hi, I am using ChartFx 7 In the sample DataAxisAndCompacting we can see a customized formatting of the labels when AxisX data are Dates. Label formatting changes when Step varies between 30, 90 to 365. In this format we can't define the labels ourselves (could find a way to do it), they are predefined. How can we redefine these labels or obtain the same output ? (ie Grid defined, encapsulating several points, labels between these grids for several points...) (see the picture attached. that's what I am trying to reproduce with customizable labels) Thank you, Bertrand
  5. I have a similar issue and I just read your answer which solved the original problem. Thanks a lot for sharing it. Bertrand
  6. Hi, Thank you for your answer.I have been trying to use your method but i am getting a smaller graph in the Rectangle with a lower definition.I am finnally using the basic following code (simplier and shorter) providing a very good quality of the chart. private MemoryStream ExportChartToStream(ChartFX.WinForms.Chart chart) { try { MemoryStream imgStream = new MemoryStream(); chart.Export(FileFormat.Bitmap, imgStream); return imgStream; } catch (Exception e) { throw new Exception ("Error in ExportChartToStream()", e); } } Thanks for your help.Bertrand
  7. Hi, I want to export a Winform chart to a .png or .gif file format, using Metafile first (rather than bitmap) to ensure a better quality of the output image. Also, I am working with MemoryStream rather than saving files on disk. I have the following Chart Exportation crashing, could you pelase help? (it works fine when I save files to disk, not with streams) private static MemoryStream ExportChartToStream(ChartFX.WinForms.Chart chart){ MemoryStream imgStream = new MemoryStream(); MemoryStream metafileStream = new MemoryStream(); chart.Export(FileFormat.Metafile, metafileStream); var meta = new Metafile(metafileStream); <----------- Generic Error occured in GDI+ ... meta.Save(imgStream, ImageFormat.Png); return imgStream;}Thank you, Bertrand
×
×
  • Create New...