From 0fda2ba3ff49bdc1ffc6833f658e2164af187008 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 16 Jan 2018 12:17:10 +0200 Subject: Embedded RealTimeGraphEx library to solution. Added graphs to technician view. Implemented simple sensors data test using Machine Emulator. --- .../Models/RealTimeGraphExColumn.cs | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs') diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs new file mode 100644 index 000000000..2a328a2fa --- /dev/null +++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RealTimeGraphEx.Models +{ + public class RealTimeGraphExColumn + { + public RealTimeGraphExColumn(int x, int y, int right, int bottom) + { + X = x; + Y = y; + Right = right; + Bottom = bottom; + } + + public int X { get; set; } + public int Y { get; set; } + public int Right { get; set; } + public int Bottom { get; set; } + } +} -- cgit v1.3.1