線スタイル

概要

ラインを描画するために使用される異なるストロークスタイルの列挙。

シグネチャ

1
public enum LineStyle

 

名前空間

cAlgo.API

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
 // すべての異なる LineStyle の例
 [Output("Dots", LineStyle = LineStyle.Dots)]
 public IndicatorDataSeries outputDots { get; set; }
 [Output("DotsRare", LineStyle = LineStyle.DotsRare)]
 public IndicatorDataSeries outputDotsRare { get; set; }
 [Output("DotsVeryRare", LineStyle = LineStyle.DotsVeryRare)]
 public IndicatorDataSeries outputDotsVeryRare { get; set; }
 [Output("Lines", LineStyle = LineStyle.Lines)]
 public IndicatorDataSeries outputLines { get; set; }
 [Output("LinesDots", LineStyle = LineStyle.LinesDots)]
 public IndicatorDataSeries outputLinesDots { get; set; }
 [Output("Solid", LineStyle = LineStyle.Solid)]
 public IndicatorDataSeries outputSolid { get; set; }

フィールド

Solid

概要

ソリッドライン: —–

シグネチャ

1
public static LineStyle Solid;

 

戻り値

LineStyle

1
2
 [Output("Solid", LineStyle = LineStyle.Solid)]
 public IndicatorDataSeries outputSolid { get; set; }

Dots

概要

点線: …..

シグネチャ

1
public static LineStyle Dots;

 

戻り値

LineStyle

1
2
 [Output("Dots", LineStyle = LineStyle.Dots)]
 public IndicatorDataSeries outputDots { get; set; }

DotsRare

概要

点線、大きな点の間隔: . . . .

シグネチャ

1
public static LineStyle DotsRare;

 

戻り値

LineStyle

1
2
 [Output("DotsRare", LineStyle = LineStyle.DotsRare)]
 public IndicatorDataSeries outputDotsRare { get; set; }

DotsVeryRare

概要

点線

シグネチャ

1
public static LineStyle DotsVeryRare;

 

戻り値

LineStyle

1
2
 [Output("DotsVeryRare", LineStyle = LineStyle.DotsVeryRare)]
 public IndicatorDataSeries outputDotsVeryRare { get; set; }

Lines

概要

ライン: —–

シグネチャ

1
public static LineStyle Lines;

 

戻り値

LineStyle

1
2
 [Output("Lines", LineStyle = LineStyle.Lines)]
 public IndicatorDataSeries outputLines { get; set; }

LinesDots

概要

ラインと点: —–…..—–…..—–…..

シグネチャ

1
public static LineStyle LinesDots;

 

戻り値

LineStyle

1
2
 [Output("LinesDots", LineStyle = LineStyle.LinesDots)]
 public IndicatorDataSeries outputLinesDots { get; set; }