0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[C#/xaml] OxyPlotでTrackerを使う3

Last updated at Posted at 2021-05-31

oxyplot関連記事

やりたいこと

前回の記事で、Trackerの見た目を改造したが、それを表示するために、線グラフの近くでマウスを左クリックしないといけない。

それを、マウスオーバーしただけで表示するようにしたい。

やりかた

PlotViewにバインドしてるControllerに対して下記を行う。

controller.UnbindMouseDown(OxyMouseButton.Left);
controller.BindMouseEnter(PlotCommands.HoverSnapTrack);

サンプルコード

前回記事のコードに、上記2行を入れればOK。

参考

ここに書いてる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?