コード例 #1
0
ファイル: Chart.cs プロジェクト: heber/FreeOQ
		public void DrawSeries(DoubleSeries series, int padNumber, Color color, SimpleDSStyle style, SmoothingMode smoothingMode)
		{
			this.DrawSeries(series, padNumber, color, style, EIndexOption.Null, smoothingMode);
		}
コード例 #2
0
ファイル: Chart.cs プロジェクト: heber/FreeOQ
		public void DrawSeries(DoubleSeries series, int padNumber, Color color, SimpleDSStyle style, EIndexOption option, SmoothingMode smoothingMode)
		{
			lock(this.dataLock)
			{
				if (!this.volumePadShown && padNumber > 1)
					--padNumber;
				DSView view = new DSView(this.pads[padNumber], series, color, option, smoothingMode);
				view.Style = style;
				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 プロジェクト: smther/FreeOQ
		public void DrawDefaultColoredSeries(DoubleSeries series, int padNumber, SimpleDSStyle style, SmoothingMode smoothing)
		{
			series.Color = this.defaultLineColor;
			this.defaultColoredSeriesList.Add(series);
			this.DrawSeries(series, padNumber, this.defaultLineColor, style, smoothing);
		}
コード例 #5
0
ファイル: Chart.cs プロジェクト: 28427328/SQCharts
 public void DrawSeries(TimeSeries series, int padNumber, Color color, SimpleDSStyle style, SmoothingMode smoothingMode)
 {
     DrawSeries(series, padNumber, color, style, SearchOption.ExactFirst, smoothingMode);
 }
コード例 #6
0
ファイル: Chart.cs プロジェクト: 28427328/SQCharts
 public DSView DrawSeries(TimeSeries series, int padNumber, Color color, SimpleDSStyle style, SearchOption option, SmoothingMode smoothingMode)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
ファイル: Chart.cs プロジェクト: fastquant/SQCharts
 public DSView DrawSeries(TimeSeries series, int padNumber, Color color, SimpleDSStyle style, SearchOption option, SmoothingMode smoothingMode)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
ファイル: Chart.cs プロジェクト: fastquant/SQCharts
 public void DrawSeries(TimeSeries series, int padNumber, Color color, SimpleDSStyle style, SmoothingMode smoothingMode)
 {
     DrawSeries(series, padNumber, color, style, SearchOption.ExactFirst, smoothingMode);
 }
コード例 #9
0
ファイル: Chart.cs プロジェクト: zhuzhenping/FreeOQ
 public void DrawDefaultColoredSeries(DoubleSeries series, int padNumber, SimpleDSStyle style, SmoothingMode smoothing)
 {
     series.Color = this.defaultLineColor;
     this.defaultColoredSeriesList.Add(series);
     this.DrawSeries(series, padNumber, this.defaultLineColor, style, smoothing);
 }