in reply to Re: Hover over scatter plot
in thread Hover over scatter plot
Chart::Gnuplot works with Gnuplot in Perl. Just setting the "terminal" option of the "chart" object (e.g. "x11" in Linux or "windows" in Windows) will pop up an interactive window with mouse hover feature, i.e.
Here has more examples about Chart::Gnuplot.my $chart = Chart::Gnuplot->new( terminal => "x11", .... );
|
|---|