Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/02/17 14:45:22 (7 years ago)
Author:
pfleck
Message:

#2709

  • Changed chart sizing to absolute values (pixels).
  • Added chart sizing to Linechart and Histogram.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.cs

    r14725 r14902  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
     22using System;
    223using System.Collections.Generic;
    324using System.Drawing;
     
    444465
    445466    #region Sizing of Charts
    446     private int GetColumnWidth() { return (int)(bodyScrollPanel.Width * ((float)widthTrackBar.Value / 100)); }
    447     private int GetRowHeight() { return (int)(bodyScrollPanel.Height * ((float)heightTrackBar.Value / 100)); }
    448     private void widthTrackBar_ValueChanged(object sender, EventArgs e) {
     467
     468    private int GetColumnWidth() { return (int)widthNumericUpDown.Value; }
     469    private int GetRowHeight() { return (int)heightNumericUpDown.Value; }
     470    private void widthNumericUpDown_ValueChanged(object sender, EventArgs e) {
    449471      frameTableLayoutPanel.SuspendRepaint();
    450472      for (int i = 0; i < columnHeaderTableLayoutPanel.ColumnCount; i++) {
     
    454476      frameTableLayoutPanel.ResumeRepaint(true);
    455477    }
    456     private void heightTrackBar_ValueChanged(object sender, EventArgs e) {
     478    private void heightNumericUpDown_ValueChanged(object sender, EventArgs e) {
    457479      frameTableLayoutPanel.SuspendRepaint();
    458 
    459480      for (int i = 0; i < rowHeaderTableLayoutPanel.RowCount; i++) {
    460481        rowHeaderTableLayoutPanel.RowStyles[i].Height = GetRowHeight();
Note: See TracChangeset for help on using the changeset viewer.