Changeset 14381 for trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingDataTableView.cs
- Timestamp:
- 11/09/16 16:20:23 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingDataTableView.cs
r14270 r14381 43 43 get { return (PreprocessingDataTable)base.Content; } 44 44 set { base.Content = value; } 45 } 46 47 public bool ShowLegend { 48 get { return chart.Legends[0].Enabled; } 49 set { chart.Legends[0].Enabled = value; } 50 } 51 52 public string XAxisFormat { 53 get { return chart.ChartAreas[0].AxisX.LabelStyle.Format; } 54 set { chart.ChartAreas[0].AxisX.LabelStyle.Format = value; } 55 } 56 public string YAxisFormat { 57 get { return chart.ChartAreas[0].AxisY.LabelStyle.Format; } 58 set { chart.ChartAreas[0].AxisY.LabelStyle.Format = value; } 45 59 } 46 60
Note: See TracChangeset
for help on using the changeset viewer.