mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-05 22:11:12 +08:00
Un-documented --extraValuesPerPoint
This is awkward and I want to get rid of it. It still works, but there's no more documentation for it
This commit is contained in:
parent
9cc67cdaeb
commit
3bf2fa43ef
@ -113,7 +113,8 @@ sub interpretCommandline
|
||||
'image=s',
|
||||
'histogram=s@', 'binwidth=f', 'histstyle=s',
|
||||
'terminal=s',
|
||||
'rangesize=s{2}', 'rangesizeall=i', 'extraValuesPerPoint=i',
|
||||
'rangesize=s{2}', 'rangesizeall=i',
|
||||
'extraValuesPerPoint=i', # deprecated and undocumented
|
||||
'help', 'dump', 'exit', 'version',
|
||||
'geometry=s') or exit 1;
|
||||
|
||||
@ -1846,10 +1847,10 @@ replotted before being purged
|
||||
|
||||
C<--rangesize curveID xxx>
|
||||
|
||||
The options C<--rangesizeall>, C<--rangesize> and C<--extraValuesPerPoint> set
|
||||
the number of values are needed to represent each point being plotted (see
|
||||
L</"Multi-value style support"> above). These options are I<only> needed if
|
||||
unknown styles are used, with C<--styleall> or C<--with> for instance.
|
||||
The options C<--rangesizeall> and C<--rangesize> set the number of values are
|
||||
needed to represent each point being plotted (see L</"Multi-value style
|
||||
support"> above). These options are I<only> needed if unknown styles are used,
|
||||
with C<--styleall> or C<--with> for instance.
|
||||
|
||||
C<--rangesize> is used to set how many values are needed to represent the range
|
||||
of a point for a particular curve. This overrides any defaults that may exist
|
||||
@ -1865,16 +1866,6 @@ C<--rangesizeall xxx>
|
||||
|
||||
Like C<--rangesize>, but applies to I<all> the curves.
|
||||
|
||||
C<--extraValuesPerPoint xxx>
|
||||
|
||||
Like C<--rangesizeall>, but instead of overriding the default, adds to it. For
|
||||
example, if plotting non-lopsided y errorbars gnuplot wants (x,y,ydelta) tuples.
|
||||
These can be specified both with C<--rangesizeall 2> (because there are 2 range
|
||||
values) or C<--extraValuesPerPoint 1> (because there's 1 more value than usual).
|
||||
|
||||
This option is I<only> needed if unknown styles are used, with C<--styleall> or
|
||||
C<--with> for instance.
|
||||
|
||||
=item
|
||||
|
||||
C<--dump>
|
||||
|
Loading…
Reference in New Issue
Block a user