I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-05-26 13:43:54-07 by lattenwald in response to 10609
Re: FreeBSD, perldoc Chart::Clicker sample produce only a frame

Got new info: trouble is in Graphics::Primitive::TextBox.

Make all stuff that contains TextBoxes invisible.

Say, $cc is your Chart::Clicker object. Do following:

$cc->legend->visible(0); for(values %{$cc->contexts}) { $_->domain_axis->visible(0); $_->range_axis->visible(0); } $cc->draw;

and everything works (at least, at my FreeBSD box). I think there is trouble with fonts location or something like that, going to dive into that a bit deeper.

Direct Responses: 10838 | Write a response