ChartLineElement

StockSharp.Xaml.Charting

線を表すグラフ要素。

継承元: ChartElement<ChartLineElement>

実装: IUltrachartPrimitive, IChartElementEx, IChartElement, IChartPart<IChartElement>, INotifyPropertyChanging, INotifyPropertyChanged, IPersistable, IChartLineElement

コンストラクター

ChartLineElement
public ChartLineElement()
chartLineElement = ChartLineElement()

ChartLineElement の新規インスタンスを初期化します。

プロパティ

AdditionalColor
public Color AdditionalColor { get; set; }
value = chartLineElement.AdditionalColor
chartLineElement.AdditionalColor = value

チャート上に描画される線色(カンドルなど)を追加。

AntiAliasing
public bool AntiAliasing { get; set; }
value = chartLineElement.AntiAliasing
chartLineElement.AntiAliasing = value

線の描画の反エイリアシング。デフォルトは有効です。

Color
public Color Color { get; set; }
value = chartLineElement.Color
chartLineElement.Color = value

線色(カニケ等)、チャート上に描画される線色(カニケ等)

DrawTemplate
public ControlTemplate DrawTemplate { get; set; }
value = chartLineElement.DrawTemplate
chartLineElement.DrawTemplate = value

ドットスタイルDrawStyles@のチャートテンプレート。

ShowAxisMarker
public bool ShowAxisMarker { get; set; }
value = chartLineElement.ShowAxisMarker
chartLineElement.ShowAxisMarker = value

Y軸マーカーを表示します。

StrokeThickness
public int StrokeThickness { get; set; }
value = chartLineElement.StrokeThickness
chartLineElement.StrokeThickness = value

チャート上に描画される行(バーなど)の厚さ。 デフォルトは1です。

Style
public DrawStyles Style { get; set; }
value = chartLineElement.Style
chartLineElement.Style = value

線描画スタイル。デフォルトは行です。

メソッド

CheckAxesCompatible
public override bool CheckAxesCompatible(ChartAxisType? xType, ChartAxisType? yType)
result = chartLineElement.CheckAxesCompatible(xType, yType)

与えられた軸線タイプを使って要素を描画できるかどうかを確認してください。

xType
X軸タイプ。
yType
Y軸タイプ。

戻り値: 供給されたタイプがサポートされている場合。

Load
public override void Load(SettingsStorage storage)
chartLineElement.Load(storage)

設定をロードします。

storage
設定ストレージ。
OnDraw
protected override bool OnDraw(ChartDrawData data)
result = chartLineElement.OnDraw(data)

根本要素を描画します。

data
描画データをチャート化します。

戻り値: データを正常に描画した場合は、それ以外の場合は、 を返します。

Save
public override void Save(SettingsStorage storage)
chartLineElement.Save(storage)

設定を保存します。

storage
設定ストレージ。