in reply to Re: Is it possible to create an interactive scale for palette in GNUplot?
in thread Edited:Using Chart::Gnuplot to creat an interactive scale for palette?
This does not have TK gui. But sounds like a good starting point.my $chart = Chart::Gnuplot->new( output => "test1.png", title => "3D plot", xlabel => 'x', ylabel => 'y', ); $chart->set(pm3d => 'map'); $chart->set(palette => 'defined (0 0 0 1, 1 1 1 0, 2 1 0 0)'); $chart->set(dgrid3d => '385,385'); my $dataSet = Chart::Gnuplot::DataSet->new( points => \@array, ); $chart->plot3d($dataSet);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Is it possible to create an interactive scale for palette in GNUplot?
by poj (Abbot) on Mar 05, 2016 at 15:49 UTC | |
by Ppeoc (Beadle) on Mar 05, 2016 at 16:06 UTC | |
by poj (Abbot) on Mar 05, 2016 at 16:36 UTC |