Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/29/08 13:08:35 (16 years ago)
Author:
mstoeger
Message:

Adjustments on LineChart for new interface. #345

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/CanvasUI.cs

    r725 r869  
    22using System.Diagnostics;
    33using System.Drawing;
     4using System.Drawing.Drawing2D;
    45using System.Windows.Forms;
    56
     
    2627        Graphics g = pe.Graphics;
    2728
     29        g.SmoothingMode = SmoothingMode.AntiAlias;
     30
    2831        g.FillRectangle(Brushes.White, ClientRectangle);
    2932
     
    3639       Debug.WriteLine(e);
    3740      }
     41    }
     42
     43    protected override void OnResize(EventArgs e) {
     44      Invalidate();
     45
     46      base.OnResize(e);
    3847    }
    3948
Note: See TracChangeset for help on using the changeset viewer.