C# PR

[C#] Recommended Fast Graph Library ScottPlot

記事内に商品プロモーションを含む場合があります

時々海外からのアクセスもあるようなので、過去の記事の英語版を作成してみました。

Here is a fast graph library that can be used in C#.
You can also zoom in and out with the mouse without coding, which is highly recommended.

Notes: This blog post is an English translation of a previous post with machine translation.

ScottPlot

The free and open source library “ScottPlot”.

ScottPlotサンプル画像

Display the graph in a short code

It’s easy to use.
You can display the graphs quickly with a short code like the following.

double[] dataX = new double[] {1, 2, 3, 4, 5};
double[] dataY = new double[] {1, 4, 9, 16, 25};
formsPlot1.plt.PlotScatter(dataX, dataY);
formsPlot1.Render();

Supports Japanese

Axis names and graph titles can be displayed in Japanese.
You can easily coding a single line of code to display titles, etc.

Conclusion

  • Looking for a fast graph library.
  • I’m using the Microsoft charts, but they slow!
  • I wanted a library that allows you to create graphs in short code.

If you have such a problem, you should try it.

I hope this blog post was helpful!

質問・要望 大歓迎です

「こんな解説記事作って」「こんなことがしたいけど、〇〇で困ってる」など、コメント欄で教えてください。 質問・要望に、中の人ができる限り対応します。

使えたよ・設定できたよの一言コメントも大歓迎。気軽に足跡を残してみてください。記事を紹介したい方はブログ、SNSにバシバシ貼ってもらってOKです。

ABOUT ME
えす
現役のソフトウェアエンジニアです。 C++ C# Python を使ってます。10年ちょい設計/開発部門にいましたが、今はQAエンジニアっぽいことをしています。

COMMENT

メールアドレスが公開されることはありません。 が付いている欄は必須項目です