/Main/src/DynamicDataDisplay/PointMarkers/CirclePointMarker.cs
# · C# · 14 lines · 10 code · 3 blank · 1 comment · 0 complexity · 3e3659b445666e8f8d8ae4f34770146f MD5 · raw file
- using System.Windows;
- using System.Windows.Media;
-
- namespace Microsoft.Research.DynamicDataDisplay.PointMarkers
- {
- /// <summary>Renders circle around each point of graph</summary>
- public class CirclePointMarker : ShapePointMarker {
-
- public override void Render(DrawingContext dc, Point screenPoint) {
- dc.DrawEllipse(Fill, Pen, screenPoint, Size / 2, Size / 2);
- }
- }
-
- }