Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 11:25:14 (14 years ago)
Author:
gkronber
Message:

Added export to file functionality for the DataTableView. #1127

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs

    r4068 r4142  
    395395      return double.IsNaN(x) || x < (double)decimal.MinValue || x > (double)decimal.MaxValue;
    396396    }
     397
     398    private void exportChartToolStripMenuItem_Click(object sender, EventArgs e) {
     399      if (saveFileDialog.ShowDialog() == DialogResult.OK) {
     400        chart.SaveImage(saveFileDialog.FileName, ChartImageFormat.EmfDual);
     401      }
     402    }
    397403  }
    398404}
Note: See TracChangeset for help on using the changeset viewer.