Changeset 13716
- Timestamp:
- 03/18/16 12:45:27 (9 years ago)
- Location:
- branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3/ChartControl.cs
r13132 r13716 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using System.ComponentModel; 25 25 using System.Drawing; 26 using System.Drawing.Drawing2D; 26 27 using System.Drawing.Imaging; 27 28 using System.Linq; … … 73 74 } 74 75 76 public SmoothingMode SmoothingMode { get; set; } = SmoothingMode.None; 77 75 78 public bool ScaleOnResize { get; set; } 76 79 … … 358 361 Picture = new Bitmap(pictureBox.Width, pictureBox.Height); 359 362 using (var graphics = Graphics.FromImage(Picture)) { 363 graphics.SmoothingMode = SmoothingMode; 360 364 graphics.SetClip(new System.Drawing.Rectangle(0, 0, pictureBox.Width, pictureBox.Height)); 361 365 Chart.Render(graphics, pictureBox.Width, pictureBox.Height); -
branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3/HeuristicLab.Visualization-3.3.csproj
r13493 r13716 135 135 <Compile Include="PrimitiveAttribute.cs" /> 136 136 <Compile Include="Primitives\Grid.cs" /> 137 <Compile Include="Primitives\LabeledPrimitive.cs" /> 138 <Compile Include="Primitives\PrimitiveUtil.cs" /> 137 139 <Compile Include="Properties\Resources.Designer.cs"> 138 140 <AutoGen>True</AutoGen>
Note: See TracChangeset
for help on using the changeset viewer.