Jump to content
Software FX Community

RestoreImportChart() method


kailashdhondiyal

Recommended Posts

what is the use of public void RestoreImportChart() member of ChartFX.WinForms.Wrapper.Exporting.Exporter.

I am using RestoreImportChart() in below mentioned scenerio, suggest me if this is correct for this scenerio:

 public static void ConvertChartFromBytes(byte[] data, ChartFX.WinForms.Chart Chart)
  {
  try
  {
  MemoryStream fs = new MemoryStream(data);
  SoftwareFX.ChartFX.Chart chartOld = new SoftwareFX.ChartFX.Chart();
  chartOld.Import(SoftwareFX.ChartFX.FileFormat.Binary, fs);
  ChartFX.WinForms.Wrapper.Exporting.Exporter exporter = new ChartFX.WinForms.Wrapper.Exporting.Exporter(chartOld);
  exporter.RestoreImportChart();
}


  catch (Exception ex)
  {
  MessageBox.Show(ex.Message.ToString());
  }
  }

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...