Jump to content
Software FX Community

CarlosC

Staff
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

CarlosC's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. can any one help me to fix the below issue

     The invocation of the constructor on type 'ChartFX.WPF.Chart' that matches the specified binding constraints threw an exception.

  2. Hi All, Is there any way to built Wpf guages in chart fx

  3. CarlosC

    test

    adsf as asdfas asdfasasdfasdfasdfasdfasdf
  4. CarlosC

    test

    sdf asdfsadf asdf asdfa sdfasd fasdfasdfasdf sadf
  5. Unfortunate, exporting the chart to a png image is not supported by ChartFX 7 (Windows Forms). You can try to export the chart to a MemoryStream object and the use an Image object to save the chart as a png image. Use the following code: MemoryStream memoryStream = new MemoryStream(); chrtTool.Export(ChartFX.WinForms.FileFormat.Bitmap, memoryStream); Image image = Bitmap.FromStream(memoryStream); image.Save(string.Concat(AppSetting.ImageGenerationPath(), contractname, ".png"), System.Drawing.Imaging.ImageFormat.Png); memoryStream.Close();
×
×
  • Create New...