Skip Menu |

This queue is for tickets about the Chart-Strip CPAN distribution.

Report information
The Basics
Id: 14160
Status: open
Priority: 0/
Queue: Chart-Strip

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: Set y-axis origin to zero; specify y-axis tick intervals
It would be really nice if you could specify an option to have the chart created with the y-axis starting at zero. Likewise if you could manually specify the intervals that the y-axis ticks are drawn at. Thanks for a very useful module.
From: borgified [...] gmail.com
On Sun Aug 14 15:30:11 2005, EMARTIN wrote: Show quoted text
> It would be really nice if you could specify an option to have the > chart created with the y-axis starting at zero. Likewise if you > could manually specify the intervals that the y-axis ticks are > drawn at. Thanks for a very useful module.
can a fake point with y=0 to work around this problem?
From: borgified [...] gmail.com
On Sun Aug 14 15:30:11 2005, EMARTIN wrote: Show quoted text
> It would be really nice if you could specify an option to have the > chart created with the y-axis starting at zero. Likewise if you > could manually specify the intervals that the y-axis ticks are > drawn at. Thanks for a very useful module.
just tested it, it works, do something like this: my @zero; push @zero, { time => 1209174857, value => 0, }; $img->add_data(\@zero,{style=>'points',color=>'FFFFFF'}); you can also adjust the pointsize to be really small to hide it.