상속: SeriesView
예제 #1
0
파일: Chart.cs 프로젝트: 28427328/SQCharts
 public virtual void ShowProperties(DSView view, Pad pad, bool forceShowProperties)
 {
 }
예제 #2
0
파일: Chart.cs 프로젝트: 28427328/SQCharts
 public void DrawSeries(TimeSeries series, int padNumber, Color color, SearchOption option)
 {
     lock (this.lockObject)
     {
         if (!this.volumePadShown && padNumber > 1)
             --padNumber;
         var view = new DSView(this.pads[padNumber], series, color, option, this.TimeSeriesSmoothingMode);
         this.pads[padNumber].AddPrimitive(view);
         view.SetInterval(this.leftDateTime, this.rightDateTime);
         this.contentUpdated = true;
     }
 }
예제 #3
0
파일: Chart.cs 프로젝트: 28427328/SQCharts
 public DSView DrawSeries(TimeSeries series, int padNumber, Color color, SimpleDSStyle style, SearchOption option, SmoothingMode smoothingMode)
 {
     lock (this.lockObject)
     {
         if (!this.volumePadShown && padNumber > 1)
             --padNumber;
         DSView local_0 = new DSView(this.pads[padNumber], series, color, option, smoothingMode);
         local_0.Style = style;
         this.pads[padNumber].AddPrimitive(local_0);
         local_0.SetInterval(this.leftDateTime, this.rightDateTime);
         this.contentUpdated = true;
         return local_0;
     }
 }
예제 #4
0
파일: Chart.cs 프로젝트: fastquant/SQCharts
 public virtual void ShowProperties(DSView view, Pad pad, bool forceShowProperties)
 {
 }