Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java を使用してグラフを描画しますが、JChart2D などは使用しません。ポイントを指定するのに役立つ 2 つの交差する線。jPanelでJavaを使用してこのようなものを作成できますか?
すべてを自分で行いたい場合は、MouseMotionListener を JPanel に追加して描画し、マウスの位置を分析し、グラフ上でマウスの位置に最も近い点を見つけ、グラフを更新してそれらの線を含める必要があります。そして、マウスが移動して MouseMotionListener が呼び出されるたびに、それが何度も繰り返されます。だからそれはできますが、それは大変な作業です。