Adding hoverhelp to the graphing stuff.

This commit is contained in:
Martin Kamerbeek 2006-05-11 12:35:42 +00:00
parent 9d84eb204d
commit 64b0597481
10 changed files with 243 additions and 8 deletions

View file

@ -56,11 +56,13 @@ my $f = WebGUI::HTMLForm->new($self->session);
name => 'xyGraph_bar_barSpacing',
value => $self->getBarSpacing,
label => $i18n->get('bar spacing'),
hoverHelp => $i18n->get('bar spacing description'),
);
$f->float(
name => 'xyGraph_bar_groupSpacing',
value => $self->getGroupSpacing,
label => $i18n->get('group spacing'),
hoverHelp => $i18n->get('group spacing description'),
);
$configForms->{'graph_xygraph_bar'} = $f->printRowsOnly;