[Orca-users] Color selection
Blair Zajac
blair at orcaware.com
Thu May 20 20:20:27 PDT 2004
Blair Zajac wrote:
> If you can, please take a look at helping to debug the volatile patch
> and send any fixes back to the mailing list.
I think this part of the patch for ImageFile.pm
+ # $i should already be set to the number of elements, but i'm
paranoid....
+ $i= @{$exist_plot_ref->{legend}};
+ for (my $k=0; $k < @{$new_plot_ref->{legend}}; $k++) {
+ unless ( defined( $exist_legend{$new_plot_ref->{legend}[$k]} ) ) {
+ # there may be more attributes, but these are the ones that
seem to matter
+ $exist_plot_ref->{legend}[$i] = $new_plot_ref->{legend}[$k];
+ $exist_plot_ref->{line_type}[$i] =
$new_plot_ref->{line_type}[$k];
+ $exist_plot_ref->{color}[$i] = $new_plot_ref->{color}[$k];
+ $exist_plot_ref->{summary_format}[$i] =
$new_plot_ref->{summary_format}[$k];
+ $i++;
+ }
+ }
Try changing the
$exist_plot_ref->{color}[$i] = $new_plot_ref->{color}[$k];
to
$exist_plot_ref->{color}[$i] = get_color($i);
You'll also need to change
use Orca::Config qw(%config_global
@config_groups
@config_plots);
to
use Orca::Config qw(%config_global
@config_groups
@config_plots
get_color);
Best,
Blair
More information about the Orca-users
mailing list