コード例 #1
0
ファイル: RectangleView.cs プロジェクト: 28427328/SQCharts
 public RectangleView(DrawingRectangle rect, Pad pad)
 {
     this.rect = rect;
     Pad = pad;
     this.toolTipEnabled = true;
     this.toolTipFormat = "{0} {1} {2} - {3:F6}";
 }
コード例 #2
0
 public RectangleView(DrawingRectangle rect, Pad pad)
 {
     this.rect           = rect;
     Pad                 = pad;
     this.toolTipEnabled = true;
     this.toolTipFormat  = "{0} {1} {2} - {3:F6}";
 }
コード例 #3
0
ファイル: Chart.cs プロジェクト: 28427328/SQCharts
 public void DrawRectangle(DrawingRectangle rect, int padNumber)
 {
     lock (this.lockObject)
     {
         if (!this.volumePadShown && padNumber > 1)
             --padNumber;
         var view = new RectangleView(rect, this.pads[padNumber]);
         rect.Updated += new EventHandler(this.OnPrimitiveUpdated);
         this.pads[padNumber].AddPrimitive(view);
         view.SetInterval(this.leftDateTime, this.rightDateTime);
         this.contentUpdated = true;
     }
 }
コード例 #4
0
ファイル: Chart.cs プロジェクト: 28427328/SQCharts
 public void DrawRectangle(DrawingRectangle rect, int padNumber)
 {
     throw new NotImplementedException();
 }