Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/16 11:41:59 (8 years ago)
Author:
bburlacu
Message:

#2597: Fixed small issue with layout update when the number of columns was changed. Improved layout of the configuration panel. Made GradientView invisible as an item in the Solution View.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/GradientChart.cs

    r14006 r14014  
    4848
    4949    #region Properties
     50    public string XAxisTitle {
     51      get { return chart.ChartAreas[0].AxisX.Title; }
     52      set { chart.ChartAreas[0].AxisX.Title = value; }
     53    }
     54
     55    public string YAxisTitle {
     56      get { return chart.ChartAreas[0].AxisY.Title; }
     57      set { chart.ChartAreas[0].AxisY.Title = value; }
     58    }
     59
    5060    public bool ShowLegend {
    5161      get { return chart.Legends[0].Enabled; }
     
    218228      chart.ContextMenuStrip.Items.Add(new ToolStripSeparator());
    219229      chart.ContextMenuStrip.Items.Add(configToolStripMenuItem);
    220 
    221230      configurationDialog = new GradientChartConfigurationDialog(this);
    222231
Note: See TracChangeset for help on using the changeset viewer.