- Timestamp:
- 05/11/17 13:44:01 (7 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14381-14382,14384,14388,14418,14425
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.DataPreprocessing.Views merged: 14381-14382,14384,14388,14418,14425
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingScatterPlotView.cs
r14186 r14963 44 44 get { return (ScatterPlot)base.Content; } 45 45 set { base.Content = value; } 46 } 47 48 public bool ShowLegend { 49 get { return chart.Legends[0].Enabled; } 50 set { chart.Legends[0].Enabled = value; } 51 } 52 53 public string XAxisFormat { 54 get { return chart.ChartAreas[0].AxisX.LabelStyle.Format; } 55 set { chart.ChartAreas[0].AxisX.LabelStyle.Format = value; } 56 } 57 public string YAxisFormat { 58 get { return chart.ChartAreas[0].AxisY.LabelStyle.Format; } 59 set { chart.ChartAreas[0].AxisY.LabelStyle.Format = value; } 46 60 } 47 61
Note: See TracChangeset
for help on using the changeset viewer.