added setting for continuous image

This commit is contained in:
Martynas Mickevicius
2010-07-27 18:28:19 +03:00
parent 53c071941a
commit 039e30450c
3 changed files with 25 additions and 2 deletions

View File

@@ -151,10 +151,17 @@ $url_params['reload'] = 1;
</tr>
<?php } ?>
<tr><td><label for="continuous"><?php echo __("Continuous image"); ?></label></td>
<td>
<input type="checkbox" name="chartSettings[continuous]" <?php echo ($chartSettings['continuous'] == 'on' ? 'checked="checked"' : ''); ?>>
<i><?php echo _('(May not work on IE8)'); ?></i>
</td>
</tr>
<?php if ($chartSettings['type'] == 'radar') { ?>
<tr><td colspan="2">
<p>
When drawing a radar chart all values are normalized to a range [0..10].
<?php echo _('When drawing a radar chart all values are normalized to a range [0..10].'); ?>
</p>
</td></tr>
<?php } ?>